Microsoft Exchange · Schema

PersonType

The type of person

CalendarCollaborationContactsEmailEnterprise

Properties

Name Type Description
class string The type of data source such as Person (for directory data) or Group (for unified groups)
subclass string The sub-type such as OrganizationUser, PersonalContact, ExternalContact, or UnifiedGroup
View JSON Schema on GitHub

JSON Schema

microsoft-exchange-persontype-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PersonType",
  "title": "PersonType",
  "type": "object",
  "description": "The type of person",
  "properties": {
    "class": {
      "type": "string",
      "description": "The type of data source such as Person (for directory data) or Group (for unified groups)"
    },
    "subclass": {
      "type": "string",
      "description": "The sub-type such as OrganizationUser, PersonalContact, ExternalContact, or UnifiedGroup"
    }
  }
}