changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "country": {
+ "description": "Full country name",
+ "type": "string"
+ },
+ "country_abbreviation": {
+ "description": "ISO 3166-1 alpha-2 country code",
+ "type": "string"
+ },
+ "places": {
+ "description": "List of places associated with the postal code",
+ "items": {
+ "properties": {
+ "lat": {
+ "description": "Latitude coordinate",
+ "type": "number"
+ },
+ "lon": {
+ "description": "Longitude coordinate",
+ "type": "number"
+ },
+ "name": {
+ "description": "Place name (city)",
+ "type": "string"
+ },
+ "state": {
+ "description": "State or province name",
+ "type": "string"
+ },
+ "state_abbreviation": {
+ "description": "State or province abbreviation",
+ "type": "string"
+ }
+ },
+ "required": [
+ "name",
+ "state",
+ "state_abbreviation",
+ "lat",
+ "lon"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "post_code": {
+ "description": "ZIP or postal code",
+ "type": "string"
+ }
+ },
+ "required": [
+ "post_code",
+ "country",
+ "country_abbreviation",
+ "places"
+ ],
+ "type": "object"
+}