Xero · Schema

CISOrgSetting

AccountingBank FeedsFinanceFinancial ServicesInvoicingPayrollSmall Business

Properties

Name Type Description
CISContractorEnabled boolean true or false - Boolean that describes if the organisation is a CIS Contractor
CISSubContractorEnabled boolean true or false - Boolean that describes if the organisation is a CIS SubContractor
Rate number CIS Deduction rate for the organisation
View JSON Schema on GitHub

JSON Schema

xero-cisorgsetting-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CISOrgSetting",
  "title": "CISOrgSetting",
  "externalDocs": {
    "url": "https://developer.xero.com/documentation/api/organisation"
  },
  "properties": {
    "CISContractorEnabled": {
      "description": "true or false - Boolean that describes if the organisation is a CIS Contractor",
      "type": "boolean"
    },
    "CISSubContractorEnabled": {
      "description": "true or false - Boolean that describes if the organisation is a CIS SubContractor",
      "type": "boolean"
    },
    "Rate": {
      "description": "CIS Deduction rate for the organisation",
      "type": "number",
      "format": "double",
      "readOnly": true,
      "x-is-money": true
    }
  }
}