{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-glue/refs/heads/main/json-schema/glue-cancel-statement-request-schema.json", "title": "CancelStatementRequest", "description": "CancelStatementRequest schema from Amazon Glue API", "type": "object", "properties": { "SessionId": { "allOf": [ { "$ref": "#/components/schemas/NameString" }, { "description": "The Session ID of the statement to be cancelled." } ] }, "Id": { "allOf": [ { "$ref": "#/components/schemas/IntegerValue" }, { "description": "The ID of the statement to be cancelled." } ] }, "RequestOrigin": { "allOf": [ { "$ref": "#/components/schemas/OrchestrationNameString" }, { "description": "The origin of the request to cancel the statement." } ] } }, "required": [ "SessionId", "Id" ] }