This server event occurs when a FEEDBACK_USER
user removes the rating they previously submitted for a topic.
This event contains the following fields:
Field | Description |
---|---|
breadcrumb |
Contains the list of topics leading to this topic in the document's table of contents. Each topic contains its tocId and title . |
document |
An object containing information about the document. |
id |
The document's identifier. |
title |
The title of the document. |
type |
The document's type (for example, STRUCTURED_DOCUMENT ). |
metadata |
A list of the document's metadata with the label and values of each key. |
rating |
An object containing information about the rating. |
type |
The type of rating (for example, like , stars , or dichotomous ). |
Since this event originates from the server and not the web application, it is not possible to listen to it.
A table for the most common fields is in Analytics events.
Example:
{
"parameters": {
"breadcrumb": [
{
"tocId": "5RemoRqRgCl_Sfjsgyehd",
"title": "Player"
}
],
"document": {
"id": "DmLWMPffjdnsu5frIXOxPA",
"title": "Rights assignment",
"type": "STRUCTURED_DOCUMENT",
"metadata": [
{
"key": "audience",
"label": "Target Audience",
"values": [
"public"
]
},
{
"key": "Category",
"label": "Category",
"values": [
"Screencasts"
]
},
{
"key": "Product",
"label": "Product",
"values": [
"Fluid Topics"
]
},
{
"key": "Version_FT",
"label": "Fluid Topics Version",
"values": [
"Latest"
]
}
]
},
"rating": {
"type": "like"
}
}
}