Sage · Schema

Address

AccountingBusiness ManagementCloud SoftwareERPPayrollHR

Properties

Name Type Description
address_line_1 string
address_line_2 string
city string
region string
postal_code string
country object
View JSON Schema on GitHub

JSON Schema

sage-address-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Address",
  "title": "Address",
  "type": "object",
  "properties": {
    "address_line_1": {
      "type": "string"
    },
    "address_line_2": {
      "type": "string"
    },
    "city": {
      "type": "string"
    },
    "region": {
      "type": "string"
    },
    "postal_code": {
      "type": "string"
    },
    "country": {
      "$ref": "#/components/schemas/CountryRef"
    }
  }
}