Commusoft · Schema

Address

Postal address used across Commusoft customer, supplier, and location records

Field Service ManagementJob ManagementHVACPlumbingTradesSchedulingInvoicingEngineersCustomersService History

Properties

Name Type Description
addressLine1 string First line of the address
addressLine2 string Second line of the address
town string Town or city
county string County or region
postcode string Postcode or zip code
country string Country
View JSON Schema on GitHub

JSON Schema

address.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/commusoft/json-schema/address.json",
  "title": "Address",
  "description": "Postal address used across Commusoft customer, supplier, and location records",
  "type": "object",
  "properties": {
    "addressLine1": {
      "type": "string",
      "description": "First line of the address"
    },
    "addressLine2": {
      "type": "string",
      "description": "Second line of the address"
    },
    "town": {
      "type": "string",
      "description": "Town or city"
    },
    "county": {
      "type": "string",
      "description": "County or region"
    },
    "postcode": {
      "type": "string",
      "description": "Postcode or zip code"
    },
    "country": {
      "type": "string",
      "description": "Country"
    }
  }
}