---
title: "Property"
url: "https://apiportal.pexaclear.com.au/apis/gap-au-aml-customer-experience-standard-v1-v1/versions/9c31c4c2-000c-418b-ad44-c201d75d8af9/schemas/Property"
---

> Full API specification: https://apiportal.pexaclear.com.au/apis/gap-au-aml-customer-experience-standard-v1-v1/versions/9c31c4c2-000c-418b-ad44-c201d75d8af9.md

# Property

## OpenAPI definition

```yaml
openapi: 3.0.3
info:
  title: AML Verification API
  version: v1
servers:
  - url: https://api.pexaclear.com.au
    description: API Gateway URL
components:
  schemas:
    Property:
      type: object
      properties:
        address:
          nullable: true
          type: object
          required:
            - streetNumber
            - streetName
            - streetType
            - suburb
            - state
            - postcode
          properties:
            unitNumber:
              type: string
              nullable: true
              maxLength: 20
            streetNumber:
              type: string
              minLength: 1
              maxLength: 20
            streetName:
              type: string
              minLength: 1
              maxLength: 100
            streetType:
              type: string
              minLength: 1
              maxLength: 50
              description: e.g. Street, Road, Avenue, Drive, Court
            suburb:
              type: string
              minLength: 1
              maxLength: 50
            state:
              type: string
              minLength: 2
              maxLength: 3
              pattern: ^(NSW|VIC|QLD|WA|SA|TAS|ACT|NT)$
              description: Australian state or territory code
            postcode:
              type: string
              minLength: 4
              maxLength: 4
              pattern: ^[0-9]{4}$
              description: 4-digit Australian postcode
```
