{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CreateMessageInteractionCallbackRequest", "title": "CreateMessageInteractionCallbackRequest", "type": "object", "properties": { "type": { "type": "integer", "enum": [ 4, 5 ], "allOf": [ { "$ref": "#/components/schemas/InteractionCallbackTypes" } ], "format": "int32" }, "data": { "oneOf": [ { "type": "null" }, { "$ref": "#/components/schemas/IncomingWebhookInteractionRequest" } ] } }, "required": [ "type" ] }