Microsoft Graph · Schema

userFeedback

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
rating object
text string The feedback text provided by the user of this endpoint for the session.
tokens object The set of feedback tokens provided by the user of this endpoint for the session. This is a set of Boolean properties. The property names should not be relied upon since they may change depending on w
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphcallrecordsuserfeedback-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.callRecords.userFeedback",
  "title": "userFeedback",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "rating": {
      "$ref": "#/components/schemas/microsoft.graph.callRecords.userFeedbackRating"
    },
    "text": {
      "type": "string",
      "description": "The feedback text provided by the user of this endpoint for the session.",
      "nullable": true
    },
    "tokens": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/microsoft.graph.callRecords.feedbackTokenSet"
        },
        {
          "type": "object",
          "nullable": true
        }
      ],
      "description": "The set of feedback tokens provided by the user of this endpoint for the session. This is a set of Boolean properties. The property names should not be relied upon since they may change depending on what tokens are offered to the user."
    },
    "@odata.type": {
      "type": "string"
    }
  }
}