Skip to main content

standard

ArchiMate 3.2 Equivalent: Standard / Requirement (Motivation & Governance Aspect)

Represents a technical standard, architecture baseline, interoperability protocol, or compliance specification adopted by the enterprise.

Visual Styling

To apply custom icons or styling to standards, use a Style Rule (e.g. style standard where status == "Adopted" { icon "check-circle" }).


Syntax

standard <id> "<Display Name>" {
description "<text>"
owner "<team>"
tags ["tag1", "tag2"]
standard_type "<type>"
version "<version_string>"
status "Mandatory" | "Recommended" | "Deprecated"

relationships { ... }
}

Properties

PropertyTypeAllowed ValuesDescription
descriptionstringFree textExplanation of standard requirements and scope
ownerstringFree textArchitecture Review Board or standard owner
tagsstring[]Array of stringsCategorization tags
standard_typestringe.g. "Protocol", "Security Baseline", "API Standard"Domain type
versionstringe.g. "3.1", "2024.1"Version or release year
statusstringe.g. "Adopted", "Trial", "Deprecated"Adoption status

Allowed Relationship Verbs & Targets

VerbArchiMate RelationAllowed Target Entity Types
governed_byGovernancepolicy, standard

Complete Example

standard std_openapi_3 "Enterprise OpenAPI 3.1 Standard" {
description "All synchronous internal and external APIs must be specified using OpenAPI 3.1"
standard_type "API Design"
version "3.1.0"
status "Adopted"
tags ["api", "rest", "architecture-standard"]

relationships {
this governed_by pol_api_governance "Mandated by Enterprise API Policy"
}
}