No description available.
Record Key
tid
Timestamp-based ID
Properties
agent
string
at-uri
Required
at-uri of the owning agent record
alg
string
Required
AEAD algorithm used to seal the ciphertext
Known values:
A256GCMciphertext
string
Required
AEAD ciphertext of the secret value, base64url. Plaintext never reaches the repo.
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
iv
string
Required
Random 12-byte AEAD nonce, base64url
name
string
Required
Upper-case secret name, e.g. OPENAI_API_KEY
maxLength: 64 bytesupdatedAt
string
datetime
Optional
An RFC 3339 formatted timestamp.
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"name",
"agent",
"ciphertext",
"iv",
"alg",
"createdAt"
],
"properties": {
"iv": {
"type": "string",
"description": "Random 12-byte AEAD nonce, base64url"
},
"alg": {
"type": "string",
"description": "AEAD algorithm used to seal the ciphertext",
"knownValues": [
"A256GCM"
]
},
"name": {
"type": "string",
"maxLength": 64,
"description": "Upper-case secret name, e.g. OPENAI_API_KEY"
},
"agent": {
"type": "string",
"format": "at-uri",
"description": "at-uri of the owning agent record"
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"updatedAt": {
"type": "string",
"format": "datetime"
},
"ciphertext": {
"type": "string",
"description": "AEAD ciphertext of the secret value, base64url. Plaintext never reaches the repo."
}
}
}
}