data/.schema/owlboard-pis-schema.json
Fred Boniface e9c06c5ad3
All checks were successful
Generate Release / validate_and_release (push) Successful in 3s
auto-dgp2-2025-01-12_20-48-03 (#199)
Co-authored-by: OwlBot <bonifacefj@gmail.com>
Co-authored-by: owlbot <owlbot@owlboard.info>
Reviewed-on: #199
2025-01-14 18:19:23 +00:00

36 lines
955 B
JSON

{
"$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"
]
}