No description available.
Properties
circleId
string
tid
Required
Stable Circle identity, independent of the Space key, so a Circle remains recognizable across a Space migration.
memberCount
integer
Optional
Number of members on the owner's PDS member list. The member list itself is owner-only and is read from the owner's PDS, not from this service.
minimum: 0muted
boolean
Optional
No description available.
name
string
Required
No description available.
maxLength: 64 bytesminLength: 1 bytesowner
string
did
Required
A decentralized identifier (DID).
uri
string
space-ref
Required
No description available.
View raw schema
{
"type": "object",
"required": [
"uri",
"circleId",
"name",
"owner"
],
"properties": {
"uri": {
"type": "string",
"format": "space-ref"
},
"name": {
"type": "string",
"maxLength": 64,
"minLength": 1
},
"muted": {
"type": "boolean"
},
"owner": {
"type": "string",
"format": "did"
},
"circleId": {
"type": "string",
"format": "tid",
"description": "Stable Circle identity, independent of the Space key, so a Circle remains recognizable across a Space migration."
},
"memberCount": {
"type": "integer",
"minimum": 0,
"description": "Number of members on the owner's PDS member list. The member list itself is owner-only and is read from the owner's PDS, not from this service."
}
}
}