Skip to main content

goal

ArchiMate 3.2 Equivalent: Goal (Motivation Aspect)

Represents a strategic business objective, mission outcome, transformation target, or architectural vision.

Visual Styling

To apply custom icons, borders, or CSS styles to goals, use a Style Rule (e.g. style goal where priority == "Critical" { icon "target" }).


Syntax

goal <id> "<Display Name>" {
description "<text>"
owner "<executive_or_team>"
tags ["tag1", "tag2"]
priority "Critical" | "High" | "Medium" | "Low"

relationships { ... }
}

Properties

PropertyTypeAllowed ValuesDescription
descriptionstringFree textStrategic definition and success criteria
ownerstringFree textExecutive sponsor or business leader
tagsstring[]Array of stringsStrategy alignment tags (e.g. tags ["fy27", "growth"])
priorityenum"Critical", "High", "Medium", "Low"Strategic priority rank

Allowed Relationship Verbs & Targets

VerbArchiMate RelationAllowed Target Entity Types
influencesInfluencegoal, kpi
governed_byGovernancepolicy, standard

Complete Example

goal goal_cloud_modernization "Cloud-Native Transformation" {
description "Migrate 80% of on-premises transactional systems to managed cloud platforms by Q4 2027"
owner "Chief Technology Officer"
priority "Critical"
tags ["transformation", "cloud", "okr-2027"]

relationships {
this influences kpi_infrastructure_cost "Aims to reduce compute spend"
this influences kpi_release_velocity "Drives faster delivery cycle time"
this governed_by pol_enterprise_architecture
}
}