A Python package that provides support for a schema-based building data model framework, currently under development as ASHRAE Standard 232P, where schema are described in compliant YAML source files. Lattice performs:
- Data model validation: Ensures the YAML schema source files are well-formed.
- Schema generation: Translates the YAML schema source files into equivalent JSON Schema.
- Data file validation: Validates data files against the generated JSON Schema and additional validation requirements not supported by JSON Schema (e.g., reference checking).
- Data model documentation: Generates web documentation of the data model from the YAML schema source files and templated markdown files. This web documentation can be automatically deployed to GitHub pages.
Future additions under development include:
- Generation of PDF documentation of the data model.
- Generation of C/C++ source code for processing compliant data files.
To install Lattice, simply:
pip install lattice
lattice is Python package defining the Lattice
class. Lattice relies on a predetermined structure of subdirectories:
- schema (optional): Contains YAML source schema files describing the data model. Alternatively, if YAML source schema files are not provided in a "schema" directory, they must be in the root directory.
- docs (optional): Contains markdown templates that are used to render model documentation. An optional subdirectory of "docs" called "web" contains additional content required for generating the web documentation including configuration settings, graphics, and supplementary content.
- examples (optional): Example data files compliant with the data model.
The Lattice
class is instantiated with the following parameters:
-
root_directory
: This is the directory containing the source subdirectories.The default is the current working directory. -
build_directory
: This is the path to the directory where the content related to lattice is stored. The content itself will be located in a subdirectory determined bybuild_output_directory_name
(below). It includes intermediate meta-schema(s), JSON Schema(s), generated markdown files, and the generated web documentation. The default isroot_directory
. -
build_output_directory_name
: The name of the lattice output content directory. The default is".lattice/"
. -
build_validation
: A boolean indicator to automatically generate meta-schema, validate the data model, generate the schemas and validate the example data files upon instantiation. If false, these tasks must be executed after instantiation using thegenerate_meta_schemas
,validate_schemas
,generate_json_schemas
, andvalidate_example_files
methods. The default isTrue
.
The repository's examples directory contains sample data models exemplifying different model options, such as Data Group Templates or scoped references.
More complete examples of projects using the ASHRAE Standard 232P framework include:
- IBPSA-USA Climate Information (uses lattice)
- ASHRAE Standard 205 (transitioning to lattice)
- ASHRAE Standard 229 (does not use lattice...yet)