{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-glue/refs/heads/main/json-schema/glue-start-crawler-request-schema.json", "title": "StartCrawlerRequest", "description": "StartCrawlerRequest schema from Amazon Glue API", "type": "object", "properties": { "Name": { "allOf": [ { "$ref": "#/components/schemas/NameString" }, { "description": "Name of the crawler to start." } ] } }, "required": [ "Name" ] }