accessPackageTextInputQuestion resource type

Namespace: microsoft.graph

Important

APIs under the /beta version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported. To determine whether an API is available in v1.0, use the Version selector.

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"
}