Microsoft Graph · Schema

localeInfo

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
displayName string A name representing the user's locale in natural language, for example, 'English (United States)'.
locale string A locale representation for the user, which includes the user's preferred language and country/region. For example, 'en-us'. The language component follows 2-letter codes as defined in ISO 639-1, and
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphlocaleinfo-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.localeInfo",
  "title": "localeInfo",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "displayName": {
      "type": "string",
      "description": "A name representing the user's locale in natural language, for example, 'English (United States)'.",
      "nullable": true
    },
    "locale": {
      "type": "string",
      "description": "A locale representation for the user, which includes the user's preferred language and country/region. For example, 'en-us'. The language component follows 2-letter codes as defined in ISO 639-1, and the country component follows 2-letter codes as defined in ISO 3166-1 alpha-2.",
      "nullable": true
    },
    "@odata.type": {
      "type": "string"
    }
  }
}