TODO: describe purpose of this schema
Record Key
any
Any valid record key
Properties
avatar
blob
Optional
No description available.
maxSize: 2.0 MBcreatedAt
string
datetime
Required
An RFC 3339 formatted timestamp.
description
string
Optional
No description available.
maxLength: 3000 bytesmaxGraphemes: 300 graphemesdescriptionFacets
array
of
ref
app.bsky.richtext.facet
Optional
No description available.
name
string
Required
TODO: title name of record; can not be empty
maxLength: 640 bytesminLength: 1 bytesmaxGraphemes: 64 graphemesView raw schema
{
"key": "any",
"type": "record",
"record": {
"type": "object",
"required": [
"name",
"createdAt"
],
"properties": {
"name": {
"type": "string",
"maxLength": 640,
"minLength": 1,
"description": "TODO: title name of record; can not be empty",
"maxGraphemes": 64
},
"avatar": {
"type": "blob",
"accept": [
"image/png",
"image/jpeg"
],
"maxSize": 2000000
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"description": {
"type": "string",
"maxLength": 3000,
"maxGraphemes": 300
},
"descriptionFacets": {
"type": "array",
"items": {
"ref": "app.bsky.richtext.facet",
"type": "ref"
}
}
}
},
"description": "TODO: describe purpose of this schema"
}