Skip to content

Commit

Permalink
Initial commit - v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
joshgarde committed Aug 18, 2023
0 parents commit a6b2c52
Show file tree
Hide file tree
Showing 3 changed files with 64 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.DS_Store
43 changes: 43 additions & 0 deletions job.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "swodlr-job",
"type": "object",
"properties": {
"product_id": {
"type": "string"
},
"job_id": {
"type": "string"
},
"job_status": {
"type": "string"
},
"stage": {
"type": "string"
},
"granules": {
"type": "array",
"items": {
"type": "string"
}
},
"errors": {
"type": "array",
"items": {
"type": "string"
}
},
"traceback": {
"type": "string"
},
"metadata": {
"type": "object"
}
},
"additionalProperties": false,
"required": [
"product_id",
"job_status",
"stage"
]
}
20 changes: 20 additions & 0 deletions jobset.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "swodlr-jobset",
"type": "object",
"properties": {
"jobs": {
"type": "array",
"items": {
"$ref": "swodlr-job#"
}
},
"waiting": {
"type": "boolean"
}
},
"additionalProperties": false,
"required": [
"jobs"
]
}

0 comments on commit a6b2c52

Please sign in to comment.