{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-glue/refs/heads/main/json-schema/glue-list-crawlers-response-schema.json",
"title": "ListCrawlersResponse",
"description": "ListCrawlersResponse schema from Amazon Glue API",
"type": "object",
"properties": {
"CrawlerNames": {
"allOf": [
{
"$ref": "#/components/schemas/CrawlerNameList"
},
{
"description": "The names of all crawlers in the account, or the crawlers with the specified tags."
}
]
},
"NextToken": {
"allOf": [
{
"$ref": "#/components/schemas/Token"
},
{
"description": "A continuation token, if the returned list does not contain the last metric available."
}
]
}
}
}