{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-glue/refs/heads/main/json-structure/glue-get-blueprint-run-request-structure.json", "name": "GetBlueprintRunRequest", "description": "GetBlueprintRunRequest schema from Amazon Glue API", "type": "object", "properties": { "BlueprintName": { "allOf": [ { "$ref": "#/components/schemas/OrchestrationNameString" }, { "description": "The name of the blueprint." } ] }, "RunId": { "allOf": [ { "$ref": "#/components/schemas/IdString" }, { "description": "The run ID for the blueprint run you want to retrieve." } ] } }, "required": [ "BlueprintName", "RunId" ] }