---
title: "PostalAddressXml"
url: "https://dev.ionova.ai/apis/ars-address-resolution-service-4/versions/fdd2c316-7f84-4f04-8bb7-64e9bf97893b/schemas/PostalAddressXml"
---

> Full API specification: https://dev.ionova.ai/apis/ars-address-resolution-service-4/versions/fdd2c316-7f84-4f04-8bb7-64e9bf97893b.md

# PostalAddressXml

ISO 20022 XML tag equivalents of PostalAddress. Alternative input format — clients may supply either postalAddress (JSON) or postalAddressXml (XML tag names), not both.

## OpenAPI definition

```yaml
openapi: 3.0.3
info:
  title: ARS — Address Resolution Service
  version: 4.3.1
servers:
  - url: https://api-uat.ionova.ai/ars
    description: UAT (test data only)
components:
  schemas:
    PostalAddressXml:
      type: object
      description: >
        ISO 20022 XML tag equivalents of PostalAddress. Alternative input format
        — clients

        may supply either postalAddress (JSON) or postalAddressXml (XML tag
        names), not both.
      properties:
        AdrLine:
          type: array
          items:
            type: string
            maxLength: 70
          maxItems: 7
          xml:
            wrapped: false
        StrtNm:
          type: string
          maxLength: 70
        BldgNb:
          type: string
          maxLength: 16
        BldgNm:
          type: string
          maxLength: 35
        Flr:
          type: string
          maxLength: 70
        PstBx:
          type: string
          maxLength: 16
        Room:
          type: string
          maxLength: 70
        PstCd:
          type: string
          maxLength: 16
        TwnNm:
          type: string
          maxLength: 35
        TwnLctnNm:
          type: string
          maxLength: 35
        DstrctNm:
          type: string
          maxLength: 35
        CtrySubDvsn:
          type: string
          maxLength: 35
        Ctry:
          type: string
          pattern: ^[A-Z]{2}$
        CtryOfRes:
          type: string
          pattern: ^[A-Z]{2}$
```
