A verifier's statement that it checked a claim and found the proof token in place. Issued by any account, including the attest service's own; trusted as far as the verifier is.
Record Key
tid
Timestamp-based ID
Properties
claim
ref
com.atproto.repo.strongRef
Required
The claim record checked.
createdAt
string
datetime
Required
Client-declared time of the statement.
evidence
string
uri
Required
Where the token was found.
maxLength: 2048 bytessignatures
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).
target
string
Required
The claim's target, repeated so the verification reads alone.
maxLength: 2048 bytesView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"claim",
"target",
"evidence",
"createdAt"
],
"properties": {
"claim": {
"ref": "com.atproto.repo.strongRef",
"type": "ref",
"description": "The claim record checked."
},
"target": {
"type": "string",
"maxLength": 2048,
"description": "The claim's target, repeated so the verification reads alone."
},
"evidence": {
"type": "string",
"format": "uri",
"maxLength": 2048,
"description": "Where the token was found."
},
"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 verifier's statement that it checked a claim and found the proof token in place. Issued by any account, including the attest service's own; trusted as far as the verifier is."
}