Xero · Schema

ContactPerson

AccountingBank FeedsFinanceFinancial ServicesInvoicingPayrollSmall Business

Properties

Name Type Description
FirstName string First name of person
LastName string Last name of person
EmailAddress string Email address of person
IncludeInEmails boolean boolean to indicate whether contact should be included on emails with invoices etc.
View JSON Schema on GitHub

JSON Schema

xero-contactperson-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ContactPerson",
  "title": "ContactPerson",
  "externalDocs": {
    "url": "http://developer.xero.com/documentation/api/contacts/"
  },
  "properties": {
    "FirstName": {
      "description": "First name of person",
      "type": "string"
    },
    "LastName": {
      "description": "Last name of person",
      "type": "string"
    },
    "EmailAddress": {
      "description": "Email address of person",
      "type": "string"
    },
    "IncludeInEmails": {
      "description": "boolean to indicate whether contact should be included on emails with invoices etc.",
      "type": "boolean"
    }
  },
  "type": "object"
}