A signed public statement by the author, optionally about a subject.
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
Client-declared time of the statement.
signatures
ref
app.certified.signature.defs#list
Optional
Inline signatures per the ATProtocol Attestation Specification; attest requires one from the author's device key (did:key, delegated from their passkey).
subject
string
uri
Optional
Optional: what the statement is about.
maxLength: 2048 bytestext
string
Required
No description available.
maxLength: 16000 bytesmaxGraphemes: 4000 graphemesView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"text",
"createdAt"
],
"properties": {
"text": {
"type": "string",
"maxLength": 16000,
"maxGraphemes": 4000
},
"subject": {
"type": "string",
"format": "uri",
"maxLength": 2048,
"description": "Optional: what the statement is about."
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "Client-declared time of the statement."
},
"signatures": {
"ref": "app.certified.signature.defs#list",
"type": "ref",
"description": "Inline signatures per the ATProtocol Attestation Specification; attest requires one from the author's device key (did:key, delegated from their passkey)."
}
}
},
"description": "A signed public statement by the author, optionally about a subject."
}