Agent acknowledgment record for a processed job.
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
Timestamp when the acknowledgment was created.
note
string
Optional
Additional context or details for the acknowledgment.
subjectUri
string
uri
Optional
URI of the content being processed by the agent.
workType
string
Required
Job type identifier being acknowledged by the agent.
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"workType",
"createdAt"
],
"properties": {
"note": {
"type": "string",
"description": "Additional context or details for the acknowledgment."
},
"workType": {
"type": "string",
"required": true,
"description": "Job type identifier being acknowledged by the agent."
},
"createdAt": {
"type": "string",
"format": "datetime",
"required": true,
"description": "Timestamp when the acknowledgment was created."
},
"subjectUri": {
"type": "string",
"format": "uri",
"description": "URI of the content being processed by the agent."
}
}
},
"description": "Agent acknowledgment record for a processed job."
}