...
See Examples of Trigger and Rationale links for reference cases.
Trigger JSON Schema
{
"$schema": "http://json-schema.org/draft/2020-12/schema",
"$id": "See: https://orthogramicgithub.orgcom/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"
}
}
}
Orthogramic/Orthogramic_Metamodel