Microsoft Graph · Schema

privacyProfile

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
contactEmail string A valid smtp email address for the privacy statement contact. Not required.
statementUrl string A valid URL format that begins with http:// or https://. Maximum length is 255 characters. The URL that directs to the company's privacy statement. Not required.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphprivacyprofile-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.privacyProfile",
  "title": "privacyProfile",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "contactEmail": {
      "type": "string",
      "description": "A valid smtp email address for the privacy statement contact. Not required.",
      "nullable": true
    },
    "statementUrl": {
      "type": "string",
      "description": "A valid URL format that begins with http:// or https://. Maximum length is 255 characters. The URL that directs to the company's privacy statement. Not required.",
      "nullable": true
    },
    "@odata.type": {
      "type": "string"
    }
  }
}