Table of Contents | ||
---|---|---|
|
Triggers
Triggers initiate the Strategic Response Model by representing a change in context, observation, or external condition that warrants attention. Each Trigger may lead to one or more Rationales, each providing a specific justification for change. Triggers ensure that organisational decisions are not made in a vacuum, but are grounded in evidence or obligation.See: Strategic Response Model
...
Trigger is a supporting artifact, not a domain.
It is only relevant in the context of a
strategicResponseModel
.
Trigger Catalogue
Triggers are classified using the Trigger Catalogue, which defines accepted types of triggers.
...
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"
}
}
}