data/.schema/owlboard-pis-schema.json

36 lines
955 B
JSON
Raw Normal View History

2025-01-12 21:34:14 +00:00
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "OwlBoard PIS",
"description": "OwlBoard PIS files, used for ingesting PIS data into OwlBoard",
"type": "object",
"additionalProperties": false,
"properties": {
"pis": {
"type": "array",
"description": "A list of PIS codes to include in the file",
"items": {
"type": "object",
"properties": {
"code": {
"type": "string",
"description": "The four character PIS code as a string"
},
"stops": {
"type": "array",
"description": "A list of 3ALPHA/CRS codes represented by the 'code'.",
"items": {
"type": "string"
}
}
},
"required": [
"code",
"stops"
]
}
}
},
"required": [
"pis"
]
}