Intuit · Schema
PhysicalAddress
Physical (mailing) address
AccountingCustom FieldsFinancialFinancial ServicesInvoicingPaymentsPayrollProject ManagementSales TaxSmall BusinessTaxTax PreparationTaxesTime TrackingFortune 1000
Properties
| Name | Type | Description |
|---|---|---|
| Id | string | Unique identifier for the address |
| Line1 | string | First line of the street address |
| Line2 | string | Second line of the street address |
| Line3 | string | Third line of the street address |
| Line4 | string | Fourth line of the street address |
| Line5 | string | Fifth line of the street address |
| City | string | City name |
| CountrySubDivisionCode | string | Region or state within a country (e.g., state, province) |
| PostalCode | string | Postal code |
| Country | string | Country name or code |
| Lat | string | Latitude coordinate |
| Long | string | Longitude coordinate |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "PhysicalAddress",
"type": "object",
"description": "Physical (mailing) address",
"properties": {
"Id": {
"type": "string",
"description": "Unique identifier for the address"
},
"Line1": {
"type": "string",
"description": "First line of the street address"
},
"Line2": {
"type": "string",
"description": "Second line of the street address"
},
"Line3": {
"type": "string",
"description": "Third line of the street address"
},
"Line4": {
"type": "string",
"description": "Fourth line of the street address"
},
"Line5": {
"type": "string",
"description": "Fifth line of the street address"
},
"City": {
"type": "string",
"description": "City name"
},
"CountrySubDivisionCode": {
"type": "string",
"description": "Region or state within a country (e.g., state, province)"
},
"PostalCode": {
"type": "string",
"description": "Postal code"
},
"Country": {
"type": "string",
"description": "Country name or code"
},
"Lat": {
"type": "string",
"description": "Latitude coordinate"
},
"Long": {
"type": "string",
"description": "Longitude coordinate"
}
}
}