changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "trips": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "destination": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "destinationTime": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "durationMinutes": {
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "fare": {
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "legs": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "destination": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "line": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "origin": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "trainHeadStation": {
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "required": [
+ "origin",
+ "destination",
+ "line",
+ "trainHeadStation"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "option": {
+ "type": "number"
+ },
+ "origin": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "originTime": {
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "required": [
+ "option",
+ "origin",
+ "destination",
+ "originTime",
+ "destinationTime",
+ "durationMinutes",
+ "fare",
+ "legs"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "trips"
+ ],
+ "type": "object"
+}