No description available.
Record Key
tid
Timestamp-based ID
Properties
coverPhoto
ref
com.atproto.repo.strongRef
Optional
No description available.
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
description
string
Optional
No description available.
maxGraphemes: 3000 graphemesphotos
array
of
ref
com.atproto.repo.strongRef
Required
No description available.
maxLength: 500 itemstitle
string
Required
No description available.
maxGraphemes: 200 graphemesView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"title",
"photos",
"createdAt"
],
"properties": {
"title": {
"type": "string",
"maxGraphemes": 200
},
"photos": {
"type": "array",
"items": {
"ref": "com.atproto.repo.strongRef",
"type": "ref"
},
"maxLength": 500
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"coverPhoto": {
"ref": "com.atproto.repo.strongRef",
"type": "ref"
},
"description": {
"type": "string",
"maxGraphemes": 3000
}
}
}
}