Affinity · Schema

Attendee

CRMRelationship IntelligencePrivate EquityVenture CapitalContactsOrganizationsOpportunitiesDeal Management

Properties

Name Type Description
emailAddress string The email addresses of the attendee
person object
View JSON Schema on GitHub

JSON Schema

affinity-attendee-schema.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Attendee",
  "type": "object",
  "properties": {
    "emailAddress": {
      "description": "The email addresses of the attendee",
      "type": "string",
      "format": "email",
      "examples": [
        "[email protected]"
      ],
      "nullable": true
    },
    "person": {
      "oneOf": [
        {
          "$ref": "#/components/schemas/PersonData"
        },
        {
          "type": "null"
        }
      ]
    }
  },
  "required": [
    "emailAddress",
    "person"
  ],
  "additionalProperties": false
}