{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CommentInput", "title": "CommentInput", "type": "object", "required": [ "body" ], "properties": { "body": { "type": "object", "properties": { "messageSegments": { "type": "array", "items": { "type": "object", "properties": { "type": { "type": "string" }, "text": { "type": "string" } } } } } } } }