Mentionable v1 JSON-LD context
This URL is the namespace IRI prefix for the Mentionable v1 vocabulary used in
A2A Agent Card projections. Term IRIs are formed by appending
#<term>.
Terms
-
defaultAgent—https://mentionable.dev/ns/v1#defaultAgent
Handle of the agent that receives messages without a routable mention. String, must appear in the host agents[] list. -
agents—https://mentionable.dev/ns/v1#agents
Array of public agents on the host. Each entry carries handle (required), name (required), and card_url (recommended). -
routerType—https://mentionable.dev/ns/v1#routerType
Hub routing strategy. v1 default: "logic" (first-wins). Reserved future value: "llm". -
protocols—https://mentionable.dev/ns/v1#protocols
Optional list of additional protocol-level capability hints declared by the hub or agent. -
webfinger—https://mentionable.dev/ns/v1#webfinger
Identifier for the host's WebFinger resource (acct: URI or equivalent).
JSON-LD context document
A JSON-LD processor that dereferences this URL receives the following context. The
@context block is also embedded as a hidden application/ld+json
script tag so machine consumers can fetch the HTML view and still extract a usable context.
{
"@context": {
"@version": 1.1,
"mentionable": "https://mentionable.dev/ns/v1#",
"defaultAgent": {
"@id": "https://mentionable.dev/ns/v1#defaultAgent",
"@type": "http://www.w3.org/2001/XMLSchema#string"
},
"agents": {
"@id": "https://mentionable.dev/ns/v1#agents",
"@container": "@list"
},
"routerType": {
"@id": "https://mentionable.dev/ns/v1#routerType",
"@type": "http://www.w3.org/2001/XMLSchema#string"
},
"protocols": {
"@id": "https://mentionable.dev/ns/v1#protocols",
"@container": "@list"
},
"webfinger": {
"@id": "https://mentionable.dev/ns/v1#webfinger",
"@type": "@id"
}
}
}