{
"$schema": "https://json-structure.org/meta/core/v0/#",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-glue/refs/heads/main/json-structure/glue-update-crawler-schedule-request-structure.json",
"name": "UpdateCrawlerScheduleRequest",
"description": "UpdateCrawlerScheduleRequest schema from Amazon Glue API",
"type": "object",
"properties": {
"CrawlerName": {
"allOf": [
{
"$ref": "#/components/schemas/NameString"
},
{
"description": "The name of the crawler whose schedule to update."
}
]
},
"Schedule": {
"allOf": [
{
"$ref": "#/components/schemas/CronExpression"
},
{
"description": "The updated cron expression used to specify the schedule (see Time-Based Schedules for Jobs and Crawlers. For example, to run something every day at 12:15 UTC, you would specify: cron(15 12 * * ? *)."
}
]
}
},
"required": [
"CrawlerName"
]
}