No description available.
Record Key
tid
Timestamp-based ID
Properties
authorDid
string
did
Required
A decentralized identifier (DID).
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
hubRef
string
did
Optional
DID of the hub for global feed aggregation
lines
array
of
ref
#line
Required
No description available.
sharedPost
ref
com.atproto.repo.strongRef
Optional
No description available.
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"lines",
"createdAt",
"authorDid"
],
"properties": {
"lines": {
"type": "array",
"items": {
"ref": "#line",
"type": "ref"
}
},
"hubRef": {
"type": "string",
"format": "did",
"description": "DID of the hub for global feed aggregation"
},
"authorDid": {
"type": "string",
"format": "did"
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"sharedPost": {
"ref": "com.atproto.repo.strongRef",
"type": "ref"
}
}
}
}