A piece of feedback posted into a space. Lives in the author's repo and points at the space.
Record Key
tid
Timestamp-based ID
Properties
body
string
Optional
No description available.
maxLength: 20000 bytesmaxGraphemes: 10000 graphemescreatedAt
string
datetime
Required
An RFC 3339 formatted timestamp.
images
array
of
ref
#image
Optional
Optional image attachments.
maxLength: 4 itemsspace
ref
com.atproto.repo.strongRef
Required
Strong reference to the app.userinput.space this belongs to. Indexed by constellation at space.uri.
tags
array
of
string
Optional
Tag values drawn from the space's tag list.
maxLength: 8 itemstitle
string
Required
No description available.
maxLength: 600 bytesmaxGraphemes: 300 graphemesView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"space",
"title",
"createdAt"
],
"properties": {
"body": {
"type": "string",
"maxLength": 20000,
"maxGraphemes": 10000
},
"tags": {
"type": "array",
"items": {
"type": "string",
"maxLength": 64
},
"maxLength": 8,
"description": "Tag values drawn from the space's tag list."
},
"space": {
"ref": "com.atproto.repo.strongRef",
"type": "ref",
"description": "Strong reference to the app.userinput.space this belongs to. Indexed by constellation at space.uri."
},
"title": {
"type": "string",
"maxLength": 600,
"maxGraphemes": 300
},
"images": {
"type": "array",
"items": {
"ref": "#image",
"type": "ref"
},
"maxLength": 4,
"description": "Optional image attachments."
},
"createdAt": {
"type": "string",
"format": "datetime"
}
}
},
"description": "A piece of feedback posted into a space. Lives in the author's repo and points at the space."
}