changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "count": {
+ "description": "Number of stations returned",
+ "type": "number"
+ },
+ "stations": {
+ "description": "List of matching stations",
+ "items": {
+ "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"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "count",
+ "stations"
+ ],
+ "type": "object"
+}