Microsoft Graph · Schema

accessPackageAnswer

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
displayValue string The localized display value shown to the requestor and approvers.
answeredQuestion object
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphaccesspackageanswer-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.accessPackageAnswer",
  "title": "accessPackageAnswer",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "displayValue": {
      "type": "string",
      "description": "The localized display value shown to the requestor and approvers.",
      "nullable": true
    },
    "answeredQuestion": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/microsoft.graph.accessPackageQuestion"
        },
        {
          "type": "object",
          "nullable": true
        }
      ],
      "x-ms-navigationProperty": true
    },
    "@odata.type": {
      "type": "string"
    }
  },
  "discriminator": {
    "propertyName": "@odata.type",
    "mapping": {
      "#microsoft.graph.accessPackageAnswerString": "#/components/schemas/microsoft.graph.accessPackageAnswerString"
    }
  }
}