changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "departures": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "bikeFlag": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "color": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "destination": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "direction": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "displayMinutes": {
+ "type": "string"
+ },
+ "hexColor": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "length": {
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "minutes": {
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "platform": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "station": {
+ "type": "string"
+ },
+ "stationCode": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "station",
+ "stationCode",
+ "destination",
+ "minutes",
+ "displayMinutes",
+ "direction",
+ "platform",
+ "length",
+ "color",
+ "hexColor",
+ "bikeFlag"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "departures"
+ ],
+ "type": "object"
+}