Sage · Schema

Business

AccountingBusiness ManagementCloud SoftwareERPPayrollHR

Properties

Name Type Description
id string
name string
registration_number string
tax_number string
address object
currency object
financial_year_start_date string
View JSON Schema on GitHub

JSON Schema

sage-business-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Business",
  "title": "Business",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "registration_number": {
      "type": "string"
    },
    "tax_number": {
      "type": "string"
    },
    "address": {
      "$ref": "#/components/schemas/Address"
    },
    "currency": {
      "$ref": "#/components/schemas/CurrencyRef"
    },
    "financial_year_start_date": {
      "type": "string",
      "format": "date"
    }
  }
}