Table of Contents | ||
---|---|---|
|
...
Structure of the artefact
Section | Description |
---|---|
Strategic response model trigger | A defined external or internal event. Example: Proposed national safety legislation for hazardous freight. |
Impacted strategic drivers | One or more strategic objectives tagged as relevant to the trigger. |
Key organisation units | Units tagged as responsible, dependent, or impacted based on capability and service roles. |
Affected capabilities | Filtered based on alignment with strategic objectives or dependency relationships. |
Service dependencies | Services required to respond to or deliver the desired outcome of the scenario. |
Value streams engaged | End-to-end business processes likely to be activated or altered. |
Information requirements | Information assets needed to inform decisions or satisfy compliance. |
Stakeholders | Primary stakeholders affected, mapped to expectations, engagement plans, or risks. |
Policies and compliance | Policies that apply or must be created/updated. |
Performance measures | KPIs that will demonstrate scenario readiness or success. |
Initiative/program links | Existing or proposed initiatives addressing the scenario. |
...
To support structured scenario development, the Orthogramic Metamodel offers a growing catalogue of predefined triggers. Each trigger can be used to initiate a scenario composite artefact and is tagged with relevant business architecture domains.
Trigger Category | Example Triggers |
Regulatory or compliance | New legislation, compliance audit mandate, data sovereignty changes |
Technological change | AI rollout, cybersecurity breach, platform deprecation |
Environmental & safety | Natural disaster preparedness, climate risk disclosures, workplace injury reform |
Operational transformation | Business process outsourcing, shared services implementation, lean redesign |
Strategic re-alignment | Mergers and acquisitions, board-level strategic pivot, budget realignment |
Customer & stakeholder | Community expectations shift, digital service demand surge, key account loss |
Workforce & skills | Critical skill shortage, union action, remote work policy adoption |
Performance response | KPI threshold breach, repeated incident occurrence, audit fail |
Political or social | Public inquiry, ministerial intervention, social licence erosion |
Innovation-led opportunity | Grant funding availability, pilot program success, ecosystem partnership offer |
Each scenario triggered using this catalogue links back to relevant Orthogramic Metamodel domains—such as capabilities, services, initiatives, and stakeholders—to produce a dynamic view of organisational readiness and response.
Definition of
...
strategicResponseModel
as a composable artefact
A canonical BusinessScenario
entity in the Orthogramic Metamodel with the following attributes:
...
{
"$schema": "http://json-schema.org/draft/2020-12/schema",
"$id": "https://orthogramic.org/schema/business-scenario.json",
"title": "BusinessScenariostrategicResponseModel",
"type": "object",
"required": ["id", "title", "trigger"],
"properties": {
"id": {
"type": "string",
"format": "uuid",
"description": "Unique identifier for the Strategic Response Model"
},
"title": {
"type": "string",
"description": "Short name for the scenario"
},
"description": {
"type": "string",
"description": "Narrative summary of the scenario strategicResponseModel purpose and context"
},
"trigger": {
"$ref": "https://orthogramic.org/schema/trigger.json",
"description": "Trigger event or condition linked to this scenariostrategicResponseModel"
},
"relatedDrivers": {
"type": "array",
"items": {
"type": "string",
"format": "uuid"
},
"description": "Strategic drivers impacted by the scenariostrategicResponseModel"
},
"affectedCapabilities": {
"type": "array",
"items": {
"type": "string",
"format": "uuid"
},
"description": "Capabilities involved or stressed by the scenariostrategicResponseModel"
},
"relatedValueStreams": {
"type": "array",
"items": {
"type": "string",
"format": "uuid"
},
"description": "Value streams that must operate under the scenariostrategicResponseModel"
},
"impactedUnits": {
"type": "array",
"items": {
"type": "object",
"required": ["unitId", "role"],
"properties": {
"unitId": {
"type": "string",
"format": "uuid"
},
"role": {
"type": "string",
"enum": [
"Owning unit",
"Utilising unit",
"Providing unit",
"Consuming unit",
"Custodian unit",
"Dependent unit",
"Supported unit"
]
}
}
},
"description": "Organisation units involved and their scenariosstrategicResponseModel-specific roles"
},
"servicesInScope": {
"type": "array",
"items": {
"type": "string",
"format": "uuid"
},
"description": "Services affected, needed, or transformed by the scenariostrategicResponseModel"
},
"dataDependencies": {
"type": "array",
"items": {
"type": "string",
"format": "uuid"
},
"description": "Information assets or datasets involved"
},
"policiesInScope": {
"type": "array",
"items": {
"type": "string",
"format": "uuid"
},
"description": "Policies that govern the scenario strategicResponseModel or require updating"
},
"stakeholders": {
"type": "array",
"items": {
"type": "string",
"format": "uuid"
},
"description": "Stakeholders directly impacted or involved"
},
"kpis": {
"type": "array",
"items": {
"type": "string",
"format": "uuid"
},
"description": "Performance metrics to track scenario strategicResponseModel success or readiness"
},
"linkedInitiatives": {
"type": "array",
"items": {
"type": "string",
"format": "uuid"
},
"description": "Projects or programs that respond to the scenariostrategicResponseModel"
}
}
}
Definition of
...
trigger
as a new open entity
Introducing a standalone Trigger
domain in the Orthogramic Metamodel with:
...
{
"$schema": "http://json-schema.org/draft/2020-12/schema",
"$id": "https://orthogramic.org/schema/trigger.json",
"title": "Triggertrigger",
"type": "object",
"required": ["id", "label", "category"],
"properties": {
"id": {
"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"
},
"exampleScenarios": {
"type": "array",
"items": {
"type": "string",
"format": "uuid"
},
"description": "Optional references to related BusinessScenario strategicResponseModel artefacts"
}
}
}