Block/Kick a member from the circle
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
reason
string
Optional
Reason for blocking
maxLength: 1000 bytesmaxGraphemes: 100 graphemesring
ref
net.asadaame5121.at-circle.defs#ringRef
Required
No description available.
subject
string
did
Required
DID of the member to block
maxLength: 2000 bytesView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"subject",
"ring",
"createdAt"
],
"properties": {
"ring": {
"ref": "net.asadaame5121.at-circle.defs#ringRef",
"type": "ref"
},
"reason": {
"type": "string",
"maxLength": 1000,
"description": "Reason for blocking",
"maxGraphemes": 100
},
"subject": {
"type": "string",
"format": "did",
"maxLength": 2000,
"description": "DID of the member to block"
},
"createdAt": {
"type": "string",
"format": "datetime"
}
}
},
"description": "Block/Kick a member from the circle"
}