Linked.Archi

Deliverable Templates

Deliverable Templates

https://meta.linked.archi/togaf/deliverable-templates#

Architecture Vision

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.

Template: templates/architecture-vision.md.hbs
Required Viewpoints: StakeholderMapMatrix SolutionConceptDiagram ValueChainDiagram
Target Purposes: Informing, Deciding
Available Formats: MarkdownFormat, HTMLFormat, PDFFormat

Sections

1 1. Stakeholder Map
Stakeholders, their concerns, and engagement approach.
Viewpoint: StakeholderMapMatrix Result key: stakeholders
SPARQL Query
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
2 2. Value Chain
Key business functions and their contribution to value creation.
Viewpoint: ValueChainDiagram Result key: valueChain
SPARQL Query
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
3 3. Solution Concept
High-level overview of the proposed solution.
Viewpoint: SolutionConceptDiagram Result key: solutionConcept
SPARQL Query
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
📄 Template Preview
---
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}}
![Stakeholder Map]({{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}}
![Value Chain Diagram]({{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}}
![Solution Concept Diagram]({{views.solutionConcept.diagram}})
{{/if}}

| Element | Type | Description |
|---------|------|-------------|
{{#each solutionConcept}}
| {{this.label}} | {{this.type}} | {{this.description}} |
{{/each}}

Architecture Definition Document

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.

Template: templates/architecture-definition-document.md.hbs
Required Viewpoints: OrganizationActorCatalog BusinessServiceFunctionCatalog DataEntityComponentCatalog ApplicationPortfolioCatalog TechnologyPortfolioCatalog
Target Purposes: Designing
Available Formats: MarkdownFormat, HTMLFormat, PDFFormat

Sections

1 1. Business Architecture
Organizations, actors, roles, services, functions, processes.
Viewpoint: OrganizationActorCatalog Result key: businessArchitecture
SPARQL Query
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
2 2. Data Architecture
Data entities, logical and physical data components.
Viewpoint: DataEntityComponentCatalog Result key: dataArchitecture
SPARQL Query
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
3 3. Application Architecture
Logical and physical application components, services, interfaces.
Viewpoint: ApplicationPortfolioCatalog Result key: applicationArchitecture
SPARQL Query
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
4 4. Technology Architecture
Logical and physical technology components, services, platforms.
Viewpoint: TechnologyPortfolioCatalog Result key: technologyArchitecture
SPARQL Query
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
5 5. Gap Analysis
Gaps between baseline and target architectures.
Viewpoint: PrinciplesCatalog Result key: gapAnalysis
SPARQL Query
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
📄 Template Preview
---
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}}
![Business Architecture]({{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}}
![Data Architecture]({{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}}
![Application Architecture]({{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}}
![Technology Architecture]({{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}}
![Gap Analysis]({{views.gapAnalysis.diagram}})
{{/if}}

| Gap | Description | Migrates From | Migrates To |
|-----|-------------|---------------|-------------|
{{#each gapAnalysis}}
| {{this.label}} | {{this.description}} | {{this.migratesFrom}} | {{this.migratesTo}} |
{{/each}}

Architecture Requirements Specification

Documents the architecture requirements, constraints, and assumptions that must be addressed. Produced alongside the Architecture Definition Document during Phases B through D.

Template: templates/architecture-requirements-spec.md.hbs
Required Viewpoints: DriverGoalObjectiveCatalog PrinciplesCatalog
Target Purposes: Deciding
Available Formats: MarkdownFormat, PDFFormat

Sections

1 1. Drivers, Goals & Objectives
Business drivers, goals, and measurable objectives.
Viewpoint: DriverGoalObjectiveCatalog Result key: driversGoals
SPARQL Query
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
2 2. Architecture Principles
Principles governing the architecture.
Viewpoint: PrinciplesCatalog Result key: principles
SPARQL Query
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
3 3. Requirements & Constraints
Architecture requirements, constraints, and assumptions.
Viewpoint: PrinciplesCatalog Result key: requirements
SPARQL Query
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
📄 Template Preview
---
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}}
![Drivers, Goals & Objectives]({{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}}
![Architecture Principles]({{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}}
![Requirements & Constraints]({{views.requirements.diagram}})
{{/if}}

| Requirement | Type | Description | Governs |
|-------------|------|-------------|---------|
{{#each requirements}}
| {{this.label}} | {{this.type}} | {{this.description}} | {{this.governs}} |
{{/each}}

Architecture Roadmap

The Architecture Roadmap lists work packages, transition architectures, and the implementation schedule. Produced during Phases E and F.

Template: templates/architecture-roadmap.md.hbs
Required Viewpoints: ProjectContextDiagram BenefitsDiagram
Target Purposes: Deciding, Governing
Available Formats: MarkdownFormat, PDFFormat

Sections

1 1. Work Packages
Implementation work packages and their dependencies.
Viewpoint: ProjectContextDiagram Result key: workPackages
SPARQL Query
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
2 2. Transition Architectures
Plateaus representing intermediate target states.
Viewpoint: ProjectContextDiagram Result key: transitionArchitectures
SPARQL Query
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
3 3. Capability Assessment
Capabilities required and their realization through work packages.
Viewpoint: BenefitsDiagram Result key: capabilities
SPARQL Query
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
📄 Template Preview
---
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}}
![Work Packages]({{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}}
![Transition Architectures]({{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}}
![Capability Assessment]({{views.capabilities.diagram}})
{{/if}}

| Capability | Description | Realized By |
|------------|-------------|-------------|
{{#each capabilities}}
| {{this.label}} | {{this.description}} | {{this.realizedBy}} |
{{/each}}

Implementation Governance Model

Documents the governance framework for architecture implementation. Covers deliverables tracking, compliance reviews, and change management. Produced during Phase G.

Template: templates/implementation-governance-model.md.hbs
Required Viewpoints: PrinciplesCatalog ContractMeasureCatalog
Target Purposes: Governing
Available Formats: MarkdownFormat, PDFFormat

Sections

1 1. Deliverables & Compliance
Architecture deliverables and their compliance status.
Viewpoint: PrinciplesCatalog Result key: deliverables
SPARQL Query
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
2 2. Contracts & Measures
Service contracts and performance measures.
Viewpoint: ContractMeasureCatalog Result key: contractsMeasures
SPARQL Query
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
📄 Template Preview
---
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}}
![Deliverables & Compliance]({{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}}
![Contracts & Measures]({{views.contractsMeasures.diagram}})
{{/if}}

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