A signer's dissent against a petition.
Record Key
any
Any valid record key
Properties
comment
string
Required
The reason for objecting.
maxLength: 5000 bytesminLength: 1 bytesmaxGraphemes: 500 graphemescreatedAt
string
datetime
Required
An RFC 3339 formatted timestamp.
subject
ref
com.atproto.repo.strongRef
Required
The petition being objected to.
View raw schema
{
"key": "any",
"type": "record",
"record": {
"type": "object",
"required": [
"subject",
"comment",
"createdAt"
],
"properties": {
"comment": {
"type": "string",
"maxLength": 5000,
"minLength": 1,
"description": "The reason for objecting.",
"maxGraphemes": 500
},
"subject": {
"ref": "com.atproto.repo.strongRef",
"type": "ref",
"description": "The petition being objected to."
},
"createdAt": {
"type": "string",
"format": "datetime"
}
}
},
"description": "A signer's dissent against a petition."
}