{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-glue/refs/heads/main/json-schema/glue-update-crawler-schedule-request-schema.json", "title": "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" ] }