changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "description": "Response from OpenCage reverse geocoding API",
+ "properties": {
+ "rate": {
+ "description": "Rate limit information",
+ "properties": {
+ "limit": {
+ "description": "Request limit",
+ "type": "integer"
+ },
+ "remaining": {
+ "description": "Remaining requests",
+ "type": "integer"
+ },
+ "reset": {
+ "description": "Reset timestamp",
+ "type": "integer"
+ }
+ },
+ "type": "object"
+ },
+ "results": {
+ "description": "Array of reverse geocoding results",
+ "items": {
+ "properties": {
+ "annotations": {
+ "description": "Additional annotations (if no_annotations not set)",
+ "type": "object"
+ },
+ "bounds": {
+ "description": "Bounding box coordinates",
+ "type": "object"
+ },
+ "components": {
+ "description": "Address components breakdown",
+ "type": "object"
+ },
+ "confidence": {
+ "description": "Confidence score 0-10",
+ "type": "integer"
+ },
+ "formatted": {
+ "description": "Formatted address string",
+ "type": "string"
+ },
+ "geometry": {
+ "description": "Geographic coordinates",
+ "properties": {
+ "lat": {
+ "description": "Latitude",
+ "type": "number"
+ },
+ "lng": {
+ "description": "Longitude",
+ "type": "number"
+ }
+ },
+ "type": "object"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "status": {
+ "description": "API response status",
+ "properties": {
+ "code": {
+ "description": "HTTP status code",
+ "type": "integer"
+ },
+ "message": {
+ "description": "Status message",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "total_results": {
+ "description": "Total number of results found",
+ "type": "integer"
+ }
+ },
+ "type": "object"
+}