changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "address": {
+ "description": "Full street address",
+ "type": "string"
+ },
+ "city": {
+ "description": "City name",
+ "type": "string"
+ },
+ "coordinates": {
+ "description": "Geographic coordinates if available",
+ "oneOf": [
+ {
+ "properties": {
+ "latitude": {
+ "description": "Latitude coordinate",
+ "type": "number"
+ },
+ "longitude": {
+ "description": "Longitude coordinate",
+ "type": "number"
+ }
+ },
+ "required": [
+ "latitude",
+ "longitude"
+ ],
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "country": {
+ "description": "Country name",
+ "type": "string"
+ },
+ "id": {
+ "description": "Brewery ID",
+ "type": "string"
+ },
+ "name": {
+ "description": "Brewery name",
+ "type": "string"
+ },
+ "phone": {
+ "description": "Phone number",
+ "type": "string"
+ },
+ "postal_code": {
+ "description": "Postal/zip code",
+ "type": "string"
+ },
+ "state": {
+ "description": "State or province",
+ "type": "string"
+ },
+ "type": {
+ "description": "Brewery type (e.g., micro, macro, pub)",
+ "type": "string"
+ },
+ "website": {
+ "description": "Website URL",
+ "type": "string"
+ }
+ },
+ "required": [
+ "id",
+ "name",
+ "type",
+ "address",
+ "city",
+ "state",
+ "postal_code",
+ "country",
+ "coordinates",
+ "phone",
+ "website"
+ ],
+ "type": "object"
+}