{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-glue/refs/heads/main/json-structure/glue-get-workflow-run-request-structure.json", "name": "GetWorkflowRunRequest", "description": "GetWorkflowRunRequest schema from Amazon Glue API", "type": "object", "properties": { "Name": { "allOf": [ { "$ref": "#/components/schemas/NameString" }, { "description": "Name of the workflow being run." } ] }, "RunId": { "allOf": [ { "$ref": "#/components/schemas/IdString" }, { "description": "The ID of the workflow run." } ] }, "IncludeGraph": { "allOf": [ { "$ref": "#/components/schemas/NullableBoolean" }, { "description": "Specifies whether to include the workflow graph in response or not." } ] } }, "required": [ "Name", "RunId" ] }