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
{
"$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"
}
}
}