release json
1{
2 "pipelines": [
3 {
4 "processName": "An Example Batch Process",
5 "packageVersion": "2.0",
6 "componentId": "83d6013f-96f5-4a75-a97b-f4934b0ec2e8",
7 "notes": "This is an example set of notes",
8 "schedule": "0 0 1 * * * ; 30 0 2-7 * * *",
9 "automatedTestId": "used within automated_testing.py"
10 },
11 {
12 "processName": "An Example Listener Process",
13 "packageVersion": "1.0",
14 "componentId": "b24f310b-6a66-4e0d-97a3-26f1e812b79a",
15 "notes": "This is an example set of notes",
16 "listenerStatus": "RUNNING"
17 },
18 {
19 "processName": "An Example Custom Library",
20 "componentId": "7bd40730-6df3-4ba9-b4b2-ed9153dbca6d",
21 "packageVersion": "1.0",
22 "notes": "Initial deployment"
23 }
24 ]
25}
Release JSON Element |
Description |
---|---|
processName |
Name of the process. Mainly used for human readability. |
packageVersion |
Define the package version. If one isn’t specified, the latest version will be used. |
componentId |
The component ID of the process to deploy. |
notes |
The notes that will be added to the packaged components and deployments. |
schedule |
The schedule that will be used to deploy the process. Each individual schedule is space delimited. Multiple schedules are semi-colon delimited. Additional notes below. |
listenerStatus |
The status of the listener when deployed. Values: RUNNING or PAUSED. RUNNING is default. |
The schedule
element requires six space-delimited values in the following order: minutes, hours, days of the week, days of the month, month, and year. For example, 0 0 1 * * *
executes the process every Sunday at midnight.
Field |
Description |
---|---|
minutes |
0 is the first minute of the hour — for example, 1:00 A.M. 59 is the last minute of the hour — for example, 1:59 A.M. |
hours |
Uses a 24-hour clock. 0 is midnight and 12 is noon. |
daysOfWeek |
1 is Sunday and 7 is Saturday. |
daysOfMonth |
1 is the first day of the month and 31 is the last day of the month. |
month |
1 is January and 12 is December. Often set to an asterisk [*]. |
year |
4 digit year - for example, 2023. Often set to an asterisk [*]. |