{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/twitter/refs/heads/main/json-structure/x-api-tweet-create-response-structure.json", "name": "TweetCreateResponse", "description": "TweetCreateResponse schema from X API v2", "type": "object", "properties": { "data": { "type": "object", "required": [ "id", "text" ], "properties": { "id": { "$ref": "#/components/schemas/TweetId" }, "text": { "$ref": "#/components/schemas/TweetText" } } }, "errors": { "type": "array", "minItems": 1, "items": { "$ref": "#/components/schemas/Problem" } } } }