{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/pipeline_schedule", "title": "pipeline_schedule", "allOf": [ { "$ref": "#/components/schemas/object" }, { "additionalProperties": true, "type": "object", "title": "Pipeline Schedule", "description": "A Pipelines schedule.", "properties": { "uuid": { "type": "string", "description": "The UUID identifying the schedule." }, "enabled": { "type": "boolean", "description": "Whether the schedule is enabled." }, "target": { "$ref": "#/components/schemas/pipeline_ref_target" }, "cron_pattern": { "type": "string", "description": "The cron expression with second precision (7 fields) that the schedule applies. For example, for expression: 0 0 12 * * ? *, will execute at 12pm UTC every day." }, "created_on": { "type": "string", "format": "date-time", "description": "The timestamp when the schedule was created." }, "updated_on": { "type": "string", "format": "date-time", "description": "The timestamp when the schedule was updated." } } } ] }