text-to-json
Transform grouped text into structured JSON using customizable templates with placeholders, enabling easy data organization and integration into workflows.
Instructions
Converts groupped text from group-text-by-json tool to JSON. This tool accepts a JSON template with placeholders and groupped text from group-text-by-json tool.
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| template | Yes | JSON template with placeholders | |
| text | Yes | Groupped text from groupTextByJson tool | 
Input Schema (JSON Schema)
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "additionalProperties": false,
  "properties": {
    "template": {
      "description": "JSON template with placeholders",
      "type": "string"
    },
    "text": {
      "description": "Groupped text from groupTextByJson tool",
      "type": "string"
    }
  },
  "required": [
    "template",
    "text"
  ],
  "type": "object"
}