# address Address for the party or organization * Is optional * Type: `object` With the following properties: | Property | Type | Required | Description | | --- | --- | --- | --- | | `AdrTp` | String | Optional | List based on ISO20022 AddressType1Code List. The value of this property **must** be equal to one of the [known values](#adrtp-known-values). | | `AdrLine` | Array | Optional | Information that locates and identifies the address for the party. Maximum length: 70 characters. | | `Dept` | String | Optional | Information that locates and identifies the department for the party. Maximum length: 70 characters. | | `SubDept` | String | Optional | Information that locates and identifies the sub department for the party. Maximum length: 70 characters. | | `StrtNm` | String | Optional | Information that locates and identifies the street name for the party, as defined by postal services. Maximum length: 70 characters. | | `BldgNb` | String | Optional | Information that locates and identifies the building number for the party, as defined by postal services. Maximum length: 16 characters | | `PstCd` | String | Optional | Information that locates and identifies postal code for the party, as defined by postal services. Maximum length: 16 characters | | `TwnNm` | String | Optional | Information that locates and identifies the city / town for the party, as defined by postal services. Maximum length: 35 characters | | `CtrySubDvsn` | String | Optional | Information that locates and identifies the state / county for the party, as defined by postal services. Maximum length: 35 characters | | [Ctry](/products/payments-odl/api-docs/ripplenet/resources/srpo/supporting-info-definitions/country) | Reference | Optional | Information that locates and identifies the country for the party, as defined by postal services. Use Alpha-2 Code as defined in the ISO CountryCode ISO 3166-1 list. Defined in `#/definitions/country`. | ## `AdrTp` known values | Value | Description | | --- | --- | | `ADDR` | Postal | | `BIZZ` | Business | | `DLVY` | Delivery To | | `HOME` | Residential | | `MLTO` | Mail To | | `PBOX` | PO Box | ## JSON schema extract ```json "address": { "type": "object", "properties": { "AdrTp": { "type": "string", "description": "List based on ISO20022 AddressType1Code List", "enum": [ "ADDR", "BIZZ", "DLVY", "HOME", "MLTO", "PBOX" ] }, "AdrLine": { "description": "Information that locates and identifies the address for the party.", "type": "array", "maxLength": 70 }, "Dept": { "description": "Information that locates and identifies the department for the party.", "type": "string", "maxLength": 70 }, "SubDept": { "description": "Information that locates and identifies the sub department for the party.", "type": "string", "maxLength": 70 }, "StrtNm": { "description": "Information that locates and identifies the street name for the party, as defined by postal services.", "type": "string", "maxLength": 70 }, "BldgNb": { "description": "Information that locates and identifies the building number for the party, as defined by postal services.", "type": "string", "maxLength": 16 }, "PstCd": { "description": "Information that locates and identifies postal code for the party, as defined by postal services.", "type": "string", "maxLength": 16 }, "TwnNm": { "description": "Information that locates and identifies the city / town for the party, as defined by postal services.", "type": "string", "maxLength": 35 }, "CtrySubDvsn": { "description": "Information that locates and identifies the state / county for the party, as defined by postal services.", "type": "string", "maxLength": 35 }, "Ctry": { "description": "Information that locates and identifies the country for the party, as defined by postal services. Use Alpha-2 Code as defined in the ISO CountryCode ISO 3166-1 list.", "$ref": "#/definitions/country" } } } ```