Microsoft Graph · Schema

microsoft.graph.identityUserFlowAttribute

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphidentityuserflowattribute-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.identityUserFlowAttribute",
  "title": "microsoft.graph.identityUserFlowAttribute",
  "allOf": [
    {
      "$ref": "#/components/schemas/microsoft.graph.entity"
    },
    {
      "title": "identityUserFlowAttribute",
      "required": [
        "@odata.type"
      ],
      "type": "object",
      "properties": {
        "dataType": {
          "$ref": "#/components/schemas/microsoft.graph.identityUserFlowAttributeDataType"
        },
        "description": {
          "type": "string",
          "description": "The description of the user flow attribute that's shown to the user at the time of sign up.",
          "nullable": true
        },
        "displayName": {
          "type": "string",
          "description": "The display name of the user flow attribute.  Supports $filter (eq, ne).",
          "nullable": true
        },
        "userFlowAttributeType": {
          "$ref": "#/components/schemas/microsoft.graph.identityUserFlowAttributeType"
        },
        "@odata.type": {
          "type": "string"
        }
      },
      "discriminator": {
        "propertyName": "@odata.type",
        "mapping": {
          "#microsoft.graph.identityBuiltInUserFlowAttribute": "#/components/schemas/microsoft.graph.identityBuiltInUserFlowAttribute",
          "#microsoft.graph.identityCustomUserFlowAttribute": "#/components/schemas/microsoft.graph.identityCustomUserFlowAttribute"
        }
      }
    }
  ]
}