Microsoft Graph · Schema

localizedLabel

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
isDefault boolean Indicates whether the label is the default label.
languageTag string The language tag for the label.
name string The name of the label.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphtermstorelocalizedlabel-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.termStore.localizedLabel",
  "title": "localizedLabel",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "isDefault": {
      "type": "boolean",
      "description": "Indicates whether the label is the default label.",
      "nullable": true
    },
    "languageTag": {
      "type": "string",
      "description": "The language tag for the label.",
      "nullable": true
    },
    "name": {
      "type": "string",
      "description": "The name of the label.",
      "nullable": true
    },
    "@odata.type": {
      "type": "string"
    }
  }
}