No description available.
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
durationMs
integer
Optional
Wall-clock time spent on the task in milliseconds
evidenceHash
string
Optional
SHA-256 hash of the full result artifacts
maxLength: 128 bytesevidenceRef
string
at-uri
Optional
AT-URI pointing to a public artifact (e.g. a post or data embed)
outcome
string
Required
No description available.
Known values:
success, partial, failure, declinedrequest
string
at-uri
Required
AT-URI of the social.agent.task.request this fulfills
summary
string
Optional
Human-readable summary of what was accomplished
maxLength: 2560 bytesView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"request",
"outcome",
"createdAt"
],
"properties": {
"outcome": {
"type": "string",
"knownValues": [
"success",
"partial",
"failure",
"declined"
]
},
"request": {
"type": "string",
"format": "at-uri",
"description": "AT-URI of the social.agent.task.request this fulfills"
},
"summary": {
"type": "string",
"maxLength": 2560,
"description": "Human-readable summary of what was accomplished"
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"durationMs": {
"type": "integer",
"description": "Wall-clock time spent on the task in milliseconds"
},
"evidenceRef": {
"type": "string",
"format": "at-uri",
"description": "AT-URI pointing to a public artifact (e.g. a post or data embed)"
},
"evidenceHash": {
"type": "string",
"maxLength": 128,
"description": "SHA-256 hash of the full result artifacts"
}
}
}
}