auto-dgp2-2025-01-12_20-48-03 #199

Merged
fred.boniface merged 7 commits from auto-dgp2-2025-01-12_20-48-03 into main 2025-01-14 18:19:24 +00:00
2 changed files with 42 additions and 0 deletions
Showing only changes of commit 09859b8b7b - Show all commits

View File

@ -0,0 +1,36 @@
{
"$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"
]
}

6
.vscode/settings.json vendored Normal file
View File

@ -0,0 +1,6 @@
{"yaml.schemas": {
"/home/fred.boniface/git/owlboard/data/.schema/owlboard-pis-schema.json": [
"file:///home/fred.boniface/git/owlboard/data/pis/auto-dgp2-2025-01-12_20-48-03.yaml",
"file:///home/fred.boniface/git/owlboard/data/pis/gw.yaml"
]
}}