Skip to content

Latest commit

 

History

History
54 lines (46 loc) · 1.91 KB

File metadata and controls

54 lines (46 loc) · 1.91 KB
title accessPackageQuestion resource type
description Represents the questions configured on an access package assignment policy.
author markwahl-msft
ms.localizationpriority medium
ms.subservice entra-id-governance
doc_type resourcePageType
ms.date 07/22/2024

accessPackageQuestion resource type

Namespace: microsoft.graph

Used for the accessPackageQuestion property of an access package assignment policy.

Subtypes include accessPackageTextInputQuestion and accessPackageMultipleChoiceQuestion.

Properties

Property Type Description
id String ID of the question.
isAnswerEditable Boolean Specifies whether the requestor is allowed to edit answers to questions for an assignment by posting an update to accessPackageAssignmentRequest.
isRequired Boolean Whether the requestor is required to supply an answer or not.
localizations accessPackageLocalizedText collection The text of the question represented in a format for a specific locale.
text String The text of the question to show to the requestor.
sequence Int32 Relative position of this question when displaying a list of questions to the requestor.

Relationships

None.

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.accessPackageQuestion",
  "id": "String (identifier)",
  "sequence": "Integer",
  "isRequired": "Boolean",
  "isAnswerEditable": "Boolean", 
  "text": "String",
  "localizations": [
    {
      "@odata.type": "microsoft.graph.accessPackageLocalizedText"
    }
  ]
}