A method of grouping posts into a single 'category'
Record Key
any
Any valid record key
Properties
categoryType
string
Required
No description available.
maxLength: 30 bytesdescription
string
Optional
No description available.
maxLength: 300 bytesgroup
string
at-uri
Required
An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).
name
string
Required
No description available.
maxLength: 100 bytesminLength: 1 bytesView raw schema
{
"key": "any",
"type": "record",
"record": {
"type": "object",
"required": [
"name",
"group",
"categoryType"
],
"properties": {
"name": {
"type": "string",
"maxLength": 100,
"minLength": 1
},
"group": {
"type": "string",
"format": "at-uri"
},
"description": {
"type": "string",
"maxLength": 300
},
"categoryType": {
"type": "string",
"maxLength": 30
}
}
},
"description": "A method of grouping posts into a single 'category'"
}