The Structurizr DSL provides a way to define a software architecture model (based upon the C4 model) as text, using a domain specific language (DSL). The Structurizr CLI (command line interface) provides tooling to parse DSL workspace definitions, upload them to the Structurizr cloud service/on-premises installation, and export diagrams to other formats (e.g. PlantUML and WebSequenceDiagrams). See https://structurizr.com/dsl for a demo of the DSL.
Please note that what you see here may not be available in the Structurizr CLI yet.
- General rules
- Comments
- Identifiers
- Includes
- Grammar
- Line breaks are important.
- Tokens must be separated by whitespace, but the quantity of whitespace/indentation isn't important.
- Keywords are case-insensitive (e.g. you can use
softwareSystemorsoftwaresystem). - Double quote characters (
"...") are optional when a property contains no whitespace. - Opening curly brace symbols (
{) must be on the same line (i.e. the last token of the statement, not on a line of their own). - Closing curly brace symbols (
}) must be on a line of their own. - Use
""as a placeholder for an earlier optional property that you'd like to skip. - Each view must have a unique "key" (this is autogenerated if not specified).
- Tags are comma separated (e.g.
Tag 1,Tag 2,Tag 3) - see Structurizr - Notation for details of how tags and styling works.
Comments can be defined as follows:
/**
multi-line comment
*/
# single line comment
// single line comment
By default, all elements and relationships are anonymous, in that they can't be referenced from within the DSL. For example, the following statements will create a person and a software system, but neither can be referenced within the DSL.
person "User" "A user of my software system."
softwareSystem "Software System" "My software system"
To create a relationship between the two elements, we need to be able to reference them. We can do this by defining an identifier, in the same way that you'd define a variable in many programming languages.
p = person "User" "A user of my software system."
ss = softwareSystem "Software System" "My software system"
Now we can use these identifiers when creating relationships, specifying which elements should be included/excluded from views, etc.
p -> ss "Uses"
Identifiers are only needed where you plan to reference the element/relationship.
The !include keyword can be used to include another file, to provide some degree of modularity, and to reuse definition fragments between workspaces.
!include <file>
The file must be a relative path, located within the same directory as the parent file, or a subdirectory of it. For example:
!include child.dsl
!include subdirectory/child.dsl
The content of any included files is simply inlined into the parent document.
The !docs keyword can be used to attach Markdown/AsciiDoc documentation to the parent context (either the workspace, or a software system).
!docs <path>
The path must be a relative path, located within the same directory as the parent file, or a subdirectory of it. For example:
!docs subdirectory
All Markdown and AsciiDoc files in this directory (and sub-directories) will be imported, alphabetically according to the filename. Each file must represent a separate documentation section, and the second level heading (## Section Title in Markdown and == Section Title in AsciiDoc) will be used as the section name.
The !adrs keyword can be used to attach Markdown/AsciiDoc ADRs to the parent context (either the workspace, or a software system).
!adrs <path>
The path must be a relative path, located within the same directory as the parent file, or a subdirectory of it. For example:
!adrs subdirectory
All Markdown and AsciiDoc files in this directory (and sub-directories) will be imported, alphabetically according to the filename. The files must have been created by adr-tools, or at least follow the same format.
The following describes the language grammar, with angle brackets (<...>) used to show required properties, and square brackets ([...]) used to show optional properties.
Most statements are of the form: keyword <required properties> [optional properties]
workspace [name] [description] {
/**
multi-line comment
*/
# single line comment
// single line comment
!include <file>
!docs <path>
!adrs <path>
model {
impliedRelationships <true|false>
enterprise <name> {
[<identifier> = ]person <name> [description] [tags] {
url <url>
properties {
<name> <value>
}
perspectives {
<name> <description>
}
}
[<identifier> = ]softwareSystem <name> [description] [tags] {
url <url>
properties {
<name> <value>
}
perspectives {
<name> <description>
}
[<identifier> = ]container <name> [description] [technology] [tags] {
[<identifier> = ]component <name> [description] [technology] [tags]
}
!docs <path>
!adrs <path>
}
}
[<identifier> = ]person <name> [description] [tags] {
url <url>
properties {
<name> <value>
}
perspectives {
<name> <description>
}
}
[<identifier> = ]softwareSystem <name> [description] [tags] {
url <url>
properties {
<name> <value>
}
perspectives {
<name> <description>
}
[<identifier> = ]container <name> [description] [technology] [tags] {
url <url>
properties {
<name> <value>
}
perspectives {
<name> <description>
}
[<identifier> = ]component <name> [description] [technology] [tags] {
url <url>
properties {
<name> <value>
}
perspectives {
<name> <description>
}
}
}
!docs <path>
!adrs <path>
}
[<identifier> = ]<identifier> -> <identifier> [description] [technology] [tags] {
url <url>
properties {
<name> <value>
}
perspectives {
<name> <description>
}
}
deploymentEnvironment <name> {
[<identifier> = ]deploymentNode <name> [description] [technology] [tags] [instances] {
url <url>
properties {
<name> <value>
}
perspectives {
<name> <description>
}
[<identifier> = ]deploymentNode <name> [description] [technology] [tags] [instances] {
url <url>
properties {
<name> <value>
}
perspectives {
<name> <description>
}
[<identifier> = ]infrastructureNode <name> [description] [technology] [tags] {
url <url>
properties {
<name> <value>
}
perspectives {
<name> <description>
}
}
[<identifier> = ]softwareSystemInstance <identifier> [tags]
[<identifier> = ]containerInstance <identifier> [tags]
}
}
}
}
views {
systemLandscape [key] [description] {
include <*|identifier> [identifier...]
exclude <identifier> [identifier...]
autoLayout [tb|bt|lr|rl] [rankSeparation] [nodeSeparation]
animationStep <identifier> [identifier...]
title <title>
}
systemContext <software system identifier> [key] [description] {
include <*|identifier> [identifier...]
exclude <identifier> [identifier...]
autoLayout [tb|bt|lr|rl] [rankSeparation] [nodeSeparation]
animationStep <identifier> [identifier...]
title <title>
}
container <software system identifier> [key] [description] {
include <*|identifier> [identifier...]
exclude <identifier> [identifier...]
autoLayout [tb|bt|lr|rl] [rankSeparation] [nodeSeparation]
animationStep <identifier> [identifier...]
title <title>
}
component <container identifier> [key] [description] {
include <*|identifier> [identifier...]
exclude <identifier> [identifier...]
autoLayout [tb|bt|lr|rl] [rankSeparation] [nodeSeparation]
animationStep <identifier> [identifier...]
title <title>
}
filtered <baseKey> <include|exclude> <tags> [key] [description]
dynamic <*|software system identifier|container identifier> [key] [description] {
<identifier> -> <identifier> [description] [technology]
autoLayout [tb|bt|lr|rl] [rankSeparation] [nodeSeparation]
title <title>
}
deployment <*|software system identifier> <environment name> [key] [description] {
include <*|identifier> [identifier...]
exclude <identifier> [identifier...]
autoLayout [tb|bt|lr|rl] [rankSeparation] [nodeSeparation]
animationStep <identifier> [identifier...]
title <title>
}
styles {
element <tag> {
shape <Box|RoundedBox|Circle|Ellipse|Hexagon|Cylinder|Pipe|Person|Robot|Folder|WebBrowser|MobileDevicePortrait|MobileDeviceLandscape|Component>
icon <file>
width <integer>
height <integer>
background <#rrggbb>
color <#rrggbb>
colour <#rrggbb>
stroke <#rrggbb>
fontSize <integer>
border <solid|dashed|dotted>
opacity <integer: 0-100>
metadata <true|false>
description <true|false>
}
relationship <tag> {
thickness <integer>
color #777777
colour #777777
dashed <true|false>
routing <Direct|Orthogonal|Curved>
fontSize <integer>
width <integer>
position <integer: 0-100>
opacity <integer: 0-100>
}
}
themes <themeUrl> [themeUrl] ... [themeUrl]
branding {
logo <file>
font <name> [url]
}
terminology {
enterprise <term>
person <term>
softwareSystem <term>
container <term>
component <term>
deploymentNode <term>
infrastructureNode <term>
relationship <term>
}
}
configuration {
users {
<username> <read|write>
}
}
}
workspace is the top level language construct, and the wrapper for the model and views. A workspace can optionally be given a name and description.
workspace [name] [description] {
...
}
Each workspace must contain a model block, inside which elements and relationships are defined.
model {
...
}
The model block can contain the following children:
impliedRelationships <true|false>
The impliedRelationships keyword provides a way to enable or disable whether implied relationships are created.
A flag of false disables implied relationship creation, while true creates implied relationships between all valid combinations of the parent elements, unless any relationship already exists between them
(see Structurizr for Java - Implied relationships - CreateImpliedRelationshipsUnlessAnyRelationshipExistsStrategy for more details).
The enterprise keyword provides a way to define a named "enterprise" (e.g. an organisation). Any people or software systems defined inside this block will be deemed to be "internal", while all others will be deemed to be "external". On System Landscape and System Context diagrams, an enterprise is represented as a dashed box. Only a single enterprise can be defined within a model.
enterprise <name> {
...
}
The enterprise block can contain the following children:
The person keyword defines a person (e.g. a user, actor, role, or persona).
person <name> [description] [tags]
The following tags are added by default:
ElementPerson
The softwareSystem keyword defines a software system.
softwareSystem <name> [description] [tags]
Add braces if you would like to define child containers:
softwareSystem <name> [description] [tags] {
...
}
The following tags are added by default:
ElementSoftware System
The container keyword defines a container, within a software system.
container <name> [description] [technology] [tags]
Add braces if you would like to define child components:
container <name> [description] [technology] [tags] {
...
}
The following tags are added by default:
ElementContainer
The component keyword defines a component, within a container.
component <name> [description] [technology] [tags]
The following tags are added by default:
ElementComponent
The deploymentEnvironment keyword provides a way to define a deployment environment (e.g. development, testing, staging, live, etc).
deploymentEnvironment <name> {
...
}
A deployment environment can contain one or more deploymentNode elements.
The deploymentNode keyword is used to define a deployment node.
deploymentNode <name> [description] [technology] [tags] [instances] {
...
}
The following tags are added by default:
ElementDeployment Node
Deployment nodes can be nested, so a deployment node can contain other deployment nodes. A deployment node can also contain infrastructureNode, softwareSystemInstance, and containerInstance elements.
The infrastructureNode keyword defines an infrastructure node, which is typically something like a load balancer, firewall, DNS service, etc.
infrastructureNode <name> [description] [technology] [tags]
The following tags are added by default:
ElementInfrastructure Node
The softwareSystemInstance keyword defines an instance of the specified software system that is deployed on the parent deployment node.
softwareSystemInstance <identifier> [tags]
The identifier must represent a software system.
In addition to the software system's tags, the following tags are added by default:
Software System Instance
The containerInstance keyword defines an instance of the specified container that is deployed on the parent deployment node.
containerInstance <identifier> [tags]
The identifier must represent a container.
In addition to the container's tags, the following tags are added by default:
Container Instance
-> is used to define a uni-directional relationship between two elements.
There are two ways to define relationships. The first is explicitly, where you explicitly use a source identifier:
<identifier> -> <identifier> [description] [technology] [tags]
For example:
user -> softwareSystem "Uses"
And the second is implicitly, where the relationship source is the element in scope:
-> <identifier> [description] [technology] [tags]
For example:
person user {
-> softwareSystem "Uses"
}
The following tags are added to relationships by default:
Relationship
And only the following types of relationships are permitted in the model:
| Source | Destination |
|---|---|
| Person | Person, Software System, Container, Component |
| Software System | Person, Software System, Container, Component |
| Container | Person, Software System, Container, Component |
| Component | Person, Software System, Container, Component |
| Deployment Node | Deployment Node |
| Infrastructure Node | Deployment Node, Infrastructure Node, Software System Instance, Container Instance |
| Software System Instance | Infrastructure Node, Software System Instance, Container Instance |
| Container Instance | Infrastructure Node, Software System Instance, Container Instance |
url is used to set a URL on an element or relationship.
url https://example.com
The properties block is used to define one or more name/value properties for an element or relationship.
properties {
<name> <value>
...
}
The perspectives block is used to define one or more name/description perspectives for an element or relationship.
See Help - Perspectives for how these are used.
perspectives {
<name> <description>
...
}
Each workspace can also contain one or more views, defined with the views block.
views {
...
}
The views block can contain the following:
- systemLandscape
- systemContext
- container
- component
- filtered
- dynamic
- deployment
- styles
- themes
- branding
- terminology
The systemLandscape keyword is used to define a System Landscape view.
systemLandscape [key] [description] {
...
}
The following keywords can be used within the systemLandscape block:
The systemContext keyword is used to define a System Context view for the specified software system.
systemContext <software system identifier> [key] [description] {
...
}
The following keywords can be used within the systemContext block:
The container keyword is used to define a Container view for the specified software system.
container <software system identifier> [key] [description] {
...
}
The following keywords can be used within the container block:
The component keyword is used to define a Component view for the specified container.
component <container identifier> [key] [description] {
...
}
The following keywords can be used within the component block:
The filtered keyword is used to define a Filtered view on top of the specified view.
filtered <baseKey> <include|exclude> <tags> [key] [description]
The baseKey specifies the key of the System Landscape, System Context, Container, or Component view on which this filtered view should be based. The mode (include or exclude) defines whether the view should include or exclude elements/relationships based upon the tags provided.
The dynamic keyword defines a Dynamic view for the specified scope.
dynamic <*|software system identifier|container identifier> [key] [description] {
...
}
The first property defines the scope of the view, and therefore what can be added to the view, as follows:
*scope: People and software systems.- Software system scope: People, other software systems, and containers.
- Container scope: People, other software systems, other containers, and components.
Unlike the other diagram types, Dynamic views are created by specifying the relationships that should be added to the view, within the dynamic block, as follows:
<identifier> -> <identifier> [description] [technology]
If a relationship between the two elements does not exist, it will be automatically created.
The following keywords can also be used within the dynamic block:
The deployment keyword defines a Deployment view for the specified scope and deployment environment.
deployment <*|software system identifier> <environment name> [key] [description] {
...
}
The first property defines the scope of the view, and the second property defines the deployment environment. The combination of these two properties determines what can be added to the view, as follows:
*scope: All deployment nodes, infrastructure nodes, and container instances within the deployment environment.- Software system scope: All deployment nodes and infrastructure nodes within the deployment environment. Container instances within the deployment environment that belong to the software system.
The following keywords can be used within the deployment block:
The include keyword can be used to include elements or relationships.
To include elements in a view, use one or more include statements inside the block defining the view.
include <*|identifier> [identifier...]
Elements can either be specified using individual identifiers, or using the wildcard (*) identifier, which operates differently depending upon the type of diagram.
- System Landscape view: Include all people and software systems.
- System Context view: Include the software system in scope; plus all people and software systems that are directly connected to the software system in scope.
- Container view: Include all containers within the software system in scope; plus all people and software systems that are directly connected to those containers.
- Component view: Include all components within the container in scope; plus all people, software systems and containers (belonging to the software system in scope) directly connected to them.
- Filtered view: (not applicable)
- Dynamic view: (not applicable)
- Deployment view: Include all deployment nodes, infrastructure nodes, and container instances defined within the deployment environment and (optional) software system in scope.
To include a relationship in a view, you can specify an individual relationship identifier, or use the relationship expression syntax as follows:
include <*|identifier> -> <*|identifier>
The combinations of parameters are:
* -> *: all relationships between all elementssource -> *: all relationships fromsourceto any element* -> destination: all relationships from any element todestinationsource -> destination: all relationships fromsourcetodestination
The relationship expression syntax only operates on elements that exist in the view.
The exclude keyword can be used to exclude elements or relationships.
To exclude specific elements, use one or more exclude statements inside the block defining the view.
exclude <identifier> [identifier...]
To exclude a relationship in a view, you can specify an individual relationship identifier, or use the relationship expression syntax as follows:
exclude <*|identifier> -> <*|identifier>
The combinations of parameters are:
* -> *: all relationships between all elementssource -> *: all relationships fromsourceto any element* -> destination: all relationships from any element todestinationsource -> destination: all relationships fromsourcetodestination
The relationship expression syntax only operates on elements that exist in the view.
To enable automatic layout mode for the diagram, use the autoLayout statement inside the block defining the view.
autoLayout [tb|bt|lr|rl] [rankSeparation] [nodeSeparation]
The first property is the rank direction:
tb: Top to bottom (default)bt: Bottom to toplr: Left to rightrl: Right to left
The second property is the separation of ranks in pixels (default: 300), while the third property is the separation of nodes in the same rank in pixels (default: 300).
The animationStep keyword defines an animation step consisting of the specified elements.
animationStep <identifier> [identifier...]
Overrides the title of the view.
title <title>
styles is the wrapper for one or more element/relationship styles, which are used when rendering diagrams.
styles {
...
}
The styles block can contain the following:
The element keyword is used to define an element style. All nested properties (shape, icon, etc) are optional, see Structurizr - Notation for details about how tags and styles work.
element <tag> {
shape <Box|RoundedBox|Circle|Ellipse|Hexagon|Cylinder|Pipe|Person|Robot|Folder|WebBrowser|MobileDevicePortrait|MobileDeviceLandscape|Component>
icon <file>
width <integer>
height <integer>
background <#rrggbb>
color <#rrggbb>
colour <#rrggbb>
stroke <#rrggbb>
fontSize <integer>
border <solid|dashed|dotted>
opacity <integer: 0-100>
metadata <true|false>
description <true|false>
}
The relationship keyword is used to define a relationship style. All nested properties (thickness, color, etc) are optional, see Structurizr - Notation for details about how tags and styles work.
relationship <tag> {
thickness <integer>
color #777777
colour #777777
dashed <true|false>
routing <Direct|Orthogonal|Curved>
fontSize <integer>
width <integer>
position <integer: 0-100>
opacity <integer: 0-100>
}
The themes keyword can be used to specify one or more themes that should be used when rendering diagrams. See Structurizr - Themes for more details.
themes <themeUrl> [themeUrl] ... [themeUrl]
The branding keyword allows you to define some custom branding that should be used when rendering diagrams and documentation. See Structurizr - Branding for more details.
branding {
logo <file>
font <name> [url]
}
The terminology keyword allows you to override the terminology used when rendering diagrams (this may not be supported in all rendering tools). See Structurizr - Terminology for more details.
terminology {
enterprise <term>
person <term>
softwareSystem <term>
container <term>
component <term>
deploymentNode <term>
infrastructureNode <term>
relationship <term>
}
Finally, there are some configuration options that can be specified inside the configuration block.
configuration {
...
}
The users block can be used to specify the users who should have read-only or read-write access to a workspace. Each username (e.g. e-mail address) and role pair should be specified on their own line. Valid roles are read (read-only) and write (read-write).
users {
<username> <read|write>
}