Sage · Schema

AddressInput

AccountingBusiness ManagementCloud SoftwareERPPayrollHR

Properties

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

JSON Schema

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