Microsoft Graph · Schema

microsoft.graph.userFlowLanguageConfiguration

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphuserflowlanguageconfiguration-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.userFlowLanguageConfiguration",
  "title": "microsoft.graph.userFlowLanguageConfiguration",
  "allOf": [
    {
      "$ref": "#/components/schemas/microsoft.graph.entity"
    },
    {
      "title": "userFlowLanguageConfiguration",
      "required": [
        "@odata.type"
      ],
      "type": "object",
      "properties": {
        "displayName": {
          "type": "string",
          "description": "The language name to display. This property is read-only.",
          "nullable": true
        },
        "isEnabled": {
          "type": "boolean",
          "description": "Indicates whether the language is enabled within the user flow."
        },
        "defaultPages": {
          "type": "array",
          "items": {
            "$ref": "#/components/schemas/microsoft.graph.userFlowLanguagePage"
          },
          "description": "Collection of pages with the default content to display in a user flow for a specified language. This collection doesn't allow any kind of modification.",
          "x-ms-navigationProperty": true
        },
        "overridesPages": {
          "type": "array",
          "items": {
            "$ref": "#/components/schemas/microsoft.graph.userFlowLanguagePage"
          },
          "description": "Collection of pages with the overrides messages to display in a user flow for a specified language. This collection only allows you to modify the content of the page, any other modification isn't allowed (creation or deletion of pages).",
          "x-ms-navigationProperty": true
        },
        "@odata.type": {
          "type": "string"
        }
      }
    }
  ],
  "x-ms-discriminator-value": "#microsoft.graph.userFlowLanguageConfiguration"
}