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