Comment is blocked due to viewer blocking author or moderation action
Properties
View raw schema
{
"type": "object",
"required": [
"uri",
"blocked"
],
"properties": {
"uri": {
"type": "string",
"format": "at-uri",
"description": "AT-URI of the blocked comment"
},
"blocked": {
"type": "boolean",
"const": true,
"description": "Always true for blocked comments"
},
"blockedBy": {
"type": "string",
"maxLength": 64,
"description": "What caused the block: viewer blocked author, or comment was removed by moderators",
"knownValues": [
"author",
"moderator"
]
}
},
"description": "Comment is blocked due to viewer blocking author or moderation action"
}