Xero · Schema

ProjectUser

AccountingBank FeedsFinanceFinancial ServicesInvoicingPayrollSmall Business

Properties

Name Type Description
userId string Identifier of the user of the project.
name string Full name of the user.
email string Email address of the user.
View JSON Schema on GitHub

JSON Schema

xero-projectuser-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ProjectUser",
  "title": "ProjectUser",
  "externalDocs": {
    "url": "https://developer.xero.com/documentation/projects/users"
  },
  "type": "object",
  "properties": {
    "userId": {
      "type": "string",
      "format": "uuid",
      "example": "254553fa-2be8-4991-bd5e-70a97ea12ef8",
      "description": "Identifier of the user of the project."
    },
    "name": {
      "type": "string",
      "example": "Sidney Allen",
      "description": "Full name of the user."
    },
    "email": {
      "type": "string",
      "example": "[email protected]",
      "description": "Email address of the user."
    }
  }
}