Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -68,4 +68,6 @@ doc/*.js
tmp/
node_modules/
.DS_Store
clients/cli/README.md
clients/cli/README.md

.claude
14 changes: 14 additions & 0 deletions doc/compiled.json
Original file line number Diff line number Diff line change
Expand Up @@ -3263,6 +3263,13 @@
"type": "string",
"nullable": true,
"description": "The ID of the job template this job was created from, or null if no template was used."
},
"review_due_date": {
"type": "string",
"format": "date-time",
"nullable": true,
"description": "The review due date for this job. Returns `null` when the project does not have review workflow enabled.",
"example": "2015-03-25T11:43:52Z"
}
},
"example": {
Expand Down Expand Up @@ -3387,6 +3394,13 @@
"type": "string",
"nullable": true,
"description": "The ID of the job template this job was created from, or null if no template was used."
},
"review_due_date": {
"type": "string",
"format": "date-time",
"nullable": true,
"description": "The review due date for this job. Returns `null` when the project does not have review workflow enabled.",
"example": "2015-03-25T11:43:52Z"
}
},
"example": {
Expand Down
8 changes: 8 additions & 0 deletions schemas/job.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,14 @@ job:
description: >-
The ID of the job template this job was created from, or null if no
template was used.
review_due_date:
type: string
format: date-time
nullable: true
description: >-
The review due date for this job. Returns
`null` when the project does not have review workflow enabled.
example: "2015-03-25T11:43:52Z"
example:
id: 626ea67628690c73ac86ac81eec2d185
name: Translations for new Feature
Expand Down
8 changes: 8 additions & 0 deletions schemas/job_details.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,14 @@ job_details:
description: >-
The ID of the job template this job was created from, or null if no
template was used.
review_due_date:
type: string
format: date-time
nullable: true
description: >-
The review due date for this job. Returns
`null` when the project does not have review workflow enabled.
example: "2015-03-25T11:43:52Z"
example:
owner:
id: abcd1234cdef1234abcd1234cdef1234
Expand Down
Loading