Skip to main content

policy

ArchiMate 3.2 Equivalent: Principle / Constraint (Motivation & Governance Aspect)

Represents an enterprise governance policy, regulatory framework mandate, or compliance constraint.

Visual Styling

To apply custom icons, borders, or CSS styles to policies, use a Style Rule (e.g. style policy where enforcement == "Mandatory" { icon "shield-lock" }).


Syntax

policy <id> "<Display Name>" {
description "<text>"
owner "<team>"
tags ["tag1", "tag2"]
classification "<text>"
status "Active" | "Draft" | "Deprecated"
priority "Critical" | "High" | "Medium" | "Low"
policy_type "Security" | "Privacy" | "Compliance" | "Operational" | "Data Governance" | "Access Control" | "AI Governance" | "Risk Governance" | "IT Governance" | "Cloud Security" | "Vendor Risk Management"
enforcement "Mandatory" | "Advisory" | "Automated" | "Recommended" | "Optional"

relationships { ... }
}

Properties

PropertyTypeAllowed ValuesDescription
descriptionstringFree textPolicy charter, scope, and non-compliance consequences
ownerstringFree textCompliance officer or governance committee
tagsstring[]Array of stringsCategorization tags (e.g. tags ["iso27001", "pci"])
classificationstringFree textInternal policy classification level
statusstringe.g. "Active", "Under Review"Operational lifecycle state
priorityenum"Critical", "High", "Medium", "Low"Governance priority tier
policy_typeenum"Security", "Privacy", "Compliance", "Operational", "Data Governance", "Access Control", "AI Governance", "Risk Governance", "IT Governance", "Cloud Security", "Vendor Risk Management"Domain classification
enforcementenum"Mandatory", "Advisory", "Automated", "Recommended", "Optional"Adherence obligation level

Allowed Relationship Verbs & Targets

VerbArchiMate RelationAllowed Target Entity Types
governed_byGovernancepolicy, standard
influencesInfluencegoal, kpi

Complete Example

policy pol_data_retention "Customer Data Retention Policy" {
description "Requires customer PII to be purged exactly 7 years after account closure"
policy_type "Privacy"
enforcement "Mandatory"
priority "Critical"
status "Active"
tags ["privacy", "gdpr", "compliance"]

relationships {
this influences goal_regulatory_compliance
}
}