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