Table of Contents | ||
---|---|---|
|
...
Triggers: Events, insights, or conditions that prompt a response. See: Triggers Trigger
Rationales: The reasoned justification for responding to a trigger. See Rationales Rationale
Responses: The aligned changes or activities, captured in other business architecture domains.
...
This section formalises the strategic response model as composable within the Orthogramic Metamodel. It outlines the attributes required to define a model, including associated triggers, organisational roles, information dependencies, and KPIs, supporting reuse and integration across governance and planning tools.
Attribute | Type | Description |
---|---|---|
| UUID | Unique strategic response model ID |
| Text | Human-readable name of the strategic response model |
| Text | Summary of the strategic response model’s purpose and scope |
| Link to | Source event or condition |
| List of | Strategy elements influenced |
| List of | Impacted capabilities |
| List of | Value streams engaged |
| List of | Units with strategic response model-specific roles |
| List of | Services required or affected |
| List of | Key information entities involved |
| List of | Applicable rules or regulations |
| List of | Stakeholders affected or involved |
| List of | Metrics used to assess strategic response model success |
| List of | Programs or projects implementing the response |
...
Strategic Response Model JSON Schema
{
"$schema": "httpSee: https://json-schemagithub.orgcom/draft-07/schema#", "title": "Strategic Response Model Schema",
"description": "Schema for representing strategic responses to triggers that affect business architecture domains.",
"type": "object",
"properties": {
"responseTitle": {
"type": "string",
"description": "The name or title of the Strategic Response"
},
"description": {
"type": "string",
"description": "A detailed explanation of the Strategic Response and its intent"
},
"triggerId": {
"type": "string",
"description": "Reference ID linking to the triggering event or driver"
},
"triggerType": {
"type": "string",
"description": "The category of trigger",
"enum": ["Regulatory", "Market", "Risk", "Performance Insight", "Stakeholder Demand", "Technology Shift", "Other"]
},
"rationale": {
"type": "object",
"description": "Structured rationale that justifies the Strategic Response",
"properties": {
"rationaleTitle": {
"type": "string",
"description": "A short name for the rationale"
},
"description": {
"type": "string",
"description": "A detailed explanation of the reasoning behind the response"
},
"driverType": {
"type": "string",
"description": "Category of driver for the rationale",
"enum": ["Regulatory", "Risk", "Market", "Insight", "Stakeholder", "Technology", "Compliance", "Other"]
},
"sourceDocument": {
"type": "string",
"description": "Document or source that prompted this rationale"
},
"relatedKPIs": {
"type": "array",
"description": "List of KPIs that this response intends to influence",
"items": {
"type": "string"
}
},
"priorityLevel": {
"type": "string",
"description": "Urgency or criticality of the rationale",
"enum": ["High", "Medium", "Low"]
}
},
"required": ["rationaleTitle", "description", "driverType"]
},
"affectedDomains": {
"type": "array",
"description": "Business architecture domains impacted by the response",
"items": {
"type": "string",
"enum": ["Strategy", "Capabilities", "Initiatives", "Policy", "Performance", "Services", "Information", "Value Stream"]
}
},
"impactedUnits": {
"type": "array",
"description": "Organisation units impacted by the response",
"items": {
"type": "object",
"properties": {
"orgUnitTitle": {
"type": "string",
"description": "Name of the impacted organisation unit"
},
"relationshipRole": {
"type": "string",
"description": "Role played by the unit in relation to this response",
"enum": [
"Owning",
"Providing",
"Utilising",
"Consuming",
"Dependent",
"Custodian",
"Governed by",
"Supported by"
]
},
"impactDescription": {
"type": "string",
"description": "Narrative of how the unit is affected"
}
},
"required": ["orgUnitTitle", "relationshipRole"]
}
},
"responseActions": {
"type": "array",
"description": "Actions taken or planned as part of the Strategic Response",
"items": {
"type": "string"
}
},
"expectedOutcomes": {
"type": "string",
"description": "Expected benefits or changes resulting from this response"
},
"performanceImplications": {
"type": "string",
"description": "How the response affects KPIs or performance tracking"
}
},
"required": ["responseTitle", "description", "triggerId", "triggerType", "rationale", "affectedDomains"]
}
Orthogramic/Orthogramic_Metamodel