changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "count": {
+ "description": "Total number of networks returned",
+ "type": "integer"
+ },
+ "networks": {
+ "description": "Array of bike-sharing networks",
+ "items": {
+ "properties": {
+ "city": {
+ "description": "City where network operates",
+ "type": "string"
+ },
+ "country": {
+ "description": "Country where network operates",
+ "type": "string"
+ },
+ "id": {
+ "description": "Network identifier",
+ "type": "string"
+ },
+ "latitude": {
+ "description": "Network location latitude",
+ "type": "number"
+ },
+ "longitude": {
+ "description": "Network location longitude",
+ "type": "number"
+ },
+ "name": {
+ "description": "Network name",
+ "type": "string"
+ }
+ },
+ "required": [
+ "id",
+ "name",
+ "city",
+ "country",
+ "latitude",
+ "longitude"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "count",
+ "networks"
+ ],
+ "type": "object"
+}