Microsoft Graph · Schema

authenticationAttributeCollectionPageViewConfiguration

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
description string The description of the page.
inputs array The display configuration of attributes being collected on the attribute collection page. You must specify all attributes that you want to retain, otherwise they're removed from the user flow.
title string The title of the attribute collection page.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphauthenticationattributecollectionpageviewconfi-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.authenticationAttributeCollectionPageViewConfiguration",
  "title": "authenticationAttributeCollectionPageViewConfiguration",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "description": {
      "type": "string",
      "description": "The description of the page.",
      "nullable": true
    },
    "inputs": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/microsoft.graph.authenticationAttributeCollectionInputConfiguration"
      },
      "description": "The display configuration of attributes being collected on the attribute collection page. You must specify all attributes that you want to retain, otherwise they're removed from the user flow."
    },
    "title": {
      "type": "string",
      "description": "The title of the attribute collection page.",
      "nullable": true
    },
    "@odata.type": {
      "type": "string"
    }
  }
}