changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "city": {
+ "description": "City where network operates",
+ "type": "string"
+ },
+ "country": {
+ "description": "Country where network operates",
+ "type": "string"
+ },
+ "id": {
+ "description": "Network identifier",
+ "type": "string"
+ },
+ "name": {
+ "description": "Network name",
+ "type": "string"
+ },
+ "station_count": {
+ "description": "Total number of stations in network",
+ "type": "integer"
+ },
+ "stations": {
+ "description": "Array of stations in network",
+ "items": {
+ "properties": {
+ "empty_slots": {
+ "description": "Number of empty docking slots",
+ "type": "integer"
+ },
+ "free_bikes": {
+ "description": "Number of available bikes",
+ "type": "integer"
+ },
+ "id": {
+ "description": "Station identifier",
+ "type": "string"
+ },
+ "latitude": {
+ "description": "Station latitude",
+ "type": "number"
+ },
+ "longitude": {
+ "description": "Station longitude",
+ "type": "number"
+ },
+ "name": {
+ "description": "Station name",
+ "type": "string"
+ },
+ "timestamp": {
+ "description": "Last update timestamp",
+ "type": "string"
+ }
+ },
+ "required": [
+ "id",
+ "name",
+ "free_bikes",
+ "empty_slots",
+ "latitude",
+ "longitude",
+ "timestamp"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "id",
+ "name",
+ "city",
+ "country",
+ "station_count",
+ "stations"
+ ],
+ "type": "object"
+}