Prompt governance and runtime flow
This example shows how a governed prompt is assembled from Brando graph components at runtime.
Flow
- Resolve the active
brando:Promptfor the application and touchpoint. - Load inherited brand, context, and policy nodes.
- Merge verbal, visual, or audio tokens that apply to the requested modality.
- Bind runtime variables such as locale, product, campaign, and audience.
- Validate required policies before sending instructions to the model.
- Validate the generated output against mandatory and advisory policies.
Minimal graph
{
"@context": {
"schema": "https://schema.org/",
"brando": "https://brandoschema.com/"
},
"@graph": [
{
"@id": "https://example.com/prompts/social-text-en-gb",
"@type": "brando:Prompt",
"schema:name": "Social post prompt EN-GB"
},
{
"@id": "https://example.com/touchpoints/social-caption",
"@type": "brando:BrandTouchpoint",
"schema:name": "Social caption"
}
]
}