Takes a natural language description of a data structure and generates a valid JSON Schema definition with descriptions.
Generate a JSON Schema (draft-07) for the following data structure.
**Description:** {{description}}
**Example data:** {{example}}
Requirements:
- Use appropriate types (string, number, integer, boolean, array, object)
- Add "description" fields to all properties
- Mark required fields
- Add format hints where appropriate (e.g. "date-time", "email", "uri")
- Include reasonable validation constraints (minLength, minimum, enum values where applicable)
Output the JSON Schema as a valid JSON object. No surrounding explanation — just the schema.{{description}}long_textrequiredNatural language description of the data structure{{example}}long_textExample JSON data (optional but improves accuracy)