Record declaring of the existence of a feed generator, and containing metadata about it. The record can exist in any repository.
Record Key
tid
Timestamp-based ID
Properties
avatar
blob
Optional
No description available.
maxSize: 1.0 MBcreatedAt
string
datetime
Required
An RFC 3339 formatted timestamp.
description
string
Optional
No description available.
maxLength: 3000 bytesmaxGraphemes: 300 graphemesdid
string
did
Required
A decentralized identifier (DID).
displayName
string
Required
No description available.
maxLength: 240 bytesmaxGraphemes: 24 graphemesView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"did",
"displayName",
"createdAt"
],
"properties": {
"did": {
"type": "string",
"format": "did"
},
"avatar": {
"type": "blob",
"accept": [
"image/png",
"image/jpeg"
],
"maxSize": 1000000
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"description": {
"type": "string",
"maxLength": 3000,
"maxGraphemes": 300
},
"displayName": {
"type": "string",
"maxLength": 240,
"maxGraphemes": 24
}
}
},
"description": "Record declaring of the existence of a feed generator, and containing metadata about it. The record can exist in any repository."
}