Fred Boniface
09859b8b7b
Some checks failed
Generate Release / validate_and_release (push) Failing after 3s
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"
|
|
]
|
|
} |