accessPackageQuestion 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.

Used for the accessPackageQuestion property of an access package assignment policy and the accessPackageResourceAttributeQuestion in an accessPackageResourceAttribute.

Subtypes include accessPackageTextInputQuestion and accessPackageMultipleChoiceQuestion.

Properties

Property Type Description
id String ID of the question.
isRequired Boolean Whether the requestor is required to supply an answer or not.
sequence Int32 Relative position of this question when displaying a list of questions to the requestor.
text accessPackageLocalizedContent The text of the question to show to the requestor.
isAnswerEditable Boolean Specifies whether the requestor is allowed to edit answers to questions.

Relationships

None.

JSON representation

The following is a JSON representation of the resource.

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