-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9 from mrc-ide/mrc-5613-status-accept-list-ids
Mrc-5613 status accept list ids
- Loading branch information
Showing
14 changed files
with
317 additions
and
121 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"editor.formatOnSave": false | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"$schema": "http://json-schema.org/draft-07/schema#", | ||
"type": "array", | ||
"items": { | ||
"type": "string" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,39 @@ | ||
{ | ||
"$schema": "http://json-schema.org/draft-07/schema#", | ||
"type": "object", | ||
"properties": { | ||
"time_queued": { | ||
"type": "number", | ||
"description": "time queued in UTC time." | ||
"type": "array", | ||
"items": { | ||
"type": "object", | ||
"properties": { | ||
"timeQueued": { | ||
"type": "number", | ||
"description": "time queued in UTC time." | ||
}, | ||
"timeStarted": { | ||
"type": ["number", "null"], | ||
"description": "time started run in UTC time." | ||
}, | ||
"timeComplete": { | ||
"type": ["number", "null"], | ||
"description": "time completed in UTC time." | ||
}, | ||
"queuePosition": { | ||
"type": ["number", "null"] | ||
}, | ||
"logs": { | ||
"type": ["array", "null"], | ||
"items": { | ||
"type": "string" | ||
} | ||
}, | ||
"status": { | ||
"type": "string", | ||
"enum": ["PENDING", "RUNNING","COMPLETE", "ERROR", "CANCELLED", "DIED", "TIMEOUT", "IMPOSSIBLE","DEFERRED", "MOVED"] | ||
}, | ||
"packetId": { | ||
"type": ["string", "null"] | ||
} | ||
}, | ||
"time_started": { | ||
"type": ["number", "null"], | ||
"description": "time started run in UTC time." | ||
}, | ||
"time_complete": { | ||
"type": ["number", "null"], | ||
"description": "time completed in UTC time." | ||
}, | ||
"queue_position": { | ||
"type": ["number", "null"] | ||
}, | ||
"logs": { | ||
"type": ["array", "null"], | ||
"items": { | ||
"type": "string" | ||
} | ||
}, | ||
"status": { | ||
"type": "string" | ||
}, | ||
"packet_id": { | ||
"type": ["string", "null"] | ||
} | ||
}, | ||
"required": ["time_queued", "time_started", "queue_position", "logs", "status", "packet_id"], | ||
"additionalProperties": false | ||
"required": ["timeQueued", "timeStarted", "queuePosition", "logs", "status", "packetId"], | ||
"additionalProperties": false | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.