Model routing and governance flow
This example shows how a Brand OS can route an AI request through Brando governance before generation.
Flow
- Resolve the active
brando:Brand. - Resolve the current
brando:BrandApplicationandbrando:BrandTouchpoint. - Load relevant
brando:Contextnodes for market, audience, channel, and journey stage. - Select an eligible
brando:BrandModel. - Attach required
brando:Prompttemplates andbrando:Policynodes. - Run pre-flight validation before model execution.
- Run post-generation validation before publishing or returning output.
Minimal graph
{
"@context": {
"schema": "https://schema.org/",
"brando": "https://brandoschema.com/"
},
"@graph": [
{
"@id": "https://example.com/brand/northstar",
"@type": "brando:Brand",
"schema:name": "Northstar"
},
{
"@id": "https://example.com/applications/social-campaign",
"@type": "brando:BrandApplication",
"schema:name": "Social Campaign Production"
},
{
"@id": "https://example.com/models/social-text-image",
"@type": "brando:BrandModel",
"schema:name": "Social text and image model profile"
}
]
}