A forum's identity and configuration. Lives in the forum account's repo; the forum's DID is the forum's identity.
Record Key
literal:self
Fixed literal value
Properties
avatar
blob
Optional
No description available.
maxSize: 1.0 MBbanner
blob
Optional
No description available.
maxSize: 2.0 MBcreatedAt
string
datetime
Optional
An RFC 3339 formatted timestamp.
description
string
Optional
No description available.
maxLength: 10000 bytesmaxGraphemes: 1000 graphemeslinks
array
of
string
uri
Optional
No description available.
maxLength: 20 itemsname
string
Required
No description available.
maxLength: 1000 bytesmaxGraphemes: 100 graphemesranks
array
of
ref
#rank
Optional
Post-count rank ladder, ordered ascending by minPosts. Ranks are computed by appviews from indexed post counts.
maxLength: 50 itemsrules
array
of
union
Optional
No description available.
maxLength: 50 itemsView raw schema
{
"key": "literal:self",
"type": "record",
"record": {
"type": "object",
"required": [
"name"
],
"properties": {
"name": {
"type": "string",
"maxLength": 1000,
"maxGraphemes": 100
},
"links": {
"type": "array",
"items": {
"type": "string",
"format": "uri"
},
"maxLength": 20
},
"ranks": {
"type": "array",
"items": {
"ref": "#rank",
"type": "ref"
},
"maxLength": 50,
"description": "Post-count rank ladder, ordered ascending by minPosts. Ranks are computed by appviews from indexed post counts."
},
"rules": {
"type": "array",
"items": {
"refs": [
"app.atmobb.richtext.block#text",
"app.atmobb.richtext.block#quote",
"app.atmobb.richtext.block#code"
],
"type": "union"
},
"maxLength": 50
},
"avatar": {
"type": "blob",
"accept": [
"image/png",
"image/jpeg",
"image/webp"
],
"maxSize": 1000000
},
"banner": {
"type": "blob",
"accept": [
"image/png",
"image/jpeg",
"image/webp"
],
"maxSize": 2000000
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"description": {
"type": "string",
"maxLength": 10000,
"maxGraphemes": 1000
}
}
},
"description": "A forum's identity and configuration. Lives in the forum account's repo; the forum's DID is the forum's identity."
}