Files
pmsco-public/pmsco/schema/runfile.schema.json

17 lines
364 B
JSON

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "file:runfile.schema.json",
"title": "PMSCO Runfile",
"description": "PMSCO Runfile",
"type": "object",
"properties": {
"schedule": {
"$ref": "file:schedule.schema.json"
},
"project": {
"$ref": "file:project.schema.json"
}
},
"required": ["project"]
}