Compare commits

..

2 Commits

Author SHA1 Message Date
b55d9f32ec Add further missing types
All checks were successful
Generate and Release Protos / release (push) Successful in 47s
2026-04-24 19:23:21 +01:00
79c900e320 Ensure fields for rdelay and operator are present in schedule schema
All checks were successful
Generate and Release Protos / release (push) Successful in 47s
2026-04-24 19:13:52 +01:00

View File

@@ -110,6 +110,11 @@
"type": "boolean", "type": "boolean",
"default": false "default": false
}, },
"tc": {
"name": "trainCat",
"description": "Train Category",
"type": "string"
},
"cr": { "cr": {
"name": "cancel_reason", "name": "cancel_reason",
"type": ["integer", "null"], "type": ["integer", "null"],
@@ -120,6 +125,10 @@
"type": "string", "type": "string",
"description": "The location at which the service was cancelled" "description": "The location at which the service was cancelled"
}, },
"cn": {
"name": "cancel_near",
"description": "Whether the incident happened 'near' cancel_location, or AT cancel_location (default, false, at location)"
},
"l": { "l": {
"type": "array", "type": "array",
"minItems": 2, "minItems": 2,
@@ -133,6 +142,17 @@
"maxLength": 7, "maxLength": 7,
"minLength": 4 "minLength": 4
}, },
"rd": {
"name": "rdelay",
"description": "Route Delay",
"type": "integer"
},
"p": {
"name": "platform",
"description": "Scheduled platform",
"type": "string",
"maxLength": 4
},
"lr": { "lr": {
"name": "loc_role", "name": "loc_role",
"description": "The role of the location (Orig, Call, Pass, Dest)", "description": "The role of the location (Orig, Call, Pass, Dest)",