Propertyware · Schema

Address

Address

Property ManagementReal EstateRental PropertiesSingle-Family RentalsLeasesTenantsMaintenanceWork OrdersFinancial TransactionsOwner Reports

Properties

Name Type Description
address string Primary street and/or unit address.
addressCont string Address continuation.
city string City.
country string Country.
postalCode string Postal code.
stateRegion string State/region.
View JSON Schema on GitHub

JSON Schema

address.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Address",
  "description": "Address",
  "type": "object",
  "properties": {
    "address": {
      "type": "string",
      "description": "Primary street and/or unit address."
    },
    "addressCont": {
      "type": "string",
      "description": "Address continuation."
    },
    "city": {
      "type": "string",
      "description": "City."
    },
    "country": {
      "type": "string",
      "description": "Country."
    },
    "postalCode": {
      "type": "string",
      "description": "Postal code."
    },
    "stateRegion": {
      "type": "string",
      "description": "State/region."
    }
  }
}