Skip to content

Latest commit

 

History

History
54 lines (45 loc) · 2.23 KB

File metadata and controls

54 lines (45 loc) · 2.23 KB
title accessPackageTextInputQuestion resource type
description Child of accessPackageQuestion that has text input as the question's answer format.
author markwahl-msft
ms.localizationpriority medium
ms.subservice entra-id-governance
doc_type resourcePageType
ms.date 03/21/2024

accessPackageTextInputQuestion resource type

Namespace: microsoft.graph

[!INCLUDE beta-disclaimer]

A child of accessPackageQuestion that has text input as an answer and is used in the questions property of an accessPackageAssignmentPolicy and inside an accessPackageResourceAttribute of an access package resource.

Inherits from accessPackageQuestion.

Properties

Property Type Description
id String ID of the question. Inherited from accessPackageQuestion.
isRequired Boolean Indicates whether the requestor is required to supply an answer or not. Inherited from accessPackageQuestion.
isSingleLineQuestion Boolean Indicates whether the answer will be in single or multiple line format.
regexPattern String The regex pattern that the corresponding text answer must follow.
sequence Int32 Relative position of this question when displaying a list of questions to the requestor. Inherited from accessPackageQuestion.
text accessPackageLocalizedContent The text of the question to show to the requestor. Inherited from accessPackageQuestion.

Relationships

None.

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.accessPackageTextInputQuestion",
  "id": "String (identifier)",
  "isRequired": "Boolean",
  "text": {
    "@odata.type": "microsoft.graph.accessPackageLocalizedContent"
  },
  "regexPattern": "String",
  "sequence": "Integer",
  "isSingleLineQuestion": "Boolean"
}