Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 311ff3798f | |||
| a869935241 | |||
| 6cf6ea8aef | |||
| 50824255f8 | |||
| e1950c0ef3 |
@@ -38,7 +38,7 @@
|
|||||||
"description": "CRS of the location"
|
"description": "CRS of the location"
|
||||||
},
|
},
|
||||||
"t": {
|
"t": {
|
||||||
"type": "array",
|
"type": "string",
|
||||||
"description": "TIPLOC assigned to the location"
|
"description": "TIPLOC assigned to the location"
|
||||||
},
|
},
|
||||||
"n": {
|
"n": {
|
||||||
|
|||||||
@@ -34,12 +34,19 @@
|
|||||||
"required": ["c", "n"],
|
"required": ["c", "n"],
|
||||||
"properties": {
|
"properties": {
|
||||||
"c": {
|
"c": {
|
||||||
|
"name": "ATOC Code",
|
||||||
"type": "string",
|
"type": "string",
|
||||||
"description": "The ATOC 'code' for the TOC"
|
"description": "The ATOC 'code' for the TOC"
|
||||||
},
|
},
|
||||||
"n": {
|
"n": {
|
||||||
|
"name": "TOC Name",
|
||||||
"type": "string",
|
"type": "string",
|
||||||
"description": "The name of the TOC"
|
"description": "The name of the TOC"
|
||||||
|
},
|
||||||
|
"u": {
|
||||||
|
"name": "URL",
|
||||||
|
"type": "string",
|
||||||
|
"description": "URL for TOC Information"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
133
schemas/data-ingress/knowledgebase/kb-stations.json
Normal file
133
schemas/data-ingress/knowledgebase/kb-stations.json
Normal file
@@ -0,0 +1,133 @@
|
|||||||
|
{
|
||||||
|
"$id": "https://schema.owlboard.info/data-ingress/knowledgebase/stations.schema.json",
|
||||||
|
"$schema": "https://json-schema.org/draft-07/schema#",
|
||||||
|
"title": "KnowledgebaseStations",
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"service_name": {
|
||||||
|
"type": "string",
|
||||||
|
"description": "Name of the service submitting the update"
|
||||||
|
},
|
||||||
|
"service_id": {
|
||||||
|
"type": "string",
|
||||||
|
"description": "ID of the service sending the message - usually a hostname"
|
||||||
|
},
|
||||||
|
"data_type": {
|
||||||
|
"type": "string",
|
||||||
|
"const": "raw",
|
||||||
|
"description": "The type of data contained in this message object"
|
||||||
|
},
|
||||||
|
"sent_timestamp": {
|
||||||
|
"type": "integer",
|
||||||
|
"description": "Unix timestamp representing the time the message was sent"
|
||||||
|
},
|
||||||
|
"data_kind": {
|
||||||
|
"type": "string",
|
||||||
|
"const": "kb-stations"
|
||||||
|
},
|
||||||
|
"payload": {
|
||||||
|
"type": "array",
|
||||||
|
"additionalItems": false,
|
||||||
|
"items": {
|
||||||
|
"type": "object",
|
||||||
|
"required": [
|
||||||
|
"c",
|
||||||
|
"l",
|
||||||
|
"o"
|
||||||
|
],
|
||||||
|
"properties": {
|
||||||
|
"c": {
|
||||||
|
"type": "string",
|
||||||
|
"name": "CRS Code",
|
||||||
|
"description": "Station CRS (Primary Key)"
|
||||||
|
},
|
||||||
|
"n": {
|
||||||
|
"type": "string",
|
||||||
|
"name": "NLC Code",
|
||||||
|
"description": "Station NLC Code"
|
||||||
|
},
|
||||||
|
"mc": {
|
||||||
|
"type": "number",
|
||||||
|
"name": "Minimum Connection Time",
|
||||||
|
"description": "The minimum connection time at this station"
|
||||||
|
},
|
||||||
|
"a": {
|
||||||
|
"type": "object",
|
||||||
|
"name": "Address",
|
||||||
|
"description": "The address of the station",
|
||||||
|
"properties": {
|
||||||
|
"l1": {
|
||||||
|
"type": "string",
|
||||||
|
"name": "Line 1"
|
||||||
|
},
|
||||||
|
"l2": {
|
||||||
|
"type": "string",
|
||||||
|
"name": "Line 2"
|
||||||
|
},
|
||||||
|
"l3": {
|
||||||
|
"type": "string",
|
||||||
|
"name": "Line 3"
|
||||||
|
},
|
||||||
|
"l4": {
|
||||||
|
"type": "string",
|
||||||
|
"name": "Line 4"
|
||||||
|
},
|
||||||
|
"l5": {
|
||||||
|
"type": "string",
|
||||||
|
"name": "Line 5"
|
||||||
|
},
|
||||||
|
"pc": {
|
||||||
|
"type": "string",
|
||||||
|
"name": "Postcode"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"l": {
|
||||||
|
"type": "object",
|
||||||
|
"name": "Location",
|
||||||
|
"description": "LatLon of the station",
|
||||||
|
"properties": {
|
||||||
|
"lt": {
|
||||||
|
"type": "number",
|
||||||
|
"name": "Latitude",
|
||||||
|
"description": "Stations Latitude"
|
||||||
|
},
|
||||||
|
"ln": {
|
||||||
|
"type": "number",
|
||||||
|
"name": "Longitude",
|
||||||
|
"description": "Stations Longitude"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"o": {
|
||||||
|
"type": "string",
|
||||||
|
"name": "Operator",
|
||||||
|
"description": "The two character code denoting the stations operator"
|
||||||
|
},
|
||||||
|
"m": {
|
||||||
|
"type": "string",
|
||||||
|
"name": "Map URL"
|
||||||
|
},
|
||||||
|
"r": {
|
||||||
|
"name": "Request",
|
||||||
|
"type": "boolean",
|
||||||
|
"description": "Denotes whether station is Request Stop"
|
||||||
|
},
|
||||||
|
"d": {
|
||||||
|
"name": "Defibrillator",
|
||||||
|
"type": "boolean",
|
||||||
|
"description": "Denotes whether defibrillator is available"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"required": [
|
||||||
|
"service_name",
|
||||||
|
"service_id",
|
||||||
|
"data_type",
|
||||||
|
"data_kind",
|
||||||
|
"sent_timestamp"
|
||||||
|
],
|
||||||
|
"additionalProperties": false
|
||||||
|
}
|
||||||
@@ -313,6 +313,10 @@
|
|||||||
"type": "integer",
|
"type": "integer",
|
||||||
"description": "Cancellation Reason code"
|
"description": "Cancellation Reason code"
|
||||||
},
|
},
|
||||||
|
"cancelLocation": {
|
||||||
|
"type": "string",
|
||||||
|
"description": "Location at which the train was cancelled - Only valid when 'cancelReason' is defined, and even then optional"
|
||||||
|
},
|
||||||
"locations": {
|
"locations": {
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"additionalProperties": false,
|
"additionalProperties": false,
|
||||||
|
|||||||
Reference in New Issue
Block a user