{ "$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-crawlers-request-schema.json", "title": "GetCrawlersRequest", "description": "GetCrawlersRequest schema from Amazon Glue API", "type": "object", "properties": { "MaxResults": { "allOf": [ { "$ref": "#/components/schemas/PageSize" }, { "description": "The number of crawlers to return on each call." } ] }, "NextToken": { "allOf": [ { "$ref": "#/components/schemas/Token" }, { "description": "A continuation token, if this is a continuation request." } ] } } }