---
title: "Address"
url: "https://real-estate-agency.apim.eu/apis/property-management/versions/0192f0a1-654d-4abd-aa88-6716d49df69f/schemas/Address"
---

> Full API specification: https://real-estate-agency.apim.eu/apis/property-management/versions/0192f0a1-654d-4abd-aa88-6716d49df69f.md

# Address

## OpenAPI definition

```yaml
openapi: 3.0.3
info:
  title: Property Management
  version: 1.0.0
servers:
  - url: https://api.realestateagency.example/v1
    description: Production
  - url: https://sandbox.api.realestateagency.example/v1
    description: Sandbox
components:
  schemas:
    Address:
      type: object
      required:
        - postal_code
        - city
      properties:
        street:
          type: string
          example: 148 Elm Street
        postal_code:
          type: string
          pattern: ^[0-9]{5}$
          example: "10001"
        city:
          type: string
          example: Springfield
        country:
          type: string
          default: US
        location_precision:
          type: string
          description: Controls how precisely the address appears in the listing.
          enum:
            - exact
            - street
            - neighborhood
          default: street
```
