Microsoft Graph · Schema

dataSubject

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
email string Email of the data subject.
firstName string First name of the data subject.
lastName string Last Name of the data subject.
residency string The country/region of residency. The residency information is uesed only for internal reporting but not for the content search.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphdatasubject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.dataSubject",
  "title": "dataSubject",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "email": {
      "type": "string",
      "description": "Email of the data subject.",
      "nullable": true
    },
    "firstName": {
      "type": "string",
      "description": "First name of the data subject.",
      "nullable": true
    },
    "lastName": {
      "type": "string",
      "description": "Last Name of the data subject.",
      "nullable": true
    },
    "residency": {
      "type": "string",
      "description": "The country/region of residency. The residency information is uesed only for internal reporting but not for the content search.",
      "nullable": true
    },
    "@odata.type": {
      "type": "string"
    }
  }
}