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