{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/upwork/refs/heads/main/json-schema/graphql-message-create-schema.json", "title": "MessageCreate", "description": "Request body for sending a message", "type": "object", "properties": { "message": { "type": "string", "description": "The message text to send", "example": "Thank you for the update, I'll review shortly." } }, "required": [ "message" ] }