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