A feedback space created by an organization. Lives in the owner's repo; the owner DID is the repo it is stored in.
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
description
string
Optional
No description available.
maxLength: 3000 bytesmaxGraphemes: 1500 graphemesicon
blob
Optional
Optional space icon/logo.
maxSize: 1.0 MBname
string
Required
No description available.
maxLength: 200 bytesmaxGraphemes: 100 graphemestags
array
of
ref
#tag
Optional
The set of categories feedback in this space may be filed under.
maxLength: 24 itemsView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"name",
"createdAt"
],
"properties": {
"icon": {
"type": "blob",
"accept": [
"image/png",
"image/jpeg",
"image/webp"
],
"maxSize": 1000000,
"description": "Optional space icon/logo."
},
"name": {
"type": "string",
"maxLength": 200,
"maxGraphemes": 100
},
"tags": {
"type": "array",
"items": {
"ref": "#tag",
"type": "ref"
},
"maxLength": 24,
"description": "The set of categories feedback in this space may be filed under."
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"description": {
"type": "string",
"maxLength": 3000,
"maxGraphemes": 1500
}
}
},
"description": "A feedback space created by an organization. Lives in the owner's repo; the owner DID is the repo it is stored in."
}