Get a subject userstyle's feedback; a list of comment threads and the overall rating count and average.
Parameters
Output
Encoding
application/jsoncomments
array
Required
No description available.
ratingAverage
string
Optional
No description available.
ratingCount
integer
Required
No description available.
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "query",
"output": {
"schema": {
"type": "object",
"required": [
"comments",
"ratingCount"
],
"properties": {
"comments": {
"type": "array",
"items": {
"ref": "club.userstyles.alpha.defs#commentThreadView",
"type": "ref"
}
},
"ratingCount": {
"type": "integer"
},
"ratingAverage": {
"type": "string"
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"subject"
],
"properties": {
"subject": {
"type": "string",
"format": "at-uri",
"description": "uri of the subject userstyle"
}
}
},
"description": "Get a subject userstyle's feedback; a list of comment threads and the overall rating count and average."
}