DataStore#

A DataStore represents a database, file system, or any other system that stores data. It is a specialized type of Container.

Syntax#

datastore ID "Label" {
    description "Optional description"
    technology "Technology"
}

Example#

datastore DB "Main Database" {
    technology "PostgreSQL"
    description "Stores user and order data"
}