No description available.
Record Key
tid
Timestamp-based ID
Properties
a2aTaskId
string
Optional
Optional A2A Protocol task ID for bridging
maxLength: 512 bytescreatedAt
string
datetime
Required
An RFC 3339 formatted timestamp.
domain
string
Required
Capability domain (e.g. 'code-review', 'translation')
maxLength: 256 bytesoutcomeHash
string
Optional
SHA-256 hash of the task outcome, set on completion
maxLength: 128 bytespayloadHash
string
Optional
SHA-256 hash of the private task payload for verifiability
maxLength: 128 bytesprovider
string
did
Required
DID of the agent assigned to perform the task
status
string
Required
No description available.
Known values:
pending, accepted, in-progress, completed, failed, cancelledupdatedAt
string
datetime
Optional
An RFC 3339 formatted timestamp.
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"provider",
"domain",
"status",
"createdAt"
],
"properties": {
"domain": {
"type": "string",
"maxLength": 256,
"description": "Capability domain (e.g. 'code-review', 'translation')"
},
"status": {
"type": "string",
"knownValues": [
"pending",
"accepted",
"in-progress",
"completed",
"failed",
"cancelled"
]
},
"provider": {
"type": "string",
"format": "did",
"description": "DID of the agent assigned to perform the task"
},
"a2aTaskId": {
"type": "string",
"maxLength": 512,
"description": "Optional A2A Protocol task ID for bridging"
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"updatedAt": {
"type": "string",
"format": "datetime"
},
"outcomeHash": {
"type": "string",
"maxLength": 128,
"description": "SHA-256 hash of the task outcome, set on completion"
},
"payloadHash": {
"type": "string",
"maxLength": 128,
"description": "SHA-256 hash of the private task payload for verifiability"
}
}
}
}