Enterprise / Solution Architect
Table of contents
- What you do in ITIP
- Core workflows
- Using frameworks
- Example: Onboard a new application under regulatory governance
- Example: Map an existing EA landscape into ITIP
What you do in ITIP
You are the primary governance author. You define Structures, write Directives and Norms, compose framework stacks, and produce architecture deliverables — all from governed definitions.
ITIP replaces the disconnected toolchain (EA tool + Confluence + spreadsheets + manual audits) with a single governed workspace where every definition is versioned, lifecycle-managed, and machine-evaluable.
Core workflows
Define Structures
A Structure is any dynamic entity with causal behavior — an application, a service, a team, a platform component. In TOGAF terms: an Application Component.
- Navigate to Governance > Structures and create a new Structure.
- Copilot suggests applicable TOGAF archetypes (
PhysicalApplicationComponent,LogicalApplicationComponent) based on the description you provide. - Ascribe the Structure with its properties — purpose, data classification, owning team.
{
"purpose": "payment-gateway",
"dataClassification": "pci-restricted",
"owningTeam": "payments-team"
}
Every Structure starts in DRAFT and follows the Ascription lifecycle.
Author Directives
Directives express governance intent. You write them using the Directive grammar:
enterprise-architecture-board MUST ENSURE availability ON payment-gateway
enterprise-architecture-board MUST MINIMIZE latency ON payment-gateway
enterprise-architecture-board MUST ENSURE encryption ON cardholder-data-storage
Each Directive is owned by a governing Structure (the architecture board, a domain governor) and targets a governed Structure.
Author Norms (Copilot-assisted)
Each Directive is operationalized into one or more measurable Norms using the Norm grammar:
payment-gateway ON availability:
WHEN scope == "production"
ASSERT ServiceTelemetry.availability30d >= 0.999
(SUSTAINED: 30d window, threshold 0.999)
Copilot assists: given a natural-language NFR like “99.9% uptime over 30 days”, it suggests the CEL assertion and tolerance mode.
Compose framework stacks
Frameworks provide pre-built governance vocabulary. You compose them into layered stacks:
- Navigate to Presets > Compose Stack.
- Select layers: Geopolitical (EU), Regulatory (GDPR, NIS2), Industry (PCI-DSS), Cross-framework (ISO 27001).
- ITIP resolves cross-preset interactions and flags overlaps.
- Copilot proposes merged Norms where assertions are equivalent across frameworks.
The stack becomes the normative baseline for all Structures under your governance scope.
Produce architecture deliverables
All architecture deliverables are authored within ITIP from governed definitions:
- Architecture Decision Records — linked to the Directives and Norms that motivated them
- Solution design documents — generated from Structure topology, Mechanism details, and Interaction graphs
- Component specifications — authoritative framing for development teams
- Regulatory coverage maps — visual mapping of which preset frameworks cover which governance dimensions
Deliverables are published and served from ITIP. No manual export to Confluence required (though sync is available).
Using frameworks
TOGAF
TOGAF archetypes structure the definition vocabulary for enterprise architecture. When defining Structures:
| TOGAF concept | GSM mapping | What you author |
|---|---|---|
| Business Function | Structure (function: business) | Purpose, capabilities, owning org unit |
| Application Component | Structure (function: application) | API contracts, dependencies, quality requirements |
| Technology Component | Structure (function: technology) | Platform, infrastructure, deployment shape |
| Architecture Principle | Directive | Governance intent — MUST / SHOULD statements |
| Architecture Contract | Norm | Measurable constraints with tolerance modes |
Filter views by TOGAF domain (Business / Application / Data / Technology Architecture) to work in familiar terms.
ISO 25010 — Product Quality
Use ISO 25010 quality characteristics as the vocabulary for Norm assertions on software Structures:
- ProductReliability — availability, fault tolerance, recoverability
- ProductSecurity — confidentiality, integrity, non-repudiation
- PerformanceEfficiency — time behavior, capacity, resource utilization
- Maintainability — modularity, reusability, analyzability
Each characteristic is a sourced Archetype in ITIP. You reference these in Norm assertion fields to create quality-governed definitions.
ISO 25012 — Data Quality
For data-processing Structures, use ISO 25012 dimensions:
- DataAccuracy, DataCompleteness, DataConsistency — inherent quality
- DataAvailability, DataRecoverability — system-dependent quality
These apply when a Structure handles personal data, financial data, or other quality-sensitive datasets.
Example: Onboard a new application under regulatory governance
Context: A new Payment Gateway service processes personal data and handles card transactions. It must comply with GDPR, PCI-DSS, and NIS2.
- Define the Structure — create
payment-gatewaywith purpose and data classification. - Attach regulatory presets — select GDPR, PCI-DSS, NIS2 from the Normative catalog. Copilot proposes applicable Directives and Norms.
- Author tenant Directives — express governance intent specific to your organization.
- Author tenant Norms — operationalize each Directive into measurable constraints.
- Generate governance diagram — ITIP produces a topology diagram showing the Structure, its Mechanisms, and regulatory coverage.
- Submit for approval — transition to
PROPOSED→ governance review →APPROVED→ACTIVE.
Result: The Payment Gateway has a machine-evaluable compliance baseline before a single line of code is written.
Example: Map an existing EA landscape into ITIP
Context: 120+ applications documented in LeanIX/Mega/Ardoq need continuous governance.
- Bulk-import — use Import > Architecture Inventory (CSV/JSON). Each row maps to a Structure.
- Attach cross-framework presets — ISO 27001, SOC 2.
- Map existing NFRs — bind NFR statements to Norm assertions. Copilot assists with CEL translation.
- Filterable landscape view — group by TOGAF domain, overlay ISO 25010 quality, check ISO 25012 data quality coverage.
Result: The entire landscape is under continuous evaluation. Drift from ISO 27001 controls is detected automatically — not at the next annual audit.