Last active
March 1, 2026 16:22
-
-
Save mikeghen/f0bda6788d61add975d93d7235487e3c to your computer and use it in GitHub Desktop.
tweet_schema.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "name": "tweet_generation", | |
| "strict": true, | |
| "schema": { | |
| "type": "object", | |
| "properties": { | |
| "tweets": { | |
| "type": "array", | |
| "description": "A list of generated tweets based on the input.", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "tweet": { | |
| "type": "string", | |
| "description": "The text content of the tweet." | |
| }, | |
| "hashtags": { | |
| "type": "array", | |
| "description": "A list of relevant hashtags for the tweet.", | |
| "items": { | |
| "type": "string" | |
| } | |
| } | |
| }, | |
| "required": [ | |
| "tweet", | |
| "hashtags" | |
| ], | |
| "additionalProperties": false | |
| } | |
| } | |
| }, | |
| "required": [ | |
| "tweets" | |
| ], | |
| "additionalProperties": false | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment