{
"$schema": "https://json-structure.org/meta/core/v0/#",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-glue-databrew/refs/heads/main/json-structure/glue-databrew-update-schedule-request-structure.json",
"name": "UpdateScheduleRequest",
"description": "UpdateScheduleRequest schema from Amazon Glue DataBrew API",
"type": "object",
"properties": {
"JobNames": {
"allOf": [
{
"$ref": "#/components/schemas/JobNameList"
},
{
"description": "The name or names of one or more jobs to be run for this schedule."
}
]
},
"CronExpression": {
"allOf": [
{
"$ref": "#/components/schemas/CronExpression"
},
{
"description": "The date or dates and time or times when the jobs are to be run. For more information, see Cron expressions in the Glue DataBrew Developer Guide."
}
]
}
},
"required": [
"CronExpression"
]
}