CircleCI · Schema
CreateScheduleRequest
CI/CDContinuous IntegrationContinuous DeploymentDevOpsPipelinesWorkflows
Properties
| Name | Type | Description |
|---|---|---|
| name | string | The name of the schedule |
| description | string | The description of the schedule |
| timetable | object | |
| attribution-actor | string | Who to attribute pipeline triggers to |
| parameters | object | Pipeline parameters for the schedule |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/CreateScheduleRequest",
"title": "CreateScheduleRequest",
"type": "object",
"required": [
"name",
"timetable",
"attribution-actor",
"parameters"
],
"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"
}
}
}