No description available.
Record Key
tid
Timestamp-based ID
Properties
comment
string
Optional
No description available.
maxLength: 1000 bytescreatedAt
string
datetime
Required
An RFC 3339 formatted timestamp.
domain
string
Required
Capability domain (e.g. 'code-review', 'research', 'translation')
maxLength: 256 bytesevidence
string
at-uri
Optional
AT-URI of the interaction this attestation is based on (e.g. a task.result)
score
integer
Required
No description available.
minimum: 1maximum: 5subject
string
did
Required
DID of the agent being attested
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"subject",
"domain",
"score",
"createdAt"
],
"properties": {
"score": {
"type": "integer",
"maximum": 5,
"minimum": 1
},
"domain": {
"type": "string",
"maxLength": 256,
"description": "Capability domain (e.g. 'code-review', 'research', 'translation')"
},
"comment": {
"type": "string",
"maxLength": 1000
},
"subject": {
"type": "string",
"format": "did",
"description": "DID of the agent being attested"
},
"evidence": {
"type": "string",
"format": "at-uri",
"description": "AT-URI of the interaction this attestation is based on (e.g. a task.result)"
},
"createdAt": {
"type": "string",
"format": "datetime"
}
}
}
}