Deliverable Templates
https://meta.linked.archi/togaf/deliverable-templates#
The Architecture Vision provides a high-level, aspirational view of the end architecture product. Created during ADM Phase A, it describes the problem being addressed, the stakeholders, their concerns, and the proposed solution concept. Aligned with TOGAF Architecture Vision deliverable.
templates/architecture-vision.md.hbs
PREFIX togaf: <https://meta.linked.archi/togaf/onto#>
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
SELECT ?element ?label ?type ?description ?concern WHERE {
?element a ?type ; skos:prefLabel ?label .
VALUES ?type { togaf:Actor togaf:Organization togaf:Role }
OPTIONAL { ?element skos:definition ?description }
OPTIONAL {
?element togaf:tracks ?g .
?g skos:prefLabel ?concern .
FILTER(lang(?concern) = "en")
}
FILTER(lang(?label) = "en")
} ORDER BY ?type ?label
PREFIX togaf: <https://meta.linked.archi/togaf/onto#>
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
SELECT ?element ?label ?description ?supports WHERE {
?element a togaf:BusinessFunction ; skos:prefLabel ?label .
OPTIONAL { ?element skos:definition ?description }
OPTIONAL {
?element togaf:supports ?svc .
?svc skos:prefLabel ?supports .
FILTER(lang(?supports) = "en")
}
FILTER(lang(?label) = "en")
} ORDER BY ?label
PREFIX togaf: <https://meta.linked.archi/togaf/onto#>
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
SELECT ?element ?label ?type ?description WHERE {
?element a ?type ; skos:prefLabel ?label .
VALUES ?type {
togaf:LogicalApplicationComponent togaf:LogicalTechnologyComponent
togaf:BusinessService togaf:Platform togaf:Vision
}
OPTIONAL { ?element skos:definition ?description }
FILTER(lang(?label) = "en")
} ORDER BY ?type ?label
---
title: "Architecture Vision"
date: "{{meta.date}}"
author: "{{meta.author}}"
status: "{{meta.status}}"
version: "{{meta.version}}"
---
# Architecture Vision
{{#if meta.description}}
> {{meta.description}}
{{/if}}
| Property | Value |
|----------|-------|
| Date | {{meta.date}} |
| Author | {{meta.author}} |
| Status | {{meta.status}} |
| Version | {{meta.version}} |
| Metamodel | TOGAF |
---
## 1. Stakeholder Map
Stakeholders, their concerns, and engagement approach.
{{#if views.stakeholderMap.diagram}}

{{/if}}
| Stakeholder | Type | Description | Concern |
|-------------|------|-------------|---------|
{{#each stakeholders}}
| {{this.label}} | {{this.type}} | {{this.description}} | {{this.concern}} |
{{/each}}
---
## 2. Value Chain
Key business functions and their contribution to value creation.
{{#if views.valueChain.diagram}}

{{/if}}
| Business Function | Description | Supports |
|-------------------|-------------|----------|
{{#each valueChain}}
| {{this.label}} | {{this.description}} | {{this.supports}} |
{{/each}}
---
## 3. Solution Concept
High-level overview of the proposed solution.
{{#if views.solutionConcept.diagram}}

{{/if}}
| Element | Type | Description |
|---------|------|-------------|
{{#each solutionConcept}}
| {{this.label}} | {{this.type}} | {{this.description}} |
{{/each}}
The primary TOGAF deliverable spanning Phases B through D. Documents the baseline and target architectures across business, data, application, and technology domains. Includes gap analysis and architecture requirements.
PREFIX togaf: <https://meta.linked.archi/togaf/onto#>
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
SELECT ?element ?label ?type ?description WHERE {
?element a ?type ; skos:prefLabel ?label .
VALUES ?type {
togaf:Organization togaf:Actor togaf:Role
togaf:BusinessService togaf:BusinessFunction togaf:BusinessProcess
togaf:BusinessEvent togaf:Product togaf:Location
}
OPTIONAL { ?element skos:definition ?description }
FILTER(lang(?label) = "en")
} ORDER BY ?type ?label
PREFIX togaf: <https://meta.linked.archi/togaf/onto#>
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
SELECT ?element ?label ?type ?description ?accesses WHERE {
?element a ?type ; skos:prefLabel ?label .
VALUES ?type { togaf:DataEntity togaf:LogicalDataComponent togaf:PhysicalDataComponent }
OPTIONAL { ?element skos:definition ?description }
OPTIONAL {
?proc togaf:accesses ?element .
?proc skos:prefLabel ?accesses .
FILTER(lang(?accesses) = "en")
}
FILTER(lang(?label) = "en")
} ORDER BY ?type ?label
PREFIX togaf: <https://meta.linked.archi/togaf/onto#>
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
SELECT ?element ?label ?type ?description ?supports WHERE {
?element a ?type ; skos:prefLabel ?label .
VALUES ?type {
togaf:LogicalApplicationComponent togaf:PhysicalApplicationComponent
togaf:InformationSystemService togaf:ApplicationInterface
}
OPTIONAL { ?element skos:definition ?description }
OPTIONAL {
?element togaf:supports ?svc .
?svc skos:prefLabel ?supports .
FILTER(lang(?supports) = "en")
}
FILTER(lang(?label) = "en")
} ORDER BY ?type ?label
PREFIX togaf: <https://meta.linked.archi/togaf/onto#>
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
SELECT ?element ?label ?type ?description ?supports WHERE {
?element a ?type ; skos:prefLabel ?label .
VALUES ?type {
togaf:LogicalTechnologyComponent togaf:PhysicalTechnologyComponent
togaf:TechnologyService togaf:TechnologyInterface togaf:Platform
}
OPTIONAL { ?element skos:definition ?description }
OPTIONAL {
?element togaf:supports ?app .
?app skos:prefLabel ?supports .
FILTER(lang(?supports) = "en")
}
FILTER(lang(?label) = "en")
} ORDER BY ?type ?label
PREFIX togaf: <https://meta.linked.archi/togaf/onto#>
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
SELECT ?element ?label ?description ?migratesFrom ?migratesTo WHERE {
?element a togaf:Gap ; skos:prefLabel ?label .
OPTIONAL { ?element skos:definition ?description }
OPTIONAL {
?element togaf:migratesFrom ?from .
?from skos:prefLabel ?migratesFrom .
FILTER(lang(?migratesFrom) = "en")
}
OPTIONAL {
?element togaf:migratesTo ?to .
?to skos:prefLabel ?migratesTo .
FILTER(lang(?migratesTo) = "en")
}
FILTER(lang(?label) = "en")
} ORDER BY ?label
---
title: "Architecture Definition Document"
date: "{{meta.date}}"
author: "{{meta.author}}"
status: "{{meta.status}}"
version: "{{meta.version}}"
---
# Architecture Definition Document
{{#if meta.description}}
> {{meta.description}}
{{/if}}
| Property | Value |
|----------|-------|
| Date | {{meta.date}} |
| Author | {{meta.author}} |
| Status | {{meta.status}} |
| Version | {{meta.version}} |
| Metamodel | TOGAF |
---
## 1. Business Architecture
Organizations, actors, roles, services, functions, processes.
{{#if views.businessArchitecture.diagram}}

{{/if}}
| Element | Type | Description |
|---------|------|-------------|
{{#each businessArchitecture}}
| {{this.label}} | {{this.type}} | {{this.description}} |
{{/each}}
---
## 2. Data Architecture
Data entities, logical and physical data components.
{{#if views.dataArchitecture.diagram}}

{{/if}}
| Element | Type | Description | Accessed By |
|---------|------|-------------|-------------|
{{#each dataArchitecture}}
| {{this.label}} | {{this.type}} | {{this.description}} | {{this.accesses}} |
{{/each}}
---
## 3. Application Architecture
Logical and physical application components, services, interfaces.
{{#if views.applicationArchitecture.diagram}}

{{/if}}
| Element | Type | Description | Supports |
|---------|------|-------------|----------|
{{#each applicationArchitecture}}
| {{this.label}} | {{this.type}} | {{this.description}} | {{this.supports}} |
{{/each}}
---
## 4. Technology Architecture
Logical and physical technology components, services, platforms.
{{#if views.technologyArchitecture.diagram}}

{{/if}}
| Element | Type | Description | Supports |
|---------|------|-------------|----------|
{{#each technologyArchitecture}}
| {{this.label}} | {{this.type}} | {{this.description}} | {{this.supports}} |
{{/each}}
---
## 5. Gap Analysis
Gaps between baseline and target architectures.
{{#if views.gapAnalysis.diagram}}

{{/if}}
| Gap | Description | Migrates From | Migrates To |
|-----|-------------|---------------|-------------|
{{#each gapAnalysis}}
| {{this.label}} | {{this.description}} | {{this.migratesFrom}} | {{this.migratesTo}} |
{{/each}}
Documents the architecture requirements, constraints, and assumptions that must be addressed. Produced alongside the Architecture Definition Document during Phases B through D.
PREFIX togaf: <https://meta.linked.archi/togaf/onto#>
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
SELECT ?element ?label ?type ?description WHERE {
?element a ?type ; skos:prefLabel ?label .
VALUES ?type { togaf:Driver togaf:Goal togaf:Objective togaf:Measure }
OPTIONAL { ?element skos:definition ?description }
FILTER(lang(?label) = "en")
} ORDER BY ?type ?label
PREFIX togaf: <https://meta.linked.archi/togaf/onto#>
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
SELECT ?element ?label ?description WHERE {
?element a togaf:Principle ; skos:prefLabel ?label .
OPTIONAL { ?element skos:definition ?description }
FILTER(lang(?label) = "en")
} ORDER BY ?label
PREFIX togaf: <https://meta.linked.archi/togaf/onto#>
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
SELECT ?element ?label ?type ?description ?governs WHERE {
?element a ?type ; skos:prefLabel ?label .
VALUES ?type { togaf:Requirement togaf:Constraint togaf:Assumption }
OPTIONAL { ?element skos:definition ?description }
OPTIONAL {
?element togaf:governs ?target .
?target skos:prefLabel ?governs .
FILTER(lang(?governs) = "en")
}
FILTER(lang(?label) = "en")
} ORDER BY ?type ?label
---
title: "Architecture Requirements Specification"
date: "{{meta.date}}"
author: "{{meta.author}}"
status: "{{meta.status}}"
version: "{{meta.version}}"
---
# Architecture Requirements Specification
{{#if meta.description}}
> {{meta.description}}
{{/if}}
| Property | Value |
|----------|-------|
| Date | {{meta.date}} |
| Author | {{meta.author}} |
| Status | {{meta.status}} |
| Version | {{meta.version}} |
| Metamodel | TOGAF |
---
## 1. Drivers, Goals & Objectives
Business drivers, goals, and measurable objectives.
{{#if views.driversGoals.diagram}}

{{/if}}
| Element | Type | Description |
|---------|------|-------------|
{{#each driversGoals}}
| {{this.label}} | {{this.type}} | {{this.description}} |
{{/each}}
---
## 2. Architecture Principles
Principles governing the architecture.
{{#if views.principles.diagram}}

{{/if}}
| Principle | Description |
|-----------|-------------|
{{#each principles}}
| {{this.label}} | {{this.description}} |
{{/each}}
---
## 3. Requirements & Constraints
Architecture requirements, constraints, and assumptions.
{{#if views.requirements.diagram}}

{{/if}}
| Requirement | Type | Description | Governs |
|-------------|------|-------------|---------|
{{#each requirements}}
| {{this.label}} | {{this.type}} | {{this.description}} | {{this.governs}} |
{{/each}}
The Architecture Roadmap lists work packages, transition architectures, and the implementation schedule. Produced during Phases E and F.
templates/architecture-roadmap.md.hbs
PREFIX togaf: <https://meta.linked.archi/togaf/onto#>
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
SELECT ?element ?label ?description ?dependsOn WHERE {
?element a togaf:WorkPackage ; skos:prefLabel ?label .
OPTIONAL { ?element skos:definition ?description }
OPTIONAL {
?element togaf:dependsOn ?dep .
?dep skos:prefLabel ?dependsOn .
FILTER(lang(?dependsOn) = "en")
}
FILTER(lang(?label) = "en")
} ORDER BY ?label
PREFIX togaf: <https://meta.linked.archi/togaf/onto#>
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
SELECT ?element ?label ?description ?migratesFrom ?migratesTo WHERE {
?element a togaf:Plateau ; skos:prefLabel ?label .
OPTIONAL { ?element skos:definition ?description }
OPTIONAL {
?element togaf:migratesFrom ?from .
?from skos:prefLabel ?migratesFrom .
FILTER(lang(?migratesFrom) = "en")
}
OPTIONAL {
?element togaf:migratesTo ?to .
?to skos:prefLabel ?migratesTo .
FILTER(lang(?migratesTo) = "en")
}
FILTER(lang(?label) = "en")
} ORDER BY ?label
PREFIX togaf: <https://meta.linked.archi/togaf/onto#>
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
SELECT ?element ?label ?description ?realizedBy WHERE {
?element a togaf:Capability ; skos:prefLabel ?label .
OPTIONAL { ?element skos:definition ?description }
OPTIONAL {
?wp togaf:realizes ?element .
?wp skos:prefLabel ?realizedBy .
FILTER(lang(?realizedBy) = "en")
}
FILTER(lang(?label) = "en")
} ORDER BY ?label
---
title: "Architecture Roadmap"
date: "{{meta.date}}"
author: "{{meta.author}}"
status: "{{meta.status}}"
version: "{{meta.version}}"
---
# Architecture Roadmap
{{#if meta.description}}
> {{meta.description}}
{{/if}}
| Property | Value |
|----------|-------|
| Date | {{meta.date}} |
| Author | {{meta.author}} |
| Status | {{meta.status}} |
| Version | {{meta.version}} |
| Metamodel | TOGAF |
---
## 1. Work Packages
Implementation work packages and their dependencies.
{{#if views.workPackages.diagram}}

{{/if}}
| Work Package | Description | Depends On |
|--------------|-------------|------------|
{{#each workPackages}}
| {{this.label}} | {{this.description}} | {{this.dependsOn}} |
{{/each}}
---
## 2. Transition Architectures
Plateaus representing intermediate target states.
{{#if views.transitionArchitectures.diagram}}

{{/if}}
| Plateau | Description | Migrates From | Migrates To |
|---------|-------------|---------------|-------------|
{{#each transitionArchitectures}}
| {{this.label}} | {{this.description}} | {{this.migratesFrom}} | {{this.migratesTo}} |
{{/each}}
---
## 3. Capability Assessment
Capabilities required and their realization through work packages.
{{#if views.capabilities.diagram}}

{{/if}}
| Capability | Description | Realized By |
|------------|-------------|-------------|
{{#each capabilities}}
| {{this.label}} | {{this.description}} | {{this.realizedBy}} |
{{/each}}
Documents the governance framework for architecture implementation. Covers deliverables tracking, compliance reviews, and change management. Produced during Phase G.
PREFIX togaf: <https://meta.linked.archi/togaf/onto#>
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
SELECT ?element ?label ?description ?workPackage WHERE {
?element a togaf:Deliverable ; skos:prefLabel ?label .
OPTIONAL { ?element skos:definition ?description }
OPTIONAL {
?wp togaf:contains ?element .
?wp a togaf:WorkPackage .
?wp skos:prefLabel ?workPackage .
FILTER(lang(?workPackage) = "en")
}
FILTER(lang(?label) = "en")
} ORDER BY ?label
PREFIX togaf: <https://meta.linked.archi/togaf/onto#>
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
SELECT ?element ?label ?type ?description ?tracks WHERE {
?element a ?type ; skos:prefLabel ?label .
VALUES ?type { togaf:Contract togaf:Measure }
OPTIONAL { ?element skos:definition ?description }
OPTIONAL {
?element togaf:tracks ?target .
?target skos:prefLabel ?tracks .
FILTER(lang(?tracks) = "en")
}
FILTER(lang(?label) = "en")
} ORDER BY ?type ?label
---
title: "Implementation Governance Model"
date: "{{meta.date}}"
author: "{{meta.author}}"
status: "{{meta.status}}"
version: "{{meta.version}}"
---
# Implementation Governance Model
{{#if meta.description}}
> {{meta.description}}
{{/if}}
| Property | Value |
|----------|-------|
| Date | {{meta.date}} |
| Author | {{meta.author}} |
| Status | {{meta.status}} |
| Version | {{meta.version}} |
| Metamodel | TOGAF |
---
## 1. Deliverables & Compliance
Architecture deliverables and their compliance status.
{{#if views.deliverables.diagram}}

{{/if}}
| Deliverable | Description | Work Package |
|-------------|-------------|--------------|
{{#each deliverables}}
| {{this.label}} | {{this.description}} | {{this.workPackage}} |
{{/each}}
---
## 2. Contracts & Measures
Service contracts and performance measures.
{{#if views.contractsMeasures.diagram}}

{{/if}}
| Element | Type | Description | Tracks |
|---------|------|-------------|--------|
{{#each contractsMeasures}}
| {{this.label}} | {{this.type}} | {{this.description}} | {{this.tracks}} |
{{/each}}