{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-glue/refs/heads/main/json-schema/glue-batch-get-crawlers-request-schema.json", "title": "BatchGetCrawlersRequest", "description": "BatchGetCrawlersRequest schema from Amazon Glue API", "type": "object", "properties": { "CrawlerNames": { "allOf": [ { "$ref": "#/components/schemas/CrawlerNameList" }, { "description": "A list of crawler names, which might be the names returned from the ListCrawlers operation." } ] } }, "required": [ "CrawlerNames" ] }