{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Address4", "title": "Address4", "required": [ "postalCode", "country", "city", "state", "neighborhood", "street", "number", "complement", "location" ], "type": "object", "properties": { "postalCode": { "type": "string" }, "country": { "title": "Country", "required": [ "acronym", "name" ], "type": "object", "properties": { "acronym": { "type": "string" }, "name": { "type": "string" } }, "example": { "acronym": "BRA", "name": "Brazil" } }, "city": { "type": "string" }, "state": { "type": "string" }, "neighborhood": { "type": "string" }, "street": { "type": "string" }, "number": { "type": "string" }, "complement": { "type": "string" }, "location": { "title": "Location5", "required": [ "latitude", "longitude" ], "type": "object", "properties": { "latitude": { "type": "number" }, "longitude": { "type": "number" } }, "example": { "latitude": -22.974477767944336, "longitude": -43.18672561645508 } } }, "example": { "postalCode": "22220070", "country": { "acronym": "BRA", "name": "Brazil" }, "city": "Rio de Janeiro", "state": "RJ", "neighborhood": "Catete", "street": "Rua Artur Bernardes", "number": "", "complement": "", "location": { "latitude": -22.92860984802246, "longitude": -22.92860984802246 } } }