{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Subregion3", "title": "Neighborhood", "description": "Recipient's address neighborhood's information.", "required": [ "code", "name" ], "type": "object", "properties": { "code": { "type": "string", "description": "Neighborhood's code, from the recipient's address.", "example": "Neighborhood example" }, "name": { "type": "string", "description": "Neighborhood's name, from the recipient's address.", "example": "Neighborhood example" } }, "example": { "code": "Vila Antonieta", "name": "Vila Antonieta" } }