Microsoft Graph · Schema

accessPackageAnswerChoice

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
actualValue string The actual value of the selected choice. This is typically a string value which is understandable by applications. Required.
localizations array The text of the answer choice represented in a format for a specific locale.
text string The string to display for this answer; if an Accept-Language header is provided, and there is a matching localization in localizations, this string will be the matching localized string; otherwise, th
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphaccesspackageanswerchoice-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.accessPackageAnswerChoice",
  "title": "accessPackageAnswerChoice",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "actualValue": {
      "type": "string",
      "description": "The actual value of the selected choice. This is typically a string value which is understandable by applications. Required.",
      "nullable": true
    },
    "localizations": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/microsoft.graph.accessPackageLocalizedText"
      },
      "description": "The text of the answer choice represented in a format for a specific locale."
    },
    "text": {
      "type": "string",
      "description": "The string to display for this answer; if an Accept-Language header is provided, and there is a matching localization in localizations, this string will be the matching localized string; otherwise, this string remains as the default non-localized string. Required.",
      "nullable": true
    },
    "@odata.type": {
      "type": "string"
    }
  }
}