Microsoft Graph · Schema

personType

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
class string The type of data source, such as Person.
subclass string The secondary type of data source, such as OrganizationUser.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphpersontype-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.personType",
  "title": "personType",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "class": {
      "type": "string",
      "description": "The type of data source, such as Person.",
      "nullable": true
    },
    "subclass": {
      "type": "string",
      "description": "The secondary type of data source, such as OrganizationUser.",
      "nullable": true
    },
    "@odata.type": {
      "type": "string"
    }
  }
}