Public discovery card for a Rizom brain. The operational A2A Agent Card is conventionally served at /.well-known/agent-card.json under siteUrl.
literal:self
Fixed literal value
Properties
anchor
ref
#anchor
Required
Minimal Anchor snapshot for discovery grouping and display.
brain
ref
#brain
Required
Brain identity described by this discovery card.
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
model
string
Required
Rizom brain model identifier.
siteUrl
string
uri
Required
Public site URL. Consumers derive the A2A Agent Card URL from this base.
skills
array
of
ref
#skill
Required
User-facing skills this brain advertises for discovery.
maxLength: 100 itemsupdatedAt
string
datetime
Optional
An RFC 3339 formatted timestamp.
version
string
Required
Brain runtime/model implementation version.
View raw schema
{
"key": "literal:self",
"type": "record",
"record": {
"type": "object",
"required": [
"siteUrl",
"brain",
"anchor",
"skills",
"model",
"version",
"createdAt"
],
"properties": {
"brain": {
"ref": "#brain",
"type": "ref",
"description": "Brain identity described by this discovery card."
},
"model": {
"type": "string",
"description": "Rizom brain model identifier."
},
"anchor": {
"ref": "#anchor",
"type": "ref",
"description": "Minimal Anchor snapshot for discovery grouping and display."
},
"skills": {
"type": "array",
"items": {
"ref": "#skill",
"type": "ref"
},
"maxLength": 100,
"description": "User-facing skills this brain advertises for discovery."
},
"siteUrl": {
"type": "string",
"format": "uri",
"description": "Public site URL. Consumers derive the A2A Agent Card URL from this base."
},
"version": {
"type": "string",
"description": "Brain runtime/model implementation version."
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"updatedAt": {
"type": "string",
"format": "datetime"
}
}
},
"description": "Public discovery card for a Rizom brain. The operational A2A Agent Card is conventionally served at /.well-known/agent-card.json under siteUrl."
}