...
triggerID
: Unique identifiertitle
: Human-readable labeldescription
: Detailed summarytriggerType
: From the Trigger CataloguedateDetected
: Date the trigger was recognised
Linking to Rationales
Triggers can lead to multiple Rationales. Each Rationale references the originating trigger and justifies a different response path. This many-to-one structure allows a single trigger to influence several domains.
See Examples of Trigger and Rationale links for reference cases.
Trigger JSON Schema
{
"$schema": "http://json-schema.org/draft/2020-12/schema",
"$id": "https://orthogramic.org/schema/trigger.json",
"title": "trigger",
"type": "object",
"required": ["triggerID", "label", "category"],
"properties": {
"triggerID": {
"type": "string",
"format": "uuid",
"description": "Unique identifier for the trigger"
},
"label": {
"type": "string",
"description": "Short, human-readable name of the trigger"
},
"category": {
"type": "string",
"enum": [
"Regulatory or compliance",
"Technological change",
"Environmental & safety",
"Operational transformation",
"Strategic re-alignment",
"Customer & stakeholder",
"Workforce & skills",
"Performance response",
"Political or social",
"Innovation-led opportunity"
],
"description": "Classification of trigger context"
},
"description": {
"type": "string",
"description": "Expanded explanation of the trigger’s relevance"
},
"examplestrategicResponseModels": {
"type": "array",
"items": {
"type": "string",
"format": "uuid"
},
"description": "Optional references to related strategicResponseModel artefacts"
}
}
}