changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "destination_addresses": {
+ "description": "Geocoded destination addresses",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "origin_addresses": {
+ "description": "Geocoded origin addresses",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "rows": {
+ "description": "Distance/duration for each origin-destination pair",
+ "items": {
+ "properties": {
+ "elements": {
+ "description": "Elements for each destination from this origin",
+ "items": {
+ "properties": {
+ "distance": {
+ "properties": {
+ "text": {
+ "description": "Human-readable distance",
+ "type": "string"
+ },
+ "value": {
+ "description": "Distance in meters",
+ "type": "number"
+ }
+ },
+ "type": "object"
+ },
+ "duration": {
+ "properties": {
+ "text": {
+ "description": "Human-readable duration",
+ "type": "string"
+ },
+ "value": {
+ "description": "Duration in seconds",
+ "type": "number"
+ }
+ },
+ "type": "object"
+ },
+ "status": {
+ "description": "Status for this element",
+ "enum": [
+ "OK",
+ "NOT_FOUND",
+ "ZERO_RESULTS",
+ "MAX_ROUTE_LENGTH_EXCEEDED"
+ ],
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "status": {
+ "description": "Status of the distance matrix request",
+ "enum": [
+ "OK",
+ "INVALID_REQUEST",
+ "MAX_ELEMENTS_EXCEEDED",
+ "OVER_QUERY_LIMIT",
+ "REQUEST_DENIED",
+ "UNKNOWN_ERROR"
+ ],
+ "type": "string"
+ }
+ },
+ "type": "object"
+}