{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/UpdateScheduleRequest", "title": "UpdateScheduleRequest", "type": "object", "properties": { "name": { "type": "string", "description": "The name of the schedule" }, "description": { "type": "string", "description": "The description of the schedule" }, "timetable": { "$ref": "#/components/schemas/Timetable" }, "attribution-actor": { "type": "string", "enum": [ "current", "system" ], "description": "Who to attribute pipeline triggers to" }, "parameters": { "type": "object", "additionalProperties": true, "description": "Pipeline parameters for the schedule" } } }