changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "count": {
+ "description": "Number of departures returned",
+ "type": "number"
+ },
+ "departures": {
+ "description": "List of departing journeys",
+ "items": {
+ "properties": {
+ "category": {
+ "description": "Transport category",
+ "type": "string"
+ },
+ "delay": {
+ "description": "Delay in minutes",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "departure": {
+ "description": "Departure time",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "name": {
+ "description": "Journey name",
+ "type": "string"
+ },
+ "number": {
+ "description": "Vehicle number",
+ "type": "string"
+ },
+ "operator": {
+ "description": "Transport operator",
+ "type": "string"
+ },
+ "platform": {
+ "description": "Platform number",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "to": {
+ "description": "Journey destination",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "station": {
+ "description": "Station information",
+ "properties": {
+ "coordinate": {
+ "description": "Geographic coordinates",
+ "properties": {
+ "x": {
+ "description": "X coordinate (longitude)",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "y": {
+ "description": "Y coordinate (latitude)",
+ "type": [
+ "number",
+ "null"
+ ]
+ }
+ },
+ "type": [
+ "object",
+ "null"
+ ]
+ },
+ "id": {
+ "description": "Station identifier",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "name": {
+ "description": "Station name",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "type": "object"
+ }
+ },
+ "required": [
+ "station",
+ "count",
+ "departures"
+ ],
+ "type": "object"
+}