This server event occurs when a FEEDBACK_USER user removes the rating they previously submitted for a document.
This event contains the following fields:
| Field | Description |
|---|---|
document |
An object containing information about the document. |
id |
The document's identifier. |
metadata |
A list of the document's metadata with the label and values of each key. |
title |
The title of the document. |
type |
The document's type (for example, STRUCTURED_DOCUMENT). |
mimeType |
The document's MIME type for an UNSTRUCTURED_DOCUMENT. |
rating |
An object containing information about the rating. |
type |
The type of rating. Can only be no_rating. |
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:
[
{
"document": {
"id": "Eb9T08h5UbpP~FAvJ84DHQ",
"title": "Fluid Topics API Reference Guide",
"type": "STRUCTURED_DOCUMENT",
"metadata": []
},
"rating": {
"type": "no_rating"
}
}
]