Microsoft Graph · Schema

profileCardAnnotation

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
displayName string If present, the value of this field is used by the profile card as the default property label in the experience (for example, 'Cost Center').
localizations array Each resource in this collection represents the localized value of the attribute name for a given language, used as the default label for that locale. For example, a user with a nb-NO client gets 'Kos
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphprofilecardannotation-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.profileCardAnnotation",
  "title": "profileCardAnnotation",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "displayName": {
      "type": "string",
      "description": "If present, the value of this field is used by the profile card as the default property label in the experience (for example, 'Cost Center').",
      "nullable": true
    },
    "localizations": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/microsoft.graph.displayNameLocalization"
      },
      "description": "Each resource in this collection represents the localized value of the attribute name for a given language, used as the default label for that locale. For example, a user with a nb-NO client gets 'Kostnadssenter' as the attribute label, rather than 'Cost Center.'"
    },
    "@odata.type": {
      "type": "string"
    }
  }
}