Xero · Schema

CISSetting

AccountingBank FeedsFinanceFinancial ServicesInvoicingPayrollSmall Business

Properties

Name Type Description
CISEnabled boolean Boolean that describes if the contact is a CIS Subcontractor
Rate number CIS Deduction rate for the contact if he is a subcontractor. If the contact is not CISEnabled, then the rate is not returned
View JSON Schema on GitHub

JSON Schema

xero-cissetting-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CISSetting",
  "title": "CISSetting",
  "externalDocs": {
    "url": "http://developer.xero.com/documentation/api/contacts/"
  },
  "properties": {
    "CISEnabled": {
      "description": "Boolean that describes if the contact is a CIS Subcontractor",
      "type": "boolean"
    },
    "Rate": {
      "description": "CIS Deduction rate for the contact if he is a subcontractor. If the contact is not CISEnabled, then the rate is not returned",
      "type": "number",
      "format": "double",
      "readOnly": true,
      "x-is-money": true
    }
  }
}