Microsoft Graph · Schema
microsoft.graph.identityUserFlowAttributeAssignment
Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/microsoft.graph.identityUserFlowAttributeAssignment",
"title": "microsoft.graph.identityUserFlowAttributeAssignment",
"allOf": [
{
"$ref": "#/components/schemas/microsoft.graph.entity"
},
{
"title": "identityUserFlowAttributeAssignment",
"required": [
"@odata.type"
],
"type": "object",
"properties": {
"displayName": {
"type": "string",
"description": "The display name of the identityUserFlowAttribute within a user flow.",
"nullable": true
},
"isOptional": {
"type": "boolean",
"description": "Determines whether the identityUserFlowAttribute is optional. true means the user doesn't have to provide a value. false means the user can't complete sign-up without providing a value."
},
"requiresVerification": {
"type": "boolean",
"description": "Determines whether the identityUserFlowAttribute requires verification, and is only used for verifying the user's phone number or email address."
},
"userAttributeValues": {
"type": "array",
"items": {
"$ref": "#/components/schemas/microsoft.graph.userAttributeValuesItem"
},
"description": "The input options for the user flow attribute. Only applicable when the userInputType is radioSingleSelect, dropdownSingleSelect, or checkboxMultiSelect."
},
"userInputType": {
"$ref": "#/components/schemas/microsoft.graph.identityUserFlowAttributeInputType"
},
"userAttribute": {
"anyOf": [
{
"$ref": "#/components/schemas/microsoft.graph.identityUserFlowAttribute"
},
{
"type": "object",
"nullable": true
}
],
"description": "The user attribute that you want to add to your user flow.",
"x-ms-navigationProperty": true
},
"@odata.type": {
"type": "string"
}
}
}
],
"x-ms-discriminator-value": "#microsoft.graph.identityUserFlowAttributeAssignment"
}