Fred Boniface
e9c06c5ad3
All checks were successful
Generate Release / validate_and_release (push) Successful in 3s
Co-authored-by: OwlBot <bonifacefj@gmail.com> Co-authored-by: owlbot <owlbot@owlboard.info> Reviewed-on: #199
36 lines
955 B
JSON
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"
|
|
]
|
|
} |