Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Table of Contents
stylenone

...

  • 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

id

UUID

Unique strategic response model ID

responseTitle

Text

Human-readable name of the strategic response model

description

Text

Summary of the strategic response model’s purpose and scope

triggerID

Link to Trigger entity

Source event or condition

relatedDrivers

List of StrategyDriver

Strategy elements influenced

affectedCapabilities

List of Capability

Impacted capabilities

relatedValueStreams

List of ValueStream

Value streams engaged

impactedUnits

List of OrganisationUnit

Units with strategic response model-specific roles

servicesInScope

List of Service

Services required or affected

dataDependencies

List of InformationAsset

Key information entities involved

policiesInScope

List of Policy

Applicable rules or regulations

stakeholders

List of Stakeholder

Stakeholders affected or involved

kpis

List of PerformanceMetric

Metrics used to assess strategic response model success

linkedInitiatives

List of Initiative

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