{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-glue/refs/heads/main/json-structure/glue-stop-workflow-run-request-structure.json", "name": "StopWorkflowRunRequest", "description": "StopWorkflowRunRequest schema from Amazon Glue API", "type": "object", "properties": { "Name": { "allOf": [ { "$ref": "#/components/schemas/NameString" }, { "description": "The name of the workflow to stop." } ] }, "RunId": { "allOf": [ { "$ref": "#/components/schemas/IdString" }, { "description": "The ID of the workflow run to stop." } ] } }, "required": [ "Name", "RunId" ] }