Warning

This model has not been updated since the last revision of the 223P ontology, and it may not pass validation. 223P was last updated on 2025-02-19 09:11:32. The model file was last updated on 2024-09-12 18:39:55

LBNL Example Building 4 Model 1#

Example Building 4 is a real-world large-sized office building.

Example Building 4 Model 1 is provided by Lawrence Berkeley National Laboratory.

Schematic view#

lbnl-example

Contents#

This model contains a representation of the HVAC system.

Downloads#

Queries#

Description

Query URL

Zone/room temperature sensors

Query Link

Model Components#

Load and Validate Model#

This code uses the BuildingMOTIF library to load the 223P ontology and the model file into a temporary in-memory instance. It then validates the model against the ontology. If the model is invalid, it will print the validation report.

To run this code, you need to have Java installed on your system. If you do not have Java installed, you can remove the shacl_engine='topquadrant' parameter from the BuildingMOTIF constructor. Be warned that without the shacl_engine='topquadrant' parameter, the validation process will be slower.

from buildingmotif import BuildingMOTIF
from buildingmotif.dataclasses import Library, Model
import logging

# Create a BuildingMOTIF object. If you do not have Java installed, remove the "shacl_engine" parameter
bm = BuildingMOTIF('sqlite://', shacl_engine='topquadrant', log_level=logging.ERROR)

# load 223P library. We will load a recent copy from the models.open223.info
# git repository; later, we will load this from the location of the actual standard
s223 = Library.load(ontology_graph="https://github.com/open223/models.open223.info/raw/main/ontologies/223p.ttl")

# load the model into the BuildingMOTIF instance
model = Model.create("urn:lbnl-bdg4-1")
model.graph.parse("https://models.open223.info/lbnl-bdg4-1.ttl")

# validate the model against 223P ontology
ctx = model.validate([s223.get_shape_collection()], error_on_missing_imports=False)

# print the validation result
print(f"Model is valid: {ctx.valid}")

# if the model is invalid, print the validation report
if not ctx.valid:
    print(ctx.report_string[:1000]) # first 1000 characters of the report

# BuildingMOTIF can also interpret the report to provide recommendations on fixes
for focus_node, diffs in ctx.get_reasons_with_severity("Violation").items():
    if len(diffs) == 0:
        continue
    print(focus_node)
    for diff in diffs:
        print("  - " + diff.reason())
Model is valid: 0
@prefix ns1: <http://qudt.org/schema/qudt/> .
@prefix ns2: <http://data.ashrae.org/standard223#> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

[] a sh:ValidationReport ;
    sh:conforms false ;
    sh:result [ a sh:ValidationResult ;
            sh:focusNode <http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-110-cooling-setpoint> ;
            sh:resultMessage "s223: A `QuantifiableProperty` can be associated with at most one `Unit` using the relation `hasUnit`." ;
            sh:resultPath ns1:hasUnit ;
            sh:resultSeverity sh:Violation ;
            sh:sourceConstraintComponent sh:ClassConstraintComponent ;
            sh:sourceShape <urn:well-known/477b2270> ;
            sh:value <http://qudt.org/vocab/unit/DEG_C> ],
        [ a sh:ValidationResult ;
            sh:focusNode <http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-506-heating-pid-output> ;
            sh:resultMessage "s223: An `Observabl
http://data.ashrae.org/standard223#LineLineVoltage-600V
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineLineVoltage-600V needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineLineVoltage-600V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-302-co2-concentration
  - http://qudt.org/vocab/unit/PPM on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-302-co2-concentration needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/MoleFraction on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-302-co2-concentration needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-209-co2-concentration
  - http://qudt.org/vocab/unit/PPM on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-209-co2-concentration needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/MoleFraction on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-209-co2-concentration needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-102-heating-setpoint
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-102-heating-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-102-heating-setpoint needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-523-discharge-air-temp
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-523-discharge-air-temp needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-523-discharge-air-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#Voltage-400V
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-400V needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-400V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-118-co2-concentration
  - http://qudt.org/vocab/quantitykind/MoleFraction on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-118-co2-concentration needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PPM on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-118-co2-concentration needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-516-reheat-coil-valve-position
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-516-reheat-coil-valve-position needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-516-reheat-coil-valve-position needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-528-damper-command
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-528-damper-command needs to be a http://qudt.org/schema/qudt/Unit
  - http://data.ashrae.org/standard223#EnumerationKind-Position on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-528-damper-command needs to be a http://data.ashrae.org/standard223#EnumerationKind
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-528-damper-command needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-506-reheat-coil-valve-command
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-506-reheat-coil-valve-command needs to be a http://qudt.org/schema/qudt/Unit
  - http://data.ashrae.org/standard223#EnumerationKind-Position on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-506-reheat-coil-valve-command needs to be a http://data.ashrae.org/standard223#EnumerationKind
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-506-reheat-coil-valve-command needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-521-damper-position
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-521-damper-position needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-521-damper-position needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-520-discharge-air-flow
  - http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-520-discharge-air-flow needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/FT3-PER-MIN on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-520-discharge-air-flow needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-519-damper-command
  - http://data.ashrae.org/standard223#EnumerationKind-Position on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-519-damper-command needs to be a http://data.ashrae.org/standard223#EnumerationKind
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-519-damper-command needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-519-damper-command needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-115-heating-setpoint
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-115-heating-setpoint needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-115-heating-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-515-reheat-coil
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-515-reheat-coil expected at least 1 instance(s) of ns1:HotWaterValve on path ns2:connectedTo
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-515-reheat-coil expected at least 1 instance(s) of ns1:HotWaterValve on path ns2:connectedTo
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-516-heating-pid-output
  - http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-516-heating-pid-output needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Dimensionless on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-516-heating-pid-output needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-304-co2-concentration
  - http://qudt.org/vocab/unit/PPM on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-304-co2-concentration needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/MoleFraction on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-304-co2-concentration needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-warmer-supply-air-requests
  - http://data.ashrae.org/standard223#EnumerationKind-HVACOperatingMode on http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-warmer-supply-air-requests needs to be a http://data.ashrae.org/standard223#EnumerationKind
http://data.ashrae.org/standard223#Voltage-415V
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-415V needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-415V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#DCNegativeVoltage-190.0V
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#DCNegativeVoltage-190.0V needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#DCNegativeVoltage-190.0V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-505-heating-pid-output
  - http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-505-heating-pid-output needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Dimensionless on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-505-heating-pid-output needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-505-reheat-coil-return-water-temp
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-505-reheat-coil-return-water-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-505-reheat-coil-return-water-temp needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-513-discharge-air-flow
  - http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-513-discharge-air-flow needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/FT3-PER-MIN on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-513-discharge-air-flow needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-532-reheat-coil-supply-water-temp
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-532-reheat-coil-supply-water-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-532-reheat-coil-supply-water-temp needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-303-co2-concentration
  - http://qudt.org/vocab/quantitykind/MoleFraction on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-303-co2-concentration needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PPM on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-303-co2-concentration needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-521-reheat-coil
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-521-reheat-coil expected at least 1 instance(s) of ns1:HotWaterValve on path ns2:connectedTo
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-521-reheat-coil expected at least 1 instance(s) of ns1:HotWaterValve on path ns2:connectedTo
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-527-damper-command
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-527-damper-command needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://data.ashrae.org/standard223#EnumerationKind-Position on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-527-damper-command needs to be a http://data.ashrae.org/standard223#EnumerationKind
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-527-damper-command needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223#LineNeutralVoltage-1900V
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineNeutralVoltage-1900V needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineNeutralVoltage-1900V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-539-reheat-coil-return-water-temp
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-539-reheat-coil-return-water-temp needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-539-reheat-coil-return-water-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-506-damper-command
  - http://data.ashrae.org/standard223#EnumerationKind-Position on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-506-damper-command needs to be a http://data.ashrae.org/standard223#EnumerationKind
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-506-damper-command needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-506-damper-command needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-532-discharge-air-temp
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-532-discharge-air-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-532-discharge-air-temp needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223#Voltage-24V
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-24V needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-24V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-524-cooling-pid-output
  - http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-524-cooling-pid-output needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Dimensionless on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-524-cooling-pid-output needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-519-reheat-coil-valve-command
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-519-reheat-coil-valve-command needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-519-reheat-coil-valve-command needs to be a http://qudt.org/schema/qudt/Unit
  - http://data.ashrae.org/standard223#EnumerationKind-Position on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-519-reheat-coil-valve-command needs to be a http://data.ashrae.org/standard223#EnumerationKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-202-heating-setpoint
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-202-heating-setpoint needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-202-heating-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#Voltage-6V
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-6V needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-6V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-525-reheat-coil
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-525-reheat-coil expected at least 1 instance(s) of ns1:HotWaterValve on path ns2:connectedTo
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-525-reheat-coil expected at least 1 instance(s) of ns1:HotWaterValve on path ns2:connectedTo
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-537-reheat-coil
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-537-reheat-coil expected at least 1 instance(s) of ns1:HotWaterValve on path ns2:connectedTo
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-537-reheat-coil expected at least 1 instance(s) of ns1:HotWaterValve on path ns2:connectedTo
http://data.ashrae.org/standard223#LineLineVoltage-3000V
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineLineVoltage-3000V needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineLineVoltage-3000V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#Voltage-127V
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-127V needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-127V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-512-reheat-coil
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-512-reheat-coil expected at least 1 instance(s) of ns1:HotWaterValve on path ns2:connectedTo
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-512-reheat-coil expected at least 1 instance(s) of ns1:HotWaterValve on path ns2:connectedTo
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-507-damper-command
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-507-damper-command needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-507-damper-command needs to be a http://qudt.org/schema/qudt/Unit
  - http://data.ashrae.org/standard223#EnumerationKind-Position on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-507-damper-command needs to be a http://data.ashrae.org/standard223#EnumerationKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-117-temp
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-117-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-117-temp needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-536-discharge-air-temp
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-536-discharge-air-temp needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-536-discharge-air-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#LineNeutralVoltage-5770V
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineNeutralVoltage-5770V needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineNeutralVoltage-5770V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#LineNeutralVoltage-240V
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineNeutralVoltage-240V needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineNeutralVoltage-240V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-304-temp
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-304-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-304-temp needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-306-temp
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-306-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-306-temp needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223#LineNeutralVoltage-120V
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineNeutralVoltage-120V needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineNeutralVoltage-120V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-101-co2-concentration
  - http://qudt.org/vocab/quantitykind/MoleFraction on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-101-co2-concentration needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PPM on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-101-co2-concentration needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-525-heating-pid-output
  - http://qudt.org/vocab/quantitykind/Dimensionless on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-525-heating-pid-output needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-525-heating-pid-output needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-111-heating-setpoint
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-111-heating-setpoint needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-111-heating-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-sa-fan-speed-cmd
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-sa-fan-speed-cmd needs to be a http://qudt.org/schema/qudt/Unit
  - http://data.ashrae.org/standard223#EnumerationKind-Speed on http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-sa-fan-speed-cmd needs to be a http://data.ashrae.org/standard223#EnumerationKind
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-sa-fan-speed-cmd needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-534-reheat-coil-valve-position
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-534-reheat-coil-valve-position needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-534-reheat-coil-valve-position needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-210-temp
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-210-temp needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-210-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-213-cooling-setpoint
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-213-cooling-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-213-cooling-setpoint needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-529-cooling-pid-output
  - http://qudt.org/vocab/quantitykind/Dimensionless on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-529-cooling-pid-output needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-529-cooling-pid-output needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-108-cooling-setpoint
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-108-cooling-setpoint needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-108-cooling-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
nbfb310f75f4e40b4a199574776661969b3340
  - http://qudt.org/vocab/quantitykind/VolumeFraction on nbfb310f75f4e40b4a199574776661969b3340 needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PERCENT on nbfb310f75f4e40b4a199574776661969b3340 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-502-damper-command
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-502-damper-command needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-502-damper-command needs to be a http://qudt.org/schema/qudt/Unit
  - http://data.ashrae.org/standard223#EnumerationKind-Position on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-502-damper-command needs to be a http://data.ashrae.org/standard223#EnumerationKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-531-reheat-coil-return-water-temp
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-531-reheat-coil-return-water-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-531-reheat-coil-return-water-temp needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-oa-damper-position
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-oa-damper-position needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-oa-damper-position needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-523-cooling-pid-output
  - http://qudt.org/vocab/quantitykind/Dimensionless on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-523-cooling-pid-output needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-523-cooling-pid-output needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-530-heating-pid-output
  - http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-530-heating-pid-output needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Dimensionless on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-530-heating-pid-output needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-105-cooling-setpoint
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-105-cooling-setpoint needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-105-cooling-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-520-reheat-coil-valve-command
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-520-reheat-coil-valve-command needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-520-reheat-coil-valve-command needs to be a http://qudt.org/schema/qudt/Unit
  - http://data.ashrae.org/standard223#EnumerationKind-Position on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-520-reheat-coil-valve-command needs to be a http://data.ashrae.org/standard223#EnumerationKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-101-cooling-setpoint
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-101-cooling-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-101-cooling-setpoint needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-118-heating-setpoint
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-118-heating-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-118-heating-setpoint needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-509-reheat-coil-return-water-temp
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-509-reheat-coil-return-water-temp needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-509-reheat-coil-return-water-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-533-discharge-air-flow
  - http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-533-discharge-air-flow needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/FT3-PER-MIN on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-533-discharge-air-flow needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-534-discharge-air-flow
  - http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-534-discharge-air-flow needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/FT3-PER-MIN on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-534-discharge-air-flow needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-534-damper-command
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-534-damper-command needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-534-damper-command needs to be a http://qudt.org/schema/qudt/Unit
  - http://data.ashrae.org/standard223#EnumerationKind-Position on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-534-damper-command needs to be a http://data.ashrae.org/standard223#EnumerationKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-535-reheat-coil-valve-command
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-535-reheat-coil-valve-command needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-535-reheat-coil-valve-command needs to be a http://qudt.org/schema/qudt/Unit
  - http://data.ashrae.org/standard223#EnumerationKind-Position on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-535-reheat-coil-valve-command needs to be a http://data.ashrae.org/standard223#EnumerationKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-517-reheat-coil-valve-position
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-517-reheat-coil-valve-position needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-517-reheat-coil-valve-position needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223#DCPositiveVoltage-190.0V
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#DCPositiveVoltage-190.0V needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#DCPositiveVoltage-190.0V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-520-reheat-coil-valve-position
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-520-reheat-coil-valve-position needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-520-reheat-coil-valve-position needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-511-reheat-coil
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-511-reheat-coil expected at least 1 instance(s) of ns1:HotWaterValve on path ns2:connectedTo
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-511-reheat-coil expected at least 1 instance(s) of ns1:HotWaterValve on path ns2:connectedTo
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-525-reheat-coil-valve-position
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-525-reheat-coil-valve-position needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-525-reheat-coil-valve-position needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223#LineLineVoltage-480V
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineLineVoltage-480V needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineLineVoltage-480V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-539-reheat-coil-valve-command
  - http://data.ashrae.org/standard223#EnumerationKind-Position on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-539-reheat-coil-valve-command needs to be a http://data.ashrae.org/standard223#EnumerationKind
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-539-reheat-coil-valve-command needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-539-reheat-coil-valve-command needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-538-damper-position
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-538-damper-position needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-538-damper-position needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-215-co2-concentration-setpoint
  - http://qudt.org/vocab/quantitykind/MoleFraction on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-215-co2-concentration-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PPM on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-215-co2-concentration-setpoint needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-524-reheat-coil-supply-water-temp
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-524-reheat-coil-supply-water-temp needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-524-reheat-coil-supply-water-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-521-cooling-pid-output
  - http://qudt.org/vocab/quantitykind/Dimensionless on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-521-cooling-pid-output needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-521-cooling-pid-output needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-303-cooling-setpoint
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-303-cooling-setpoint needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-303-cooling-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-539-reheat-coil-valve-position
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-539-reheat-coil-valve-position needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-539-reheat-coil-valve-position needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-310-cooling-setpoint
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-310-cooling-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-310-cooling-setpoint needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-538-reheat-coil-return-water-temp
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-538-reheat-coil-return-water-temp needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-538-reheat-coil-return-water-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#Voltage-1730V
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-1730V needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-1730V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-537-reheat-coil-valve-position
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-537-reheat-coil-valve-position needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-537-reheat-coil-valve-position needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-302-heating-setpoint
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-302-heating-setpoint needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-302-heating-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-518-damper-position
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-518-damper-position needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-518-damper-position needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-508-cooling-pid-output
  - http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-508-cooling-pid-output needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Dimensionless on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-508-cooling-pid-output needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-ra-damper-command
  - http://data.ashrae.org/standard223#EnumerationKind-Position on http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-ra-damper-command needs to be a http://data.ashrae.org/standard223#EnumerationKind
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-ra-damper-command needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-ra-damper-command needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-535-discharge-air-flow
  - http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-535-discharge-air-flow needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/FT3-PER-MIN on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-535-discharge-air-flow needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-203-co2-concentration
  - http://qudt.org/vocab/quantitykind/MoleFraction on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-203-co2-concentration needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PPM on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-203-co2-concentration needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-207-co2-concentration-setpoint
  - http://qudt.org/vocab/quantitykind/MoleFraction on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-207-co2-concentration-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PPM on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-207-co2-concentration-setpoint needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-113-cooling-setpoint
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-113-cooling-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-113-cooling-setpoint needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-207-cooling-setpoint
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-207-cooling-setpoint needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-207-cooling-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#DCNegativeVoltage-3.0V
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#DCNegativeVoltage-3.0V needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#DCNegativeVoltage-3.0V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-110-temp
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-110-temp needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-110-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-108-co2-concentration
  - http://qudt.org/vocab/unit/PPM on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-108-co2-concentration needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/MoleFraction on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-108-co2-concentration needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#Voltage-6600V
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-6600V needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-6600V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-524-reheat-coil-return-water-temp
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-524-reheat-coil-return-water-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-524-reheat-coil-return-water-temp needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-205-co2-concentration-setpoint
  - http://qudt.org/vocab/unit/PPM on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-205-co2-concentration-setpoint needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/MoleFraction on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-205-co2-concentration-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-517-damper-position
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-517-damper-position needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-517-damper-position needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-103-co2-concentration-setpoint
  - http://qudt.org/vocab/quantitykind/MoleFraction on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-103-co2-concentration-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PPM on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-103-co2-concentration-setpoint needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-308-co2-concentration
  - http://qudt.org/vocab/quantitykind/MoleFraction on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-308-co2-concentration needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PPM on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-308-co2-concentration needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-ma-temp
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-ma-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-ma-temp needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223#Voltage-231V
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-231V needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-231V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-211-temp
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-211-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-211-temp needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-535-damper-command
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-535-damper-command needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://data.ashrae.org/standard223#EnumerationKind-Position on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-535-damper-command needs to be a http://data.ashrae.org/standard223#EnumerationKind
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-535-damper-command needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-502-reheat-coil
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-502-reheat-coil expected at least 1 instance(s) of ns1:HotWaterValve on path ns2:connectedTo
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-502-reheat-coil expected at least 1 instance(s) of ns1:HotWaterValve on path ns2:connectedTo
nbfb310f75f4e40b4a199574776661969b1116
  - http://qudt.org/vocab/quantitykind/Temperature on nbfb310f75f4e40b4a199574776661969b1116 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-303-temp
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-303-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-303-temp needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-112-heating-setpoint
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-112-heating-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-112-heating-setpoint needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-509-reheat-coil-valve-command
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-509-reheat-coil-valve-command needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://data.ashrae.org/standard223#EnumerationKind-Position on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-509-reheat-coil-valve-command needs to be a http://data.ashrae.org/standard223#EnumerationKind
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-509-reheat-coil-valve-command needs to be a http://qudt.org/schema/qudt/Unit
nbfb310f75f4e40b4a199574776661969b843
  - http://qudt.org/vocab/unit/PERCENT on nbfb310f75f4e40b4a199574776661969b843 needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/VolumeFraction on nbfb310f75f4e40b4a199574776661969b843 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-506-reheat-coil-valve-position
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-506-reheat-coil-valve-position needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-506-reheat-coil-valve-position needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-511-reheat-coil-return-water-temp
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-511-reheat-coil-return-water-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-511-reheat-coil-return-water-temp needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223#LineLineVoltage-240V
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineLineVoltage-240V needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineLineVoltage-240V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-increased-air-pressure-requests
  - http://data.ashrae.org/standard223#EnumerationKind-HVACOperatingMode on http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-increased-air-pressure-requests needs to be a http://data.ashrae.org/standard223#EnumerationKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-510-heating-pid-output
  - http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-510-heating-pid-output needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Dimensionless on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-510-heating-pid-output needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-312-cooling-setpoint
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-312-cooling-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-312-cooling-setpoint needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-301-co2-concentration
  - http://qudt.org/vocab/quantitykind/MoleFraction on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-301-co2-concentration needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PPM on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-301-co2-concentration needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-sa-fan
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-sa-fan expected at least 1 instance(s) of ns2:QuantifiableActuatableProperty on path ns2:hasProperty
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-sa-fan expected at least 1 instance(s) of ns2:EnumeratedActuatableProperty on path ns2:hasProperty
http://data.ashrae.org/standard223#DCPositiveVoltage-24.0V
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#DCPositiveVoltage-24.0V needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#DCPositiveVoltage-24.0V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-523-reheat-coil
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-523-reheat-coil expected at least 1 instance(s) of ns1:HotWaterValve on path ns2:connectedTo
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-523-reheat-coil expected at least 1 instance(s) of ns1:HotWaterValve on path ns2:connectedTo
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-214-heating-setpoint
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-214-heating-setpoint needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-214-heating-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-536-reheat-coil-valve-position
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-536-reheat-coil-valve-position needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-536-reheat-coil-valve-position needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-532-cooling-pid-output
  - http://qudt.org/vocab/quantitykind/Dimensionless on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-532-cooling-pid-output needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-532-cooling-pid-output needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-539-cooling-pid-output
  - http://qudt.org/vocab/quantitykind/Dimensionless on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-539-cooling-pid-output needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-539-cooling-pid-output needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-202-cooling-setpoint
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-202-cooling-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-202-cooling-setpoint needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-533-damper-command
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-533-damper-command needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-533-damper-command needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://data.ashrae.org/standard223#EnumerationKind-Position on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-533-damper-command needs to be a http://data.ashrae.org/standard223#EnumerationKind
http://data.ashrae.org/standard223#DCPositiveVoltage-380.0V
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#DCPositiveVoltage-380.0V needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#DCPositiveVoltage-380.0V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#Frequency-50Hz
  - http://qudt.org/vocab/quantitykind/Frequency on http://data.ashrae.org/standard223#Frequency-50Hz needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/quantitykind/Frequency on http://data.ashrae.org/standard223#Frequency-50Hz needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-510-discharge-air-flow
  - http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-510-discharge-air-flow needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/FT3-PER-MIN on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-510-discharge-air-flow needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-ra-temp
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-ra-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-ra-temp needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-528-reheat-coil-valve-command
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-528-reheat-coil-valve-command needs to be a http://qudt.org/schema/qudt/Unit
  - http://data.ashrae.org/standard223#EnumerationKind-Position on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-528-reheat-coil-valve-command needs to be a http://data.ashrae.org/standard223#EnumerationKind
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-528-reheat-coil-valve-command needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-528-reheat-coil-return-water-temp
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-528-reheat-coil-return-water-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-528-reheat-coil-return-water-temp needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-205-heating-setpoint
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-205-heating-setpoint needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-205-heating-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-215-temp
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-215-temp needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-215-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-532-damper-command
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-532-damper-command needs to be a http://qudt.org/schema/qudt/Unit
  - http://data.ashrae.org/standard223#EnumerationKind-Position on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-532-damper-command needs to be a http://data.ashrae.org/standard223#EnumerationKind
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-532-damper-command needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-116-cooling-setpoint
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-116-cooling-setpoint needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-116-cooling-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-518-reheat-coil-return-water-temp
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-518-reheat-coil-return-water-temp needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-518-reheat-coil-return-water-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-537-reheat-coil-return-water-temp
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-537-reheat-coil-return-water-temp needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-537-reheat-coil-return-water-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#NumberOfElectricalPhases-SinglePhase
  - http://qudt.org/vocab/quantitykind/Dimensionless on http://data.ashrae.org/standard223#NumberOfElectricalPhases-SinglePhase needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/quantitykind/Dimensionless on http://data.ashrae.org/standard223#NumberOfElectricalPhases-SinglePhase needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-111-co2-concentration
  - http://qudt.org/vocab/quantitykind/MoleFraction on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-111-co2-concentration needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PPM on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-111-co2-concentration needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-104-co2-concentration
  - http://qudt.org/vocab/quantitykind/MoleFraction on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-104-co2-concentration needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PPM on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-104-co2-concentration needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-539-damper-command
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-539-damper-command needs to be a http://qudt.org/schema/qudt/Unit
  - http://data.ashrae.org/standard223#EnumerationKind-Position on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-539-damper-command needs to be a http://data.ashrae.org/standard223#EnumerationKind
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-539-damper-command needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-530-damper-command
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-530-damper-command needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://data.ashrae.org/standard223#EnumerationKind-Position on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-530-damper-command needs to be a http://data.ashrae.org/standard223#EnumerationKind
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-530-damper-command needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-528-discharge-air-flow
  - http://qudt.org/vocab/unit/FT3-PER-MIN on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-528-discharge-air-flow needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-528-discharge-air-flow needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-526-discharge-air-flow
  - http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-526-discharge-air-flow needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/FT3-PER-MIN on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-526-discharge-air-flow needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-116-co2-concentration
  - http://qudt.org/vocab/quantitykind/MoleFraction on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-116-co2-concentration needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PPM on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-116-co2-concentration needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-107-co2-concentration-setpoint
  - http://qudt.org/vocab/unit/PPM on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-107-co2-concentration-setpoint needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/MoleFraction on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-107-co2-concentration-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-308-temp
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-308-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-308-temp needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-213-co2-concentration
  - http://qudt.org/vocab/quantitykind/MoleFraction on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-213-co2-concentration needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PPM on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-213-co2-concentration needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-520-damper-position
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-520-damper-position needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-520-damper-position needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#DCNegativeVoltage-2.5V
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#DCNegativeVoltage-2.5V needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#DCNegativeVoltage-2.5V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-517-reheat-coil-valve-command
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-517-reheat-coil-valve-command needs to be a http://qudt.org/schema/qudt/Unit
  - http://data.ashrae.org/standard223#EnumerationKind-Position on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-517-reheat-coil-valve-command needs to be a http://data.ashrae.org/standard223#EnumerationKind
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-517-reheat-coil-valve-command needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-517-reheat-coil-return-water-temp
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-517-reheat-coil-return-water-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-517-reheat-coil-return-water-temp needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-538-heating-pid-output
  - http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-538-heating-pid-output needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Dimensionless on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-538-heating-pid-output needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-509-reheat-coil-supply-water-temp
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-509-reheat-coil-supply-water-temp needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-509-reheat-coil-supply-water-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-507-cooling-pid-output
  - http://qudt.org/vocab/quantitykind/Dimensionless on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-507-cooling-pid-output needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-507-cooling-pid-output needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223#LineNeutralVoltage-1730V
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineNeutralVoltage-1730V needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineNeutralVoltage-1730V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-506-reheat-coil-return-water-temp
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-506-reheat-coil-return-water-temp needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-506-reheat-coil-return-water-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-208-cooling-setpoint
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-208-cooling-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-208-cooling-setpoint needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-306-cooling-setpoint
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-306-cooling-setpoint needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-306-cooling-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-209-temp
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-209-temp needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-209-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
nbfb310f75f4e40b4a199574776661969b1338
  - http://qudt.org/vocab/unit/PERCENT on nbfb310f75f4e40b4a199574776661969b1338 needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/VolumeFraction on nbfb310f75f4e40b4a199574776661969b1338 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-509-reheat-coil-valve-position
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-509-reheat-coil-valve-position needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-509-reheat-coil-valve-position needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-211-cooling-setpoint
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-211-cooling-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-211-cooling-setpoint needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-514-discharge-air-temp
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-514-discharge-air-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-514-discharge-air-temp needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-311-co2-concentration-setpoint
  - http://qudt.org/vocab/quantitykind/MoleFraction on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-311-co2-concentration-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PPM on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-311-co2-concentration-setpoint needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223#Voltage-3000V
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-3000V needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-3000V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#Voltage-10000V
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-10000V needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-10000V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-503-discharge-air-flow
  - http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-503-discharge-air-flow needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/FT3-PER-MIN on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-503-discharge-air-flow needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-111-co2-concentration-setpoint
  - http://qudt.org/vocab/unit/PPM on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-111-co2-concentration-setpoint needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/MoleFraction on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-111-co2-concentration-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-537-reheat-coil-valve-command
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-537-reheat-coil-valve-command needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-537-reheat-coil-valve-command needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://data.ashrae.org/standard223#EnumerationKind-Position on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-537-reheat-coil-valve-command needs to be a http://data.ashrae.org/standard223#EnumerationKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-523-reheat-coil-valve-position
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-523-reheat-coil-valve-position needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-523-reheat-coil-valve-position needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-311-co2-concentration
  - http://qudt.org/vocab/unit/PPM on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-311-co2-concentration needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/MoleFraction on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-311-co2-concentration needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-507-damper-position
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-507-damper-position needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-507-damper-position needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-522-cooling-pid-output
  - http://qudt.org/vocab/quantitykind/Dimensionless on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-522-cooling-pid-output needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-522-cooling-pid-output needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-540-damper-command
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-540-damper-command needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://data.ashrae.org/standard223#EnumerationKind-Position on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-540-damper-command needs to be a http://data.ashrae.org/standard223#EnumerationKind
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-540-damper-command needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223#DCVoltage-DCZeroVoltage
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#DCVoltage-DCZeroVoltage needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#DCVoltage-DCZeroVoltage needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-513-reheat-coil-return-water-temp
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-513-reheat-coil-return-water-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-513-reheat-coil-return-water-temp needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223#LineLineVoltage-415V
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineLineVoltage-415V needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineLineVoltage-415V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-309-co2-concentration-setpoint
  - http://qudt.org/vocab/quantitykind/MoleFraction on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-309-co2-concentration-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PPM on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-309-co2-concentration-setpoint needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-513-reheat-coil-valve-command
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-513-reheat-coil-valve-command needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://data.ashrae.org/standard223#EnumerationKind-Position on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-513-reheat-coil-valve-command needs to be a http://data.ashrae.org/standard223#EnumerationKind
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-513-reheat-coil-valve-command needs to be a http://qudt.org/schema/qudt/Unit
nbfb310f75f4e40b4a199574776661969b541
  - http://qudt.org/vocab/unit/PERCENT on nbfb310f75f4e40b4a199574776661969b541 needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/VolumeFraction on nbfb310f75f4e40b4a199574776661969b541 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-201-co2-concentration-setpoint
  - http://qudt.org/vocab/unit/PPM on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-201-co2-concentration-setpoint needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/MoleFraction on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-201-co2-concentration-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-540-discharge-air-flow
  - http://qudt.org/vocab/unit/FT3-PER-MIN on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-540-discharge-air-flow needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-540-discharge-air-flow needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-521-damper-command
  - http://data.ashrae.org/standard223#EnumerationKind-Position on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-521-damper-command needs to be a http://data.ashrae.org/standard223#EnumerationKind
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-521-damper-command needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-521-damper-command needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#LineLineVoltage-208V
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineLineVoltage-208V needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineLineVoltage-208V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-517-damper-command
  - http://data.ashrae.org/standard223#EnumerationKind-Position on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-517-damper-command needs to be a http://data.ashrae.org/standard223#EnumerationKind
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-517-damper-command needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-517-damper-command needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-206-heating-setpoint
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-206-heating-setpoint needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-206-heating-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-519-reheat-coil-supply-water-temp
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-519-reheat-coil-supply-water-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-519-reheat-coil-supply-water-temp needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-530-discharge-air-temp
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-530-discharge-air-temp needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-530-discharge-air-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-303-co2-concentration-setpoint
  - http://qudt.org/vocab/quantitykind/MoleFraction on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-303-co2-concentration-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PPM on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-303-co2-concentration-setpoint needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-526-reheat-coil-supply-water-temp
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-526-reheat-coil-supply-water-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-526-reheat-coil-supply-water-temp needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-523-reheat-coil-supply-water-temp
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-523-reheat-coil-supply-water-temp needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-523-reheat-coil-supply-water-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-534-damper-position
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-534-damper-position needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-534-damper-position needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-509-discharge-air-temp
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-509-discharge-air-temp needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-509-discharge-air-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-519-reheat-coil-valve-position
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-519-reheat-coil-valve-position needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-519-reheat-coil-valve-position needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-105-heating-setpoint
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-105-heating-setpoint needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-105-heating-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-526-damper-position
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-526-damper-position needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-526-damper-position needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-526-reheat-coil-return-water-temp
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-526-reheat-coil-return-water-temp needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-526-reheat-coil-return-water-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-523-heating-pid-output
  - http://qudt.org/vocab/quantitykind/Dimensionless on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-523-heating-pid-output needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-523-heating-pid-output needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-525-reheat-coil-return-water-temp
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-525-reheat-coil-return-water-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-525-reheat-coil-return-water-temp needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-540-reheat-coil-valve-position
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-540-reheat-coil-valve-position needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-540-reheat-coil-valve-position needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-527-damper-position
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-527-damper-position needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-527-damper-position needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-307-heating-setpoint
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-307-heating-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-307-heating-setpoint needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223#Voltage-3460V
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-3460V needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-3460V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-508-reheat-coil-supply-water-temp
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-508-reheat-coil-supply-water-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-508-reheat-coil-supply-water-temp needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-102-temp
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-102-temp needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-102-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-512-damper-command
  - http://data.ashrae.org/standard223#EnumerationKind-Position on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-512-damper-command needs to be a http://data.ashrae.org/standard223#EnumerationKind
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-512-damper-command needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-512-damper-command needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#LineLineVoltage-4160V
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineLineVoltage-4160V needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineLineVoltage-4160V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-532-reheat-coil-valve-position
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-532-reheat-coil-valve-position needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-532-reheat-coil-valve-position needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-108-temp
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-108-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-108-temp needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-528-cooling-pid-output
  - http://qudt.org/vocab/quantitykind/Dimensionless on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-528-cooling-pid-output needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-528-cooling-pid-output needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-107-temp
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-107-temp needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-107-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-525-reheat-coil-supply-water-temp
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-525-reheat-coil-supply-water-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-525-reheat-coil-supply-water-temp needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-518-reheat-coil-valve-position
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-518-reheat-coil-valve-position needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-518-reheat-coil-valve-position needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-309-temp
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-309-temp needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-309-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-531-heating-pid-output
  - http://qudt.org/vocab/quantitykind/Dimensionless on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-531-heating-pid-output needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-531-heating-pid-output needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-535-reheat-coil
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-535-reheat-coil expected at least 1 instance(s) of ns1:HotWaterValve on path ns2:connectedTo
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-535-reheat-coil expected at least 1 instance(s) of ns1:HotWaterValve on path ns2:connectedTo
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-536-discharge-air-flow
  - http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-536-discharge-air-flow needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/FT3-PER-MIN on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-536-discharge-air-flow needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-205-co2-concentration
  - http://qudt.org/vocab/unit/PPM on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-205-co2-concentration needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/MoleFraction on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-205-co2-concentration needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-305-co2-concentration-setpoint
  - http://qudt.org/vocab/unit/PPM on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-305-co2-concentration-setpoint needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/MoleFraction on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-305-co2-concentration-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-301-heating-setpoint
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-301-heating-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-301-heating-setpoint needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-510-damper-command
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-510-damper-command needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://data.ashrae.org/standard223#EnumerationKind-Position on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-510-damper-command needs to be a http://data.ashrae.org/standard223#EnumerationKind
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-510-damper-command needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-524-reheat-coil-valve-position
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-524-reheat-coil-valve-position needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-524-reheat-coil-valve-position needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-507-discharge-air-temp
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-507-discharge-air-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-507-discharge-air-temp needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-118-co2-concentration-setpoint
  - http://qudt.org/vocab/quantitykind/MoleFraction on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-118-co2-concentration-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PPM on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-118-co2-concentration-setpoint needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-520-cooling-pid-output
  - http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-520-cooling-pid-output needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Dimensionless on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-520-cooling-pid-output needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-510-cooling-pid-output
  - http://qudt.org/vocab/quantitykind/Dimensionless on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-510-cooling-pid-output needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-510-cooling-pid-output needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-510-discharge-air-temp
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-510-discharge-air-temp needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-510-discharge-air-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-520-heating-pid-output
  - http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-520-heating-pid-output needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Dimensionless on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-520-heating-pid-output needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-ra-fan-speed-cmd
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-ra-fan-speed-cmd needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-ra-fan-speed-cmd needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://data.ashrae.org/standard223#EnumerationKind-Speed on http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-ra-fan-speed-cmd needs to be a http://data.ashrae.org/standard223#EnumerationKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-536-damper-position
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-536-damper-position needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-536-damper-position needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223#Voltage-240V
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-240V needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-240V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-523-damper-position
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-523-damper-position needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-523-damper-position needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-209-co2-concentration-setpoint
  - http://qudt.org/vocab/quantitykind/MoleFraction on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-209-co2-concentration-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PPM on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-209-co2-concentration-setpoint needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-309-cooling-setpoint
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-309-cooling-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-309-cooling-setpoint needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-502-damper-position
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-502-damper-position needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-502-damper-position needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-209-cooling-setpoint
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-209-cooling-setpoint needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-209-cooling-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-512-discharge-air-flow
  - http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-512-discharge-air-flow needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/FT3-PER-MIN on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-512-discharge-air-flow needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-515-reheat-coil-valve-command
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-515-reheat-coil-valve-command needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://data.ashrae.org/standard223#EnumerationKind-Position on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-515-reheat-coil-valve-command needs to be a http://data.ashrae.org/standard223#EnumerationKind
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-515-reheat-coil-valve-command needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-522-damper-command
  - http://data.ashrae.org/standard223#EnumerationKind-Position on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-522-damper-command needs to be a http://data.ashrae.org/standard223#EnumerationKind
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-522-damper-command needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-522-damper-command needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#DCNegativeVoltage-380.0V
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#DCNegativeVoltage-380.0V needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#DCNegativeVoltage-380.0V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#DCVoltage-DCNegativeVoltage
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#DCVoltage-DCNegativeVoltage needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#DCVoltage-DCNegativeVoltage needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-506-cooling-pid-output
  - http://qudt.org/vocab/quantitykind/Dimensionless on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-506-cooling-pid-output needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-506-cooling-pid-output needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-536-reheat-coil
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-536-reheat-coil expected at least 1 instance(s) of ns1:HotWaterValve on path ns2:connectedTo
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-536-reheat-coil expected at least 1 instance(s) of ns1:HotWaterValve on path ns2:connectedTo
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-201-temp
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-201-temp needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-201-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#LineLineVoltage-400V
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineLineVoltage-400V needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineLineVoltage-400V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-532-reheat-coil
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-532-reheat-coil expected at least 1 instance(s) of ns1:HotWaterValve on path ns2:connectedTo
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-532-reheat-coil expected at least 1 instance(s) of ns1:HotWaterValve on path ns2:connectedTo
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-507-reheat-coil-valve-command
  - http://data.ashrae.org/standard223#EnumerationKind-Position on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-507-reheat-coil-valve-command needs to be a http://data.ashrae.org/standard223#EnumerationKind
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-507-reheat-coil-valve-command needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-507-reheat-coil-valve-command needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-529-reheat-coil-valve-position
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-529-reheat-coil-valve-position needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-529-reheat-coil-valve-position needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-508-reheat-coil-valve-command
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-508-reheat-coil-valve-command needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-508-reheat-coil-valve-command needs to be a http://qudt.org/schema/qudt/Unit
  - http://data.ashrae.org/standard223#EnumerationKind-Position on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-508-reheat-coil-valve-command needs to be a http://data.ashrae.org/standard223#EnumerationKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-504-damper-position
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-504-damper-position needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-504-damper-position needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-530-reheat-coil-return-water-temp
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-530-reheat-coil-return-water-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-530-reheat-coil-return-water-temp needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223#LineNeutralVoltage-347V
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineNeutralVoltage-347V needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineNeutralVoltage-347V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-301-temp
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-301-temp needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-301-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-538-cooling-pid-output
  - http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-538-cooling-pid-output needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Dimensionless on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-538-cooling-pid-output needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-107-cooling-setpoint
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-107-cooling-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-107-cooling-setpoint needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-522-damper-position
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-522-damper-position needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-522-damper-position needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-210-co2-concentration
  - http://qudt.org/vocab/unit/PPM on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-210-co2-concentration needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/MoleFraction on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-210-co2-concentration needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#Voltage-48V
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-48V needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-48V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-537-cooling-pid-output
  - http://qudt.org/vocab/quantitykind/Dimensionless on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-537-cooling-pid-output needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-537-cooling-pid-output needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-536-damper-command
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-536-damper-command needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-536-damper-command needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://data.ashrae.org/standard223#EnumerationKind-Position on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-536-damper-command needs to be a http://data.ashrae.org/standard223#EnumerationKind
http://data.ashrae.org/standard223#Numerical-Frequency
  - http://qudt.org/vocab/quantitykind/Frequency on http://data.ashrae.org/standard223#Numerical-Frequency needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/quantitykind/Frequency on http://data.ashrae.org/standard223#Numerical-Frequency needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#Voltage-0V
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-0V needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-0V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-107-heating-setpoint
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-107-heating-setpoint needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-107-heating-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-sa-fan-start-status
  - http://data.ashrae.org/standard223#EnumerationKind-OnOff on http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-sa-fan-start-status needs to be a http://data.ashrae.org/standard223#EnumerationKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-305-co2-concentration
  - http://qudt.org/vocab/quantitykind/MoleFraction on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-305-co2-concentration needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PPM on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-305-co2-concentration needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-527-reheat-coil-valve-command
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-527-reheat-coil-valve-command needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://data.ashrae.org/standard223#EnumerationKind-Position on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-527-reheat-coil-valve-command needs to be a http://data.ashrae.org/standard223#EnumerationKind
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-527-reheat-coil-valve-command needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-517-cooling-pid-output
  - http://qudt.org/vocab/quantitykind/Dimensionless on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-517-cooling-pid-output needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-517-cooling-pid-output needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223#LineLineVoltage-3300V
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineLineVoltage-3300V needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineLineVoltage-3300V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-109-heating-setpoint
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-109-heating-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-109-heating-setpoint needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-312-co2-concentration
  - http://qudt.org/vocab/unit/PPM on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-312-co2-concentration needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/MoleFraction on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-312-co2-concentration needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-536-heating-pid-output
  - http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-536-heating-pid-output needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Dimensionless on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-536-heating-pid-output needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-534-cooling-pid-output
  - http://qudt.org/vocab/quantitykind/Dimensionless on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-534-cooling-pid-output needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-534-cooling-pid-output needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-519-reheat-coil-return-water-temp
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-519-reheat-coil-return-water-temp needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-519-reheat-coil-return-water-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#LineNeutralVoltage-219V
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineNeutralVoltage-219V needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineNeutralVoltage-219V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-526-reheat-coil
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-526-reheat-coil expected at least 1 instance(s) of ns1:HotWaterValve on path ns2:connectedTo
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-526-reheat-coil expected at least 1 instance(s) of ns1:HotWaterValve on path ns2:connectedTo
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-501-discharge-air-flow
  - http://qudt.org/vocab/unit/FT3-PER-MIN on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-501-discharge-air-flow needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-501-discharge-air-flow needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-540-reheat-coil-valve-command
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-540-reheat-coil-valve-command needs to be a http://qudt.org/schema/qudt/Unit
  - http://data.ashrae.org/standard223#EnumerationKind-Position on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-540-reheat-coil-valve-command needs to be a http://data.ashrae.org/standard223#EnumerationKind
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-540-reheat-coil-valve-command needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-535-reheat-coil-valve-position
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-535-reheat-coil-valve-position needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-535-reheat-coil-valve-position needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-528-reheat-coil
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-528-reheat-coil expected at least 1 instance(s) of ns1:HotWaterValve on path ns2:connectedTo
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-528-reheat-coil expected at least 1 instance(s) of ns1:HotWaterValve on path ns2:connectedTo
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-503-damper-position
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-503-damper-position needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-503-damper-position needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-308-co2-concentration-setpoint
  - http://qudt.org/vocab/unit/PPM on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-308-co2-concentration-setpoint needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/MoleFraction on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-308-co2-concentration-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#LineNeutralVoltage-24V
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineNeutralVoltage-24V needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineNeutralVoltage-24V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-314-temp
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-314-temp needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-314-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#DCNegativeVoltage-5.0V
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#DCNegativeVoltage-5.0V needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#DCNegativeVoltage-5.0V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-112-co2-concentration-setpoint
  - http://qudt.org/vocab/quantitykind/MoleFraction on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-112-co2-concentration-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PPM on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-112-co2-concentration-setpoint needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-107-co2-concentration
  - http://qudt.org/vocab/unit/PPM on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-107-co2-concentration needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/MoleFraction on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-107-co2-concentration needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-502-reheat-coil-return-water-temp
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-502-reheat-coil-return-water-temp needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-502-reheat-coil-return-water-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#Voltage-219V
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-219V needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-219V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-503-reheat-coil-valve-position
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-503-reheat-coil-valve-position needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-503-reheat-coil-valve-position needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#Numerical-DCVoltage
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Numerical-DCVoltage needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Numerical-DCVoltage needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-518-discharge-air-temp
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-518-discharge-air-temp needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-518-discharge-air-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
nbfb310f75f4e40b4a199574776661969b614
  - http://qudt.org/vocab/quantitykind/VolumeFraction on nbfb310f75f4e40b4a199574776661969b614 needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PERCENT on nbfb310f75f4e40b4a199574776661969b614 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-102-co2-concentration
  - http://qudt.org/vocab/unit/PPM on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-102-co2-concentration needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/MoleFraction on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-102-co2-concentration needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-103-cooling-setpoint
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-103-cooling-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-103-cooling-setpoint needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-530-reheat-coil
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-530-reheat-coil expected at least 1 instance(s) of ns1:HotWaterValve on path ns2:connectedTo
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-530-reheat-coil expected at least 1 instance(s) of ns1:HotWaterValve on path ns2:connectedTo
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-511-damper-position
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-511-damper-position needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-511-damper-position needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-htg-coil-valve-position
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-htg-coil-valve-position needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-htg-coil-valve-position needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-113-co2-concentration-setpoint
  - http://qudt.org/vocab/unit/PPM on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-113-co2-concentration-setpoint needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/MoleFraction on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-113-co2-concentration-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#Voltage-3V
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-3V needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-3V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-306-co2-concentration
  - http://qudt.org/vocab/quantitykind/MoleFraction on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-306-co2-concentration needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PPM on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-306-co2-concentration needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-502-reheat-coil-valve-position
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-502-reheat-coil-valve-position needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-502-reheat-coil-valve-position needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223#LineNeutralVoltage-277V
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineNeutralVoltage-277V needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineNeutralVoltage-277V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-533-damper-position
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-533-damper-position needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-533-damper-position needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-524-damper-position
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-524-damper-position needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-524-damper-position needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-111-cooling-setpoint
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-111-cooling-setpoint needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-111-cooling-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-110-cooling-setpoint
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-110-cooling-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-110-cooling-setpoint needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-513-cooling-pid-output
  - http://qudt.org/vocab/quantitykind/Dimensionless on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-513-cooling-pid-output needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-513-cooling-pid-output needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-532-reheat-coil-valve-command
  - http://data.ashrae.org/standard223#EnumerationKind-Position on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-532-reheat-coil-valve-command needs to be a http://data.ashrae.org/standard223#EnumerationKind
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-532-reheat-coil-valve-command needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-532-reheat-coil-valve-command needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-212-temp
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-212-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-212-temp needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-113-temp
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-113-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-113-temp needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-208-heating-setpoint
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-208-heating-setpoint needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-208-heating-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-538-reheat-coil-valve-command
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-538-reheat-coil-valve-command needs to be a http://qudt.org/schema/qudt/Unit
  - http://data.ashrae.org/standard223#EnumerationKind-Position on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-538-reheat-coil-valve-command needs to be a http://data.ashrae.org/standard223#EnumerationKind
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-538-reheat-coil-valve-command needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-215-heating-setpoint
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-215-heating-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-215-heating-setpoint needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-529-heating-pid-output
  - http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-529-heating-pid-output needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Dimensionless on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-529-heating-pid-output needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-522-reheat-coil-supply-water-temp
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-522-reheat-coil-supply-water-temp needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-522-reheat-coil-supply-water-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-505-discharge-air-flow
  - http://qudt.org/vocab/unit/FT3-PER-MIN on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-505-discharge-air-flow needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-505-discharge-air-flow needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-sa-fan-start-cmd
  - http://data.ashrae.org/standard223#EnumerationKind-OnOff on http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-sa-fan-start-cmd needs to be a http://data.ashrae.org/standard223#EnumerationKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-512-discharge-air-temp
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-512-discharge-air-temp needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-512-discharge-air-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-302-temp
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-302-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-302-temp needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-519-damper-position
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-519-damper-position needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-519-damper-position needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-502-reheat-coil-valve-command
  - http://data.ashrae.org/standard223#EnumerationKind-Position on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-502-reheat-coil-valve-command needs to be a http://data.ashrae.org/standard223#EnumerationKind
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-502-reheat-coil-valve-command needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-502-reheat-coil-valve-command needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-114-co2-concentration
  - http://qudt.org/vocab/unit/PPM on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-114-co2-concentration needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/MoleFraction on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-114-co2-concentration needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#LineNeutralVoltage-208V
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineNeutralVoltage-208V needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineNeutralVoltage-208V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-203-co2-concentration-setpoint
  - http://qudt.org/vocab/unit/PPM on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-203-co2-concentration-setpoint needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/MoleFraction on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-203-co2-concentration-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-540-heating-pid-output
  - http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-540-heating-pid-output needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Dimensionless on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-540-heating-pid-output needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-510-damper-position
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-510-damper-position needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-510-damper-position needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-533-reheat-coil-supply-water-temp
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-533-reheat-coil-supply-water-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-533-reheat-coil-supply-water-temp needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-210-heating-setpoint
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-210-heating-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-210-heating-setpoint needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223#LineLineVoltage-220V
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineLineVoltage-220V needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineLineVoltage-220V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-506-discharge-air-temp
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-506-discharge-air-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-506-discharge-air-temp needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-528-reheat-coil-valve-position
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-528-reheat-coil-valve-position needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-528-reheat-coil-valve-position needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223#LineLineVoltage-10000V
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineLineVoltage-10000V needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineLineVoltage-10000V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-106-co2-concentration
  - http://qudt.org/vocab/unit/PPM on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-106-co2-concentration needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/MoleFraction on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-106-co2-concentration needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-210-cooling-setpoint
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-210-cooling-setpoint needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-210-cooling-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
nbfb310f75f4e40b4a199574776661969b2720
  - http://qudt.org/vocab/quantitykind/VolumeFraction on nbfb310f75f4e40b4a199574776661969b2720 needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PERCENT on nbfb310f75f4e40b4a199574776661969b2720 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-colder-supply-air-requests
  - http://data.ashrae.org/standard223#EnumerationKind-HVACOperatingMode on http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-colder-supply-air-requests needs to be a http://data.ashrae.org/standard223#EnumerationKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-clg-coil-valve-command
  - http://data.ashrae.org/standard223#EnumerationKind-Position on http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-clg-coil-valve-command needs to be a http://data.ashrae.org/standard223#EnumerationKind
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-clg-coil-valve-command needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-clg-coil-valve-command needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223#Voltage-12V
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-12V needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-12V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#LineNeutralVoltage-127V
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineNeutralVoltage-127V needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineNeutralVoltage-127V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-502-reheat-coil-supply-water-temp
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-502-reheat-coil-supply-water-temp needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-502-reheat-coil-supply-water-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#DCNegativeVoltage-12.0V
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#DCNegativeVoltage-12.0V needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#DCNegativeVoltage-12.0V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-516-discharge-air-flow
  - http://qudt.org/vocab/unit/FT3-PER-MIN on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-516-discharge-air-flow needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-516-discharge-air-flow needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-204-temp
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-204-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-204-temp needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223#DCVoltage-DCPositiveVoltage
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#DCVoltage-DCPositiveVoltage needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#DCVoltage-DCPositiveVoltage needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-104-cooling-setpoint
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-104-cooling-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-104-cooling-setpoint needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-533-discharge-air-temp
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-533-discharge-air-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-533-discharge-air-temp needs to be a http://qudt.org/schema/qudt/Unit
nbfb310f75f4e40b4a199574776661969b1574
  - http://qudt.org/vocab/quantitykind/VolumeFraction on nbfb310f75f4e40b4a199574776661969b1574 needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PERCENT on nbfb310f75f4e40b4a199574776661969b1574 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-506-heating-pid-output
  - http://qudt.org/vocab/quantitykind/Dimensionless on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-506-heating-pid-output needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-506-heating-pid-output needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223#LineNeutralVoltage-110V
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineNeutralVoltage-110V needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineNeutralVoltage-110V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-517-discharge-air-temp
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-517-discharge-air-temp needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-517-discharge-air-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-526-reheat-coil-valve-position
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-526-reheat-coil-valve-position needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-526-reheat-coil-valve-position needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-519-cooling-pid-output
  - http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-519-cooling-pid-output needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Dimensionless on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-519-cooling-pid-output needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-512-reheat-coil-return-water-temp
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-512-reheat-coil-return-water-temp needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-512-reheat-coil-return-water-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-117-co2-concentration-setpoint
  - http://qudt.org/vocab/unit/PPM on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-117-co2-concentration-setpoint needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/MoleFraction on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-117-co2-concentration-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-sa-fan-speed-status
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-sa-fan-speed-status needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-sa-fan-speed-status needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-520-reheat-coil-supply-water-temp
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-520-reheat-coil-supply-water-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-520-reheat-coil-supply-water-temp needs to be a http://qudt.org/schema/qudt/Unit
nbfb310f75f4e40b4a199574776661969b2695
  - http://qudt.org/vocab/quantitykind/VolumeFraction on nbfb310f75f4e40b4a199574776661969b2695 needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PERCENT on nbfb310f75f4e40b4a199574776661969b2695 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223#LineNeutralVoltage-3810V
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineNeutralVoltage-3810V needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineNeutralVoltage-3810V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-207-co2-concentration
  - http://qudt.org/vocab/unit/PPM on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-207-co2-concentration needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/MoleFraction on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-207-co2-concentration needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-210-co2-concentration-setpoint
  - http://qudt.org/vocab/quantitykind/MoleFraction on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-210-co2-concentration-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PPM on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-210-co2-concentration-setpoint needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-308-heating-setpoint
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-308-heating-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-308-heating-setpoint needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-307-co2-concentration-setpoint
  - http://qudt.org/vocab/unit/PPM on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-307-co2-concentration-setpoint needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/MoleFraction on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-307-co2-concentration-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#LineNeutralVoltage-231V
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineNeutralVoltage-231V needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineNeutralVoltage-231V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-514-reheat-coil-valve-command
  - http://data.ashrae.org/standard223#EnumerationKind-Position on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-514-reheat-coil-valve-command needs to be a http://data.ashrae.org/standard223#EnumerationKind
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-514-reheat-coil-valve-command needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-514-reheat-coil-valve-command needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-523-reheat-coil-valve-command
  - http://data.ashrae.org/standard223#EnumerationKind-Position on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-523-reheat-coil-valve-command needs to be a http://data.ashrae.org/standard223#EnumerationKind
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-523-reheat-coil-valve-command needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-523-reheat-coil-valve-command needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-521-reheat-coil-valve-position
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-521-reheat-coil-valve-position needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-521-reheat-coil-valve-position needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-501-reheat-coil
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-501-reheat-coil expected at least 1 instance(s) of ns1:HotWaterValve on path ns2:connectedTo
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-501-reheat-coil expected at least 1 instance(s) of ns1:HotWaterValve on path ns2:connectedTo
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-527-cooling-pid-output
  - http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-527-cooling-pid-output needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Dimensionless on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-527-cooling-pid-output needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-512-heating-pid-output
  - http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-512-heating-pid-output needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Dimensionless on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-512-heating-pid-output needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-503-discharge-air-temp
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-503-discharge-air-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-503-discharge-air-temp needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-306-heating-setpoint
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-306-heating-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-306-heating-setpoint needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-529-reheat-coil
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-529-reheat-coil expected at least 1 instance(s) of ns1:HotWaterValve on path ns2:connectedTo
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-529-reheat-coil expected at least 1 instance(s) of ns1:HotWaterValve on path ns2:connectedTo
nbfb310f75f4e40b4a199574776661969b2391
  - http://qudt.org/vocab/unit/PERCENT on nbfb310f75f4e40b4a199574776661969b2391 needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/VolumeFraction on nbfb310f75f4e40b4a199574776661969b2391 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-508-reheat-coil
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-508-reheat-coil expected at least 1 instance(s) of ns1:HotWaterValve on path ns2:connectedTo
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-508-reheat-coil expected at least 1 instance(s) of ns1:HotWaterValve on path ns2:connectedTo
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-109-co2-concentration
  - http://qudt.org/vocab/unit/PPM on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-109-co2-concentration needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/MoleFraction on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-109-co2-concentration needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-ra-fan-start-cmd
  - http://data.ashrae.org/standard223#EnumerationKind-OnOff on http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-ra-fan-start-cmd needs to be a http://data.ashrae.org/standard223#EnumerationKind
http://data.ashrae.org/standard223#Voltage-208V
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-208V needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-208V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-506-reheat-coil
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-506-reheat-coil expected at least 1 instance(s) of ns1:HotWaterValve on path ns2:connectedTo
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-506-reheat-coil expected at least 1 instance(s) of ns1:HotWaterValve on path ns2:connectedTo
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-518-heating-pid-output
  - http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-518-heating-pid-output needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Dimensionless on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-518-heating-pid-output needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-522-heating-pid-output
  - http://qudt.org/vocab/quantitykind/Dimensionless on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-522-heating-pid-output needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-522-heating-pid-output needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-509-damper-position
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-509-damper-position needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-509-damper-position needs to be a http://qudt.org/schema/qudt/QuantityKind
nbfb310f75f4e40b4a199574776661969b821
  - http://qudt.org/vocab/quantitykind/VolumeFraction on nbfb310f75f4e40b4a199574776661969b821 needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PERCENT on nbfb310f75f4e40b4a199574776661969b821 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-oa-damper-command
  - http://data.ashrae.org/standard223#EnumerationKind-Position on http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-oa-damper-command needs to be a http://data.ashrae.org/standard223#EnumerationKind
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-oa-damper-command needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-oa-damper-command needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-ra-damper-position
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-ra-damper-position needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-ra-damper-position needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-102-co2-concentration-setpoint
  - http://qudt.org/vocab/unit/PPM on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-102-co2-concentration-setpoint needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/MoleFraction on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-102-co2-concentration-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-530-damper-position
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-530-damper-position needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-530-damper-position needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223#Voltage-220V
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-220V needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-220V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#Voltage-4160V
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-4160V needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-4160V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-505-damper-command
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-505-damper-command needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-505-damper-command needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://data.ashrae.org/standard223#EnumerationKind-Position on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-505-damper-command needs to be a http://data.ashrae.org/standard223#EnumerationKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-htg-coil-return-water-temp
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-htg-coil-return-water-temp needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-htg-coil-return-water-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#Voltage-1900V
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-1900V needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-1900V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-306-co2-concentration-setpoint
  - http://qudt.org/vocab/quantitykind/MoleFraction on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-306-co2-concentration-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PPM on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-306-co2-concentration-setpoint needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-503-cooling-pid-output
  - http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-503-cooling-pid-output needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Dimensionless on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-503-cooling-pid-output needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#Voltage-190V
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-190V needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-190V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-534-reheat-coil-valve-command
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-534-reheat-coil-valve-command needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-534-reheat-coil-valve-command needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://data.ashrae.org/standard223#EnumerationKind-Position on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-534-reheat-coil-valve-command needs to be a http://data.ashrae.org/standard223#EnumerationKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-305-temp
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-305-temp needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-305-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-105-co2-concentration-setpoint
  - http://qudt.org/vocab/unit/PPM on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-105-co2-concentration-setpoint needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/MoleFraction on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-105-co2-concentration-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-305-heating-setpoint
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-305-heating-setpoint needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-305-heating-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-539-damper-position
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-539-damper-position needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-539-damper-position needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-532-reheat-coil-return-water-temp
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-532-reheat-coil-return-water-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-532-reheat-coil-return-water-temp needs to be a http://qudt.org/schema/qudt/Unit
nbfb310f75f4e40b4a199574776661969b219
  - http://qudt.org/vocab/unit/PERCENT on nbfb310f75f4e40b4a199574776661969b219 needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/VolumeFraction on nbfb310f75f4e40b4a199574776661969b219 needs to be a http://qudt.org/schema/qudt/QuantityKind
nbfb310f75f4e40b4a199574776661969b1817
  - http://qudt.org/vocab/unit/PERCENT on nbfb310f75f4e40b4a199574776661969b1817 needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/VolumeFraction on nbfb310f75f4e40b4a199574776661969b1817 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-207-heating-setpoint
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-207-heating-setpoint needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-207-heating-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-209-heating-setpoint
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-209-heating-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-209-heating-setpoint needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-214-temp
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-214-temp needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-214-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-503-reheat-coil-supply-water-temp
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-503-reheat-coil-supply-water-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-503-reheat-coil-supply-water-temp needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-112-co2-concentration
  - http://qudt.org/vocab/quantitykind/MoleFraction on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-112-co2-concentration needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PPM on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-112-co2-concentration needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-511-reheat-coil-valve-position
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-511-reheat-coil-valve-position needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-511-reheat-coil-valve-position needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-501-discharge-air-temp
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-501-discharge-air-temp needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-501-discharge-air-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-304-cooling-setpoint
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-304-cooling-setpoint needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-304-cooling-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#Voltage-139V
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-139V needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-139V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-103-co2-concentration
  - http://qudt.org/vocab/quantitykind/MoleFraction on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-103-co2-concentration needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PPM on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-103-co2-concentration needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-516-reheat-coil-valve-command
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-516-reheat-coil-valve-command needs to be a http://qudt.org/schema/qudt/Unit
  - http://data.ashrae.org/standard223#EnumerationKind-Position on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-516-reheat-coil-valve-command needs to be a http://data.ashrae.org/standard223#EnumerationKind
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-516-reheat-coil-valve-command needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#DCPositiveVoltage-2.5V
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#DCPositiveVoltage-2.5V needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#DCPositiveVoltage-2.5V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-501-damper-command
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-501-damper-command needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-501-damper-command needs to be a http://qudt.org/schema/qudt/Unit
  - http://data.ashrae.org/standard223#EnumerationKind-Position on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-501-damper-command needs to be a http://data.ashrae.org/standard223#EnumerationKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-air-filter-differential-pressure
  - http://qudt.org/vocab/quantitykind/Pressure on http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-air-filter-differential-pressure needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/IN_H2O on http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-air-filter-differential-pressure needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-509-cooling-pid-output
  - http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-509-cooling-pid-output needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Dimensionless on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-509-cooling-pid-output needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#LineNeutralVoltage-2400V
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineNeutralVoltage-2400V needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineNeutralVoltage-2400V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-529-reheat-coil-valve-command
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-529-reheat-coil-valve-command needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-529-reheat-coil-valve-command needs to be a http://qudt.org/schema/qudt/Unit
  - http://data.ashrae.org/standard223#EnumerationKind-Position on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-529-reheat-coil-valve-command needs to be a http://data.ashrae.org/standard223#EnumerationKind
http://data.ashrae.org/standard223#EnumerationKind-Numerical
  - http://qudt.org/vocab/quantitykind/Unknown on http://data.ashrae.org/standard223#EnumerationKind-Numerical needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/quantitykind/Unknown on http://data.ashrae.org/standard223#EnumerationKind-Numerical needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-501-reheat-coil-valve-command
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-501-reheat-coil-valve-command needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-501-reheat-coil-valve-command needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://data.ashrae.org/standard223#EnumerationKind-Position on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-501-reheat-coil-valve-command needs to be a http://data.ashrae.org/standard223#EnumerationKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-205-cooling-setpoint
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-205-cooling-setpoint needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-205-cooling-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-502-cooling-pid-output
  - http://qudt.org/vocab/quantitykind/Dimensionless on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-502-cooling-pid-output needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-502-cooling-pid-output needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-116-co2-concentration-setpoint
  - http://qudt.org/vocab/quantitykind/MoleFraction on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-116-co2-concentration-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PPM on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-116-co2-concentration-setpoint needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-533-heating-pid-output
  - http://qudt.org/vocab/quantitykind/Dimensionless on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-533-heating-pid-output needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-533-heating-pid-output needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223#Voltage-347V
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-347V needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-347V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-508-damper-position
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-508-damper-position needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-508-damper-position needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223#Numerical-Voltage
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Numerical-Voltage needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Numerical-Voltage needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-oa-flow
  - http://qudt.org/vocab/unit/FT3-PER-MIN on http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-oa-flow needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-oa-flow needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-537-reheat-coil-supply-water-temp
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-537-reheat-coil-supply-water-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-537-reheat-coil-supply-water-temp needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-515-damper-position
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-515-damper-position needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-515-damper-position needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-105-temp
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-105-temp needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-105-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-clg-coil-supply-water-temp
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-clg-coil-supply-water-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-clg-coil-supply-water-temp needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-101-heating-setpoint
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-101-heating-setpoint needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-101-heating-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-204-co2-concentration
  - http://qudt.org/vocab/quantitykind/MoleFraction on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-204-co2-concentration needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PPM on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-204-co2-concentration needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-514-reheat-coil
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-514-reheat-coil expected at least 1 instance(s) of ns1:HotWaterValve on path ns2:connectedTo
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-514-reheat-coil expected at least 1 instance(s) of ns1:HotWaterValve on path ns2:connectedTo
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-527-reheat-coil-supply-water-temp
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-527-reheat-coil-supply-water-temp needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-527-reheat-coil-supply-water-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-535-damper-position
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-535-damper-position needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-535-damper-position needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-531-reheat-coil-valve-command
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-531-reheat-coil-valve-command needs to be a http://qudt.org/schema/qudt/Unit
  - http://data.ashrae.org/standard223#EnumerationKind-Position on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-531-reheat-coil-valve-command needs to be a http://data.ashrae.org/standard223#EnumerationKind
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-531-reheat-coil-valve-command needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#DCPositiveVoltage-6.0V
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#DCPositiveVoltage-6.0V needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#DCPositiveVoltage-6.0V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-502-heating-pid-output
  - http://qudt.org/vocab/quantitykind/Dimensionless on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-502-heating-pid-output needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-502-heating-pid-output needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-117-cooling-setpoint
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-117-cooling-setpoint needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-117-cooling-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-536-reheat-coil-supply-water-temp
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-536-reheat-coil-supply-water-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-536-reheat-coil-supply-water-temp needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223#Voltage-6000V
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-6000V needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-6000V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-305-cooling-setpoint
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-305-cooling-setpoint needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-305-cooling-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-106-cooling-setpoint
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-106-cooling-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-106-cooling-setpoint needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223#Voltage-600V
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-600V needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-600V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-516-damper-position
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-516-damper-position needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-516-damper-position needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-509-heating-pid-output
  - http://qudt.org/vocab/quantitykind/Dimensionless on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-509-heating-pid-output needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-509-heating-pid-output needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-516-reheat-coil
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-516-reheat-coil expected at least 1 instance(s) of ns1:HotWaterValve on path ns2:connectedTo
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-516-reheat-coil expected at least 1 instance(s) of ns1:HotWaterValve on path ns2:connectedTo
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-531-reheat-coil
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-531-reheat-coil expected at least 1 instance(s) of ns1:HotWaterValve on path ns2:connectedTo
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-531-reheat-coil expected at least 1 instance(s) of ns1:HotWaterValve on path ns2:connectedTo
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-301-co2-concentration-setpoint
  - http://qudt.org/vocab/unit/PPM on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-301-co2-concentration-setpoint needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/MoleFraction on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-301-co2-concentration-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-503-reheat-coil-return-water-temp
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-503-reheat-coil-return-water-temp needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-503-reheat-coil-return-water-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-ra-flow
  - http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-ra-flow needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/FT3-PER-MIN on http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-ra-flow needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-114-co2-concentration-setpoint
  - http://qudt.org/vocab/unit/PPM on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-114-co2-concentration-setpoint needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/MoleFraction on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-114-co2-concentration-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-311-cooling-setpoint
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-311-cooling-setpoint needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-311-cooling-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#Voltage-2V
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-2V needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-2V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-304-heating-setpoint
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-304-heating-setpoint needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-304-heating-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-516-damper-command
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-516-damper-command needs to be a http://qudt.org/schema/qudt/Unit
  - http://data.ashrae.org/standard223#EnumerationKind-Position on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-516-damper-command needs to be a http://data.ashrae.org/standard223#EnumerationKind
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-516-damper-command needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-520-reheat-coil-return-water-temp
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-520-reheat-coil-return-water-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-520-reheat-coil-return-water-temp needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-214-co2-concentration
  - http://qudt.org/vocab/unit/PPM on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-214-co2-concentration needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/MoleFraction on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-214-co2-concentration needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-314-co2-concentration-setpoint
  - http://qudt.org/vocab/quantitykind/MoleFraction on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-314-co2-concentration-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PPM on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-314-co2-concentration-setpoint needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-106-co2-concentration-setpoint
  - http://qudt.org/vocab/quantitykind/MoleFraction on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-106-co2-concentration-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PPM on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-106-co2-concentration-setpoint needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-113-heating-setpoint
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-113-heating-setpoint needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-113-heating-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-213-heating-setpoint
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-213-heating-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-213-heating-setpoint needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-507-reheat-coil-valve-position
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-507-reheat-coil-valve-position needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-507-reheat-coil-valve-position needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-507-discharge-air-flow
  - http://qudt.org/vocab/unit/FT3-PER-MIN on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-507-discharge-air-flow needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-507-discharge-air-flow needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-528-discharge-air-temp
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-528-discharge-air-temp needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-528-discharge-air-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-507-heating-pid-output
  - http://qudt.org/vocab/quantitykind/Dimensionless on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-507-heating-pid-output needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-507-heating-pid-output needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223#LineNeutralVoltage-3460V
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineNeutralVoltage-3460V needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineNeutralVoltage-3460V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-105-co2-concentration
  - http://qudt.org/vocab/unit/PPM on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-105-co2-concentration needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/MoleFraction on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-105-co2-concentration needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-505-reheat-coil-supply-water-temp
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-505-reheat-coil-supply-water-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-505-reheat-coil-supply-water-temp needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-530-cooling-pid-output
  - http://qudt.org/vocab/quantitykind/Dimensionless on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-530-cooling-pid-output needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-530-cooling-pid-output needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-108-co2-concentration-setpoint
  - http://qudt.org/vocab/quantitykind/MoleFraction on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-108-co2-concentration-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PPM on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-108-co2-concentration-setpoint needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-518-damper-command
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-518-damper-command needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://data.ashrae.org/standard223#EnumerationKind-Position on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-518-damper-command needs to be a http://data.ashrae.org/standard223#EnumerationKind
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-518-damper-command needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-514-reheat-coil-supply-water-temp
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-514-reheat-coil-supply-water-temp needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-514-reheat-coil-supply-water-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-505-reheat-coil-valve-command
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-505-reheat-coil-valve-command needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-505-reheat-coil-valve-command needs to be a http://qudt.org/schema/qudt/Unit
  - http://data.ashrae.org/standard223#EnumerationKind-Position on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-505-reheat-coil-valve-command needs to be a http://data.ashrae.org/standard223#EnumerationKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-516-cooling-pid-output
  - http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-516-cooling-pid-output needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Dimensionless on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-516-cooling-pid-output needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-503-damper-command
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-503-damper-command needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-503-damper-command needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://data.ashrae.org/standard223#EnumerationKind-Position on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-503-damper-command needs to be a http://data.ashrae.org/standard223#EnumerationKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-113-co2-concentration
  - http://qudt.org/vocab/quantitykind/MoleFraction on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-113-co2-concentration needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PPM on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-113-co2-concentration needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-312-co2-concentration-setpoint
  - http://qudt.org/vocab/quantitykind/MoleFraction on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-312-co2-concentration-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PPM on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-312-co2-concentration-setpoint needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-517-reheat-coil-supply-water-temp
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-517-reheat-coil-supply-water-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-517-reheat-coil-supply-water-temp needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-523-discharge-air-flow
  - http://qudt.org/vocab/unit/FT3-PER-MIN on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-523-discharge-air-flow needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-523-discharge-air-flow needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-512-reheat-coil-supply-water-temp
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-512-reheat-coil-supply-water-temp needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-512-reheat-coil-supply-water-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-529-reheat-coil-supply-water-temp
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-529-reheat-coil-supply-water-temp needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-529-reheat-coil-supply-water-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#DCPositiveVoltage-12.0V
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#DCPositiveVoltage-12.0V needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#DCPositiveVoltage-12.0V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-511-cooling-pid-output
  - http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-511-cooling-pid-output needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Dimensionless on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-511-cooling-pid-output needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-ra-fan-power
  - http://qudt.org/vocab/unit/W on http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-ra-fan-power needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/ElectricPower on http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-ra-fan-power needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-212-heating-setpoint
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-212-heating-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-212-heating-setpoint needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-211-co2-concentration
  - http://qudt.org/vocab/quantitykind/MoleFraction on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-211-co2-concentration needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PPM on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-211-co2-concentration needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223#NumberOfElectricalPhases-ThreePhase
  - http://qudt.org/vocab/quantitykind/Dimensionless on http://data.ashrae.org/standard223#NumberOfElectricalPhases-ThreePhase needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/quantitykind/Dimensionless on http://data.ashrae.org/standard223#NumberOfElectricalPhases-ThreePhase needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-116-temp
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-116-temp needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-116-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-539-discharge-air-temp
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-539-discharge-air-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-539-discharge-air-temp needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-532-heating-pid-output
  - http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-532-heating-pid-output needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Dimensionless on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-532-heating-pid-output needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-525-discharge-air-flow
  - http://qudt.org/vocab/unit/FT3-PER-MIN on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-525-discharge-air-flow needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-525-discharge-air-flow needs to be a http://qudt.org/schema/qudt/QuantityKind
nbfb310f75f4e40b4a199574776661969b50
  - http://qudt.org/vocab/quantitykind/VolumeFraction on nbfb310f75f4e40b4a199574776661969b50 needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PERCENT on nbfb310f75f4e40b4a199574776661969b50 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-115-temp
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-115-temp needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-115-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-ea-damper-command
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-ea-damper-command needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://data.ashrae.org/standard223#EnumerationKind-Position on http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-ea-damper-command needs to be a http://data.ashrae.org/standard223#EnumerationKind
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-ea-damper-command needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223#Voltage-110V
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-110V needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-110V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-505-damper-position
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-505-damper-position needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-505-damper-position needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223#LineLineVoltage-190V
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineLineVoltage-190V needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineLineVoltage-190V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-511-damper-command
  - http://data.ashrae.org/standard223#EnumerationKind-Position on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-511-damper-command needs to be a http://data.ashrae.org/standard223#EnumerationKind
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-511-damper-command needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-511-damper-command needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-527-discharge-air-temp
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-527-discharge-air-temp needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-527-discharge-air-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-206-co2-concentration-setpoint
  - http://qudt.org/vocab/unit/PPM on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-206-co2-concentration-setpoint needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/MoleFraction on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-206-co2-concentration-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-504-reheat-coil-valve-position
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-504-reheat-coil-valve-position needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-504-reheat-coil-valve-position needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-529-damper-command
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-529-damper-command needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-529-damper-command needs to be a http://qudt.org/schema/qudt/Unit
  - http://data.ashrae.org/standard223#EnumerationKind-Position on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-529-damper-command needs to be a http://data.ashrae.org/standard223#EnumerationKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-201-heating-setpoint
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-201-heating-setpoint needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-201-heating-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-206-cooling-setpoint
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-206-cooling-setpoint needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-206-cooling-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-206-co2-concentration
  - http://qudt.org/vocab/unit/PPM on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-206-co2-concentration needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/MoleFraction on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-206-co2-concentration needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#Numerical-NumberOfElectricalPhases
  - http://qudt.org/vocab/quantitykind/Dimensionless on http://data.ashrae.org/standard223#Numerical-NumberOfElectricalPhases needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/quantitykind/Dimensionless on http://data.ashrae.org/standard223#Numerical-NumberOfElectricalPhases needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-519-reheat-coil
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-519-reheat-coil expected at least 1 instance(s) of ns1:HotWaterValve on path ns2:connectedTo
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-519-reheat-coil expected at least 1 instance(s) of ns1:HotWaterValve on path ns2:connectedTo
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-528-damper-position
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-528-damper-position needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-528-damper-position needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-522-discharge-air-flow
  - http://qudt.org/vocab/unit/FT3-PER-MIN on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-522-discharge-air-flow needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-522-discharge-air-flow needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-536-reheat-coil-valve-command
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-536-reheat-coil-valve-command needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-536-reheat-coil-valve-command needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://data.ashrae.org/standard223#EnumerationKind-Position on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-536-reheat-coil-valve-command needs to be a http://data.ashrae.org/standard223#EnumerationKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-313-co2-concentration-setpoint
  - http://qudt.org/vocab/quantitykind/MoleFraction on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-313-co2-concentration-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PPM on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-313-co2-concentration-setpoint needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-503-reheat-coil
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-503-reheat-coil expected at least 1 instance(s) of ns1:HotWaterValve on path ns2:connectedTo
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-503-reheat-coil expected at least 1 instance(s) of ns1:HotWaterValve on path ns2:connectedTo
http://data.ashrae.org/standard223#Voltage-480V
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-480V needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-480V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-202-co2-concentration-setpoint
  - http://qudt.org/vocab/unit/PPM on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-202-co2-concentration-setpoint needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/MoleFraction on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-202-co2-concentration-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#Voltage-120V
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-120V needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-120V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-527-heating-pid-output
  - http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-527-heating-pid-output needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Dimensionless on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-527-heating-pid-output needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-506-discharge-air-flow
  - http://qudt.org/vocab/unit/FT3-PER-MIN on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-506-discharge-air-flow needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-506-discharge-air-flow needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-519-discharge-air-flow
  - http://qudt.org/vocab/unit/FT3-PER-MIN on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-519-discharge-air-flow needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-519-discharge-air-flow needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-512-reheat-coil-valve-position
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-512-reheat-coil-valve-position needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-512-reheat-coil-valve-position needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-ea-damper-position
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-ea-damper-position needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-ea-damper-position needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-509-damper-command
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-509-damper-command needs to be a http://qudt.org/schema/qudt/Unit
  - http://data.ashrae.org/standard223#EnumerationKind-Position on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-509-damper-command needs to be a http://data.ashrae.org/standard223#EnumerationKind
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-509-damper-command needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-supply-duct-static-pressure-setpoint
  - http://qudt.org/vocab/quantitykind/Pressure on http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-supply-duct-static-pressure-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/IN_H2O on http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-supply-duct-static-pressure-setpoint needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223#Voltage-380V
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-380V needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-380V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-520-damper-command
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-520-damper-command needs to be a http://qudt.org/schema/qudt/Unit
  - http://data.ashrae.org/standard223#EnumerationKind-Position on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-520-damper-command needs to be a http://data.ashrae.org/standard223#EnumerationKind
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-520-damper-command needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-515-discharge-air-temp
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-515-discharge-air-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-515-discharge-air-temp needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-203-temp
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-203-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-203-temp needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-501-damper-position
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-501-damper-position needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-501-damper-position needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-304-co2-concentration-setpoint
  - http://qudt.org/vocab/unit/PPM on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-304-co2-concentration-setpoint needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/MoleFraction on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-304-co2-concentration-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-htg-coil-valve-command
  - http://data.ashrae.org/standard223#EnumerationKind-Position on http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-htg-coil-valve-command needs to be a http://data.ashrae.org/standard223#EnumerationKind
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-htg-coil-valve-command needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-htg-coil-valve-command needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-525-cooling-pid-output
  - http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-525-cooling-pid-output needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Dimensionless on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-525-cooling-pid-output needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-525-reheat-coil-valve-command
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-525-reheat-coil-valve-command needs to be a http://qudt.org/schema/qudt/Unit
  - http://data.ashrae.org/standard223#EnumerationKind-Position on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-525-reheat-coil-valve-command needs to be a http://data.ashrae.org/standard223#EnumerationKind
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-525-reheat-coil-valve-command needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-524-reheat-coil-valve-command
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-524-reheat-coil-valve-command needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-524-reheat-coil-valve-command needs to be a http://qudt.org/schema/qudt/Unit
  - http://data.ashrae.org/standard223#EnumerationKind-Position on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-524-reheat-coil-valve-command needs to be a http://data.ashrae.org/standard223#EnumerationKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-204-co2-concentration-setpoint
  - http://qudt.org/vocab/unit/PPM on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-204-co2-concentration-setpoint needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/MoleFraction on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-204-co2-concentration-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-101-temp
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-101-temp needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-101-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-sa-flow
  - http://qudt.org/vocab/unit/FT3-PER-MIN on http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-sa-flow needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-sa-flow needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-525-damper-position
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-525-damper-position needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-525-damper-position needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-528-reheat-coil-supply-water-temp
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-528-reheat-coil-supply-water-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-528-reheat-coil-supply-water-temp needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-504-cooling-pid-output
  - http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-504-cooling-pid-output needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Dimensionless on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-504-cooling-pid-output needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-503-heating-pid-output
  - http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-503-heating-pid-output needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Dimensionless on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-503-heating-pid-output needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-504-reheat-coil
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-504-reheat-coil expected at least 1 instance(s) of ns1:HotWaterValve on path ns2:connectedTo
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-504-reheat-coil expected at least 1 instance(s) of ns1:HotWaterValve on path ns2:connectedTo
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-536-reheat-coil-return-water-temp
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-536-reheat-coil-return-water-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-536-reheat-coil-return-water-temp needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-501-reheat-coil-supply-water-temp
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-501-reheat-coil-supply-water-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-501-reheat-coil-supply-water-temp needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-510-reheat-coil-valve-position
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-510-reheat-coil-valve-position needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-510-reheat-coil-valve-position needs to be a http://qudt.org/schema/qudt/QuantityKind
nbfb310f75f4e40b4a199574776661969b2346
  - http://qudt.org/vocab/quantitykind/Temperature on nbfb310f75f4e40b4a199574776661969b2346 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-301-cooling-setpoint
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-301-cooling-setpoint needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-301-cooling-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-504-reheat-coil-valve-command
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-504-reheat-coil-valve-command needs to be a http://qudt.org/schema/qudt/Unit
  - http://data.ashrae.org/standard223#EnumerationKind-Position on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-504-reheat-coil-valve-command needs to be a http://data.ashrae.org/standard223#EnumerationKind
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-504-reheat-coil-valve-command needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-524-reheat-coil
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-524-reheat-coil expected at least 1 instance(s) of ns1:HotWaterValve on path ns2:connectedTo
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-524-reheat-coil expected at least 1 instance(s) of ns1:HotWaterValve on path ns2:connectedTo
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-314-co2-concentration
  - http://qudt.org/vocab/quantitykind/MoleFraction on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-314-co2-concentration needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PPM on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-314-co2-concentration needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-116-heating-setpoint
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-116-heating-setpoint needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-116-heating-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-527-reheat-coil-valve-position
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-527-reheat-coil-valve-position needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-527-reheat-coil-valve-position needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-540-damper-position
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-540-damper-position needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-540-damper-position needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-530-discharge-air-flow
  - http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-530-discharge-air-flow needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/FT3-PER-MIN on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-530-discharge-air-flow needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-colder-chilled-water-requests
  - http://data.ashrae.org/standard223#EnumerationKind-HVACOperatingMode on http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-colder-chilled-water-requests needs to be a http://data.ashrae.org/standard223#EnumerationKind
http://data.ashrae.org/standard223#DCPositiveVoltage-3.0V
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#DCPositiveVoltage-3.0V needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#DCPositiveVoltage-3.0V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-212-co2-concentration
  - http://qudt.org/vocab/unit/PPM on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-212-co2-concentration needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/MoleFraction on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-212-co2-concentration needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#LineLineVoltage-6600V
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineLineVoltage-6600V needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineLineVoltage-6600V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-512-damper-position
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-512-damper-position needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-512-damper-position needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-203-cooling-setpoint
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-203-cooling-setpoint needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-203-cooling-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-207-temp
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-207-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-207-temp needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-533-reheat-coil
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-533-reheat-coil expected at least 1 instance(s) of ns1:HotWaterValve on path ns2:connectedTo
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-533-reheat-coil expected at least 1 instance(s) of ns1:HotWaterValve on path ns2:connectedTo
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-202-temp
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-202-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-202-temp needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-201-cooling-setpoint
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-201-cooling-setpoint needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-201-cooling-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-539-discharge-air-flow
  - http://qudt.org/vocab/unit/FT3-PER-MIN on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-539-discharge-air-flow needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-539-discharge-air-flow needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#Voltage-3810V
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-3810V needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-3810V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-507-reheat-coil-return-water-temp
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-507-reheat-coil-return-water-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-507-reheat-coil-return-water-temp needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223#Voltage-3300V
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-3300V needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-3300V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-309-co2-concentration
  - http://qudt.org/vocab/quantitykind/MoleFraction on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-309-co2-concentration needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PPM on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-309-co2-concentration needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-sa-temp-setpoint
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-sa-temp-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-sa-temp-setpoint needs to be a http://qudt.org/schema/qudt/Unit
nbfb310f75f4e40b4a199574776661969b1195
  - http://qudt.org/vocab/quantitykind/VolumeFraction on nbfb310f75f4e40b4a199574776661969b1195 needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PERCENT on nbfb310f75f4e40b4a199574776661969b1195 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-514-discharge-air-flow
  - http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-514-discharge-air-flow needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/FT3-PER-MIN on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-514-discharge-air-flow needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223#LineLineVoltage-6000V
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineLineVoltage-6000V needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineLineVoltage-6000V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#Numerical-LineLineVoltage
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Numerical-LineLineVoltage needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Numerical-LineLineVoltage needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#DCNegativeVoltage-6.0V
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#DCNegativeVoltage-6.0V needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#DCNegativeVoltage-6.0V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-510-reheat-coil-valve-command
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-510-reheat-coil-valve-command needs to be a http://qudt.org/schema/qudt/Unit
  - http://data.ashrae.org/standard223#EnumerationKind-Position on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-510-reheat-coil-valve-command needs to be a http://data.ashrae.org/standard223#EnumerationKind
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-510-reheat-coil-valve-command needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-103-temp
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-103-temp needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-103-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-oa-temp
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-oa-temp needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-oa-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#LineNeutralVoltage-139V
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineNeutralVoltage-139V needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineNeutralVoltage-139V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-518-reheat-coil
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-518-reheat-coil expected at least 1 instance(s) of ns1:HotWaterValve on path ns2:connectedTo
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-518-reheat-coil expected at least 1 instance(s) of ns1:HotWaterValve on path ns2:connectedTo
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-521-heating-pid-output
  - http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-521-heating-pid-output needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Dimensionless on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-521-heating-pid-output needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-518-cooling-pid-output
  - http://qudt.org/vocab/quantitykind/Dimensionless on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-518-cooling-pid-output needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-518-cooling-pid-output needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-310-heating-setpoint
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-310-heating-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-310-heating-setpoint needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-508-discharge-air-temp
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-508-discharge-air-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-508-discharge-air-temp needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-109-co2-concentration-setpoint
  - http://qudt.org/vocab/unit/PPM on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-109-co2-concentration-setpoint needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/MoleFraction on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-109-co2-concentration-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-303-heating-setpoint
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-303-heating-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-303-heating-setpoint needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-518-reheat-coil-valve-command
  - http://data.ashrae.org/standard223#EnumerationKind-Position on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-518-reheat-coil-valve-command needs to be a http://data.ashrae.org/standard223#EnumerationKind
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-518-reheat-coil-valve-command needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-518-reheat-coil-valve-command needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-313-cooling-setpoint
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-313-cooling-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-313-cooling-setpoint needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-313-co2-concentration
  - http://qudt.org/vocab/unit/PPM on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-313-co2-concentration needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/MoleFraction on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-313-co2-concentration needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-526-cooling-pid-output
  - http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-526-cooling-pid-output needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Dimensionless on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-526-cooling-pid-output needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-106-temp
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-106-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-106-temp needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-501-reheat-coil-valve-position
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-501-reheat-coil-valve-position needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-501-reheat-coil-valve-position needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-505-reheat-coil
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-505-reheat-coil expected at least 1 instance(s) of ns1:HotWaterValve on path ns2:connectedTo
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-505-reheat-coil expected at least 1 instance(s) of ns1:HotWaterValve on path ns2:connectedTo
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-310-temp
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-310-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-310-temp needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-205-temp
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-205-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-205-temp needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-540-cooling-pid-output
  - http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-540-cooling-pid-output needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Dimensionless on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-540-cooling-pid-output needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-531-discharge-air-flow
  - http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-531-discharge-air-flow needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/FT3-PER-MIN on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-531-discharge-air-flow needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-535-heating-pid-output
  - http://qudt.org/vocab/quantitykind/Dimensionless on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-535-heating-pid-output needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-535-heating-pid-output needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223#Voltage-2400V
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-2400V needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-2400V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-508-damper-command
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-508-damper-command needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-508-damper-command needs to be a http://qudt.org/schema/qudt/Unit
  - http://data.ashrae.org/standard223#EnumerationKind-Position on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-508-damper-command needs to be a http://data.ashrae.org/standard223#EnumerationKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-513-heating-pid-output
  - http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-513-heating-pid-output needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Dimensionless on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-513-heating-pid-output needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-115-co2-concentration
  - http://qudt.org/vocab/quantitykind/MoleFraction on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-115-co2-concentration needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PPM on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-115-co2-concentration needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-531-reheat-coil-valve-position
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-531-reheat-coil-valve-position needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-531-reheat-coil-valve-position needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-501-cooling-pid-output
  - http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-501-cooling-pid-output needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Dimensionless on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-501-cooling-pid-output needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-214-co2-concentration-setpoint
  - http://qudt.org/vocab/quantitykind/MoleFraction on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-214-co2-concentration-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PPM on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-214-co2-concentration-setpoint needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-513-reheat-coil-supply-water-temp
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-513-reheat-coil-supply-water-temp needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-513-reheat-coil-supply-water-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-526-damper-command
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-526-damper-command needs to be a http://qudt.org/schema/qudt/Unit
  - http://data.ashrae.org/standard223#EnumerationKind-Position on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-526-damper-command needs to be a http://data.ashrae.org/standard223#EnumerationKind
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-526-damper-command needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-537-discharge-air-temp
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-537-discharge-air-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-537-discharge-air-temp needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-sa-fan-power
  - http://qudt.org/vocab/quantitykind/ElectricPower on http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-sa-fan-power needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/W on http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-sa-fan-power needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-515-reheat-coil-valve-position
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-515-reheat-coil-valve-position needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-515-reheat-coil-valve-position needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-309-heating-setpoint
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-309-heating-setpoint needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-309-heating-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-511-discharge-air-temp
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-511-discharge-air-temp needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-511-discharge-air-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-515-heating-pid-output
  - http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-515-heating-pid-output needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Dimensionless on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-515-heating-pid-output needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-515-damper-command
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-515-damper-command needs to be a http://qudt.org/schema/qudt/Unit
  - http://data.ashrae.org/standard223#EnumerationKind-Position on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-515-damper-command needs to be a http://data.ashrae.org/standard223#EnumerationKind
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-515-damper-command needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-524-heating-pid-output
  - http://qudt.org/vocab/quantitykind/Dimensionless on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-524-heating-pid-output needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-524-heating-pid-output needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-520-discharge-air-temp
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-520-discharge-air-temp needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-520-discharge-air-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-535-discharge-air-temp
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-535-discharge-air-temp needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-535-discharge-air-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-ra-fan-start-status
  - http://data.ashrae.org/standard223#EnumerationKind-OnOff on http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-ra-fan-start-status needs to be a http://data.ashrae.org/standard223#EnumerationKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-213-co2-concentration-setpoint
  - http://qudt.org/vocab/quantitykind/MoleFraction on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-213-co2-concentration-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PPM on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-213-co2-concentration-setpoint needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-517-reheat-coil
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-517-reheat-coil expected at least 1 instance(s) of ns1:HotWaterValve on path ns2:connectedTo
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-517-reheat-coil expected at least 1 instance(s) of ns1:HotWaterValve on path ns2:connectedTo
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-514-cooling-pid-output
  - http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-514-cooling-pid-output needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Dimensionless on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-514-cooling-pid-output needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-506-damper-position
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-506-damper-position needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-506-damper-position needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-524-discharge-air-flow
  - http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-524-discharge-air-flow needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/FT3-PER-MIN on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-524-discharge-air-flow needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-540-reheat-coil-return-water-temp
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-540-reheat-coil-return-water-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-540-reheat-coil-return-water-temp needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-115-co2-concentration-setpoint
  - http://qudt.org/vocab/unit/PPM on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-115-co2-concentration-setpoint needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/MoleFraction on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-115-co2-concentration-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-502-discharge-air-temp
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-502-discharge-air-temp needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-502-discharge-air-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
nbfb310f75f4e40b4a199574776661969b662
  - http://qudt.org/vocab/quantitykind/VolumeFraction on nbfb310f75f4e40b4a199574776661969b662 needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PERCENT on nbfb310f75f4e40b4a199574776661969b662 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-110-co2-concentration-setpoint
  - http://qudt.org/vocab/quantitykind/MoleFraction on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-110-co2-concentration-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PPM on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-110-co2-concentration-setpoint needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-522-reheat-coil
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-522-reheat-coil expected at least 1 instance(s) of ns1:HotWaterValve on path ns2:connectedTo
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-522-reheat-coil expected at least 1 instance(s) of ns1:HotWaterValve on path ns2:connectedTo
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-533-reheat-coil-return-water-temp
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-533-reheat-coil-return-water-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-533-reheat-coil-return-water-temp needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-513-damper-position
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-513-damper-position needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-513-damper-position needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-504-discharge-air-temp
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-504-discharge-air-temp needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-504-discharge-air-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-531-cooling-pid-output
  - http://qudt.org/vocab/quantitykind/Dimensionless on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-531-cooling-pid-output needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-531-cooling-pid-output needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223#DCPositiveVoltage-5.0V
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#DCPositiveVoltage-5.0V needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#DCPositiveVoltage-5.0V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-528-heating-pid-output
  - http://qudt.org/vocab/quantitykind/Dimensionless on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-528-heating-pid-output needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-528-heating-pid-output needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-511-reheat-coil-valve-command
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-511-reheat-coil-valve-command needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-511-reheat-coil-valve-command needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://data.ashrae.org/standard223#EnumerationKind-Position on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-511-reheat-coil-valve-command needs to be a http://data.ashrae.org/standard223#EnumerationKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-517-heating-pid-output
  - http://qudt.org/vocab/quantitykind/Dimensionless on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-517-heating-pid-output needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-517-heating-pid-output needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-508-discharge-air-flow
  - http://qudt.org/vocab/unit/FT3-PER-MIN on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-508-discharge-air-flow needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-508-discharge-air-flow needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-538-reheat-coil-supply-water-temp
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-538-reheat-coil-supply-water-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-538-reheat-coil-supply-water-temp needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-514-reheat-coil-valve-position
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-514-reheat-coil-valve-position needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-514-reheat-coil-valve-position needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-532-damper-position
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-532-damper-position needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-532-damper-position needs to be a http://qudt.org/schema/qudt/Unit
nbfb310f75f4e40b4a199574776661969b2854
  - http://qudt.org/vocab/quantitykind/VolumeFraction on nbfb310f75f4e40b4a199574776661969b2854 needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PERCENT on nbfb310f75f4e40b4a199574776661969b2854 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-310-co2-concentration-setpoint
  - http://qudt.org/vocab/quantitykind/MoleFraction on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-310-co2-concentration-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PPM on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-310-co2-concentration-setpoint needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-302-co2-concentration-setpoint
  - http://qudt.org/vocab/quantitykind/MoleFraction on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-302-co2-concentration-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PPM on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-302-co2-concentration-setpoint needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-534-reheat-coil
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-534-reheat-coil expected at least 1 instance(s) of ns1:HotWaterValve on path ns2:connectedTo
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-534-reheat-coil expected at least 1 instance(s) of ns1:HotWaterValve on path ns2:connectedTo
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-114-temp
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-114-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-114-temp needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-208-co2-concentration
  - http://qudt.org/vocab/unit/PPM on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-208-co2-concentration needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/MoleFraction on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-208-co2-concentration needs to be a http://qudt.org/schema/qudt/QuantityKind
nbfb310f75f4e40b4a199574776661969b425
  - http://qudt.org/vocab/quantitykind/Temperature on nbfb310f75f4e40b4a199574776661969b425 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#Numerical-LineNeutralVoltage
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Numerical-LineNeutralVoltage needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Numerical-LineNeutralVoltage needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-509-discharge-air-flow
  - http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-509-discharge-air-flow needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/FT3-PER-MIN on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-509-discharge-air-flow needs to be a http://qudt.org/schema/qudt/Unit
nbfb310f75f4e40b4a199574776661969b2201
  - http://qudt.org/vocab/unit/PERCENT on nbfb310f75f4e40b4a199574776661969b2201 needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/VolumeFraction on nbfb310f75f4e40b4a199574776661969b2201 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-308-cooling-setpoint
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-308-cooling-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-308-cooling-setpoint needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-532-discharge-air-flow
  - http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-532-discharge-air-flow needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/FT3-PER-MIN on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-532-discharge-air-flow needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-529-reheat-coil-return-water-temp
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-529-reheat-coil-return-water-temp needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-529-reheat-coil-return-water-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-538-reheat-coil-valve-position
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-538-reheat-coil-valve-position needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-538-reheat-coil-valve-position needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-504-heating-pid-output
  - http://qudt.org/vocab/quantitykind/Dimensionless on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-504-heating-pid-output needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-504-heating-pid-output needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-515-discharge-air-flow
  - http://qudt.org/vocab/unit/FT3-PER-MIN on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-515-discharge-air-flow needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-515-discharge-air-flow needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-117-heating-setpoint
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-117-heating-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-117-heating-setpoint needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-212-co2-concentration-setpoint
  - http://qudt.org/vocab/quantitykind/MoleFraction on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-212-co2-concentration-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PPM on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-212-co2-concentration-setpoint needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-529-discharge-air-temp
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-529-discharge-air-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-529-discharge-air-temp needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223#Voltage-277V
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-277V needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-277V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-ra-fan-speed-status
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-ra-fan-speed-status needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-ra-fan-speed-status needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#DCNegativeVoltage-24.0V
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#DCNegativeVoltage-24.0V needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#DCNegativeVoltage-24.0V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-523-reheat-coil-return-water-temp
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-523-reheat-coil-return-water-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-523-reheat-coil-return-water-temp needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-104-heating-setpoint
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-104-heating-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-104-heating-setpoint needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223#LineLineVoltage-380V
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineLineVoltage-380V needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#LineLineVoltage-380V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-520-reheat-coil
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-520-reheat-coil expected at least 1 instance(s) of ns1:HotWaterValve on path ns2:connectedTo
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-520-reheat-coil expected at least 1 instance(s) of ns1:HotWaterValve on path ns2:connectedTo
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-307-cooling-setpoint
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-307-cooling-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-307-cooling-setpoint needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-511-heating-pid-output
  - http://qudt.org/vocab/quantitykind/Dimensionless on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-511-heating-pid-output needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-511-heating-pid-output needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-112-cooling-setpoint
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-112-cooling-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-112-cooling-setpoint needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-111-temp
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-111-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-111-temp needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-204-heating-setpoint
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-204-heating-setpoint needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-204-heating-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-htg-coil
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-htg-coil expected at least 1 instance(s) of ns1:HotWaterValve on path ns2:connectedTo
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-htg-coil expected at least 1 instance(s) of ns1:HotWaterValve on path ns2:connectedTo
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-521-reheat-coil-return-water-temp
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-521-reheat-coil-return-water-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-521-reheat-coil-return-water-temp needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-204-cooling-setpoint
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-204-cooling-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-204-cooling-setpoint needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-313-temp
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-313-temp needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-313-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-523-damper-command
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-523-damper-command needs to be a http://qudt.org/schema/qudt/Unit
  - http://data.ashrae.org/standard223#EnumerationKind-Position on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-523-damper-command needs to be a http://data.ashrae.org/standard223#EnumerationKind
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-523-damper-command needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-clg-coil-valve-position
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-clg-coil-valve-position needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-clg-coil-valve-position needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-206-temp
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-206-temp needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-206-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-213-temp
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-213-temp needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-213-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-511-discharge-air-flow
  - http://qudt.org/vocab/unit/FT3-PER-MIN on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-511-discharge-air-flow needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-511-discharge-air-flow needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#Voltage-5770V
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-5770V needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-5770V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-538-discharge-air-flow
  - http://qudt.org/vocab/unit/FT3-PER-MIN on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-538-discharge-air-flow needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-538-discharge-air-flow needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-518-discharge-air-flow
  - http://qudt.org/vocab/unit/FT3-PER-MIN on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-518-discharge-air-flow needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-518-discharge-air-flow needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-504-damper-command
  - http://data.ashrae.org/standard223#EnumerationKind-Position on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-504-damper-command needs to be a http://data.ashrae.org/standard223#EnumerationKind
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-504-damper-command needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-504-damper-command needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-118-cooling-setpoint
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-118-cooling-setpoint needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-118-cooling-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-202-co2-concentration
  - http://qudt.org/vocab/unit/PPM on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-202-co2-concentration needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/MoleFraction on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-202-co2-concentration needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-110-co2-concentration
  - http://qudt.org/vocab/unit/PPM on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-110-co2-concentration needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/MoleFraction on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-110-co2-concentration needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-535-reheat-coil-return-water-temp
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-535-reheat-coil-return-water-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-535-reheat-coil-return-water-temp needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-538-reheat-coil
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-538-reheat-coil expected at least 1 instance(s) of ns1:HotWaterValve on path ns2:connectedTo
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-538-reheat-coil expected at least 1 instance(s) of ns1:HotWaterValve on path ns2:connectedTo
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-509-reheat-coil
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-509-reheat-coil expected at least 1 instance(s) of ns1:HotWaterValve on path ns2:connectedTo
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-509-reheat-coil expected at least 1 instance(s) of ns1:HotWaterValve on path ns2:connectedTo
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-516-reheat-coil-return-water-temp
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-516-reheat-coil-return-water-temp needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-516-reheat-coil-return-water-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-533-reheat-coil-valve-command
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-533-reheat-coil-valve-command needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-533-reheat-coil-valve-command needs to be a http://qudt.org/schema/qudt/Unit
  - http://data.ashrae.org/standard223#EnumerationKind-Position on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-533-reheat-coil-valve-command needs to be a http://data.ashrae.org/standard223#EnumerationKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-109-cooling-setpoint
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-109-cooling-setpoint needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-109-cooling-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-522-reheat-coil-return-water-temp
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-522-reheat-coil-return-water-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-522-reheat-coil-return-water-temp needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-531-reheat-coil-supply-water-temp
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-531-reheat-coil-supply-water-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-531-reheat-coil-supply-water-temp needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-504-reheat-coil-supply-water-temp
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-504-reheat-coil-supply-water-temp needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-504-reheat-coil-supply-water-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-106-heating-setpoint
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-106-heating-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-106-heating-setpoint needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-307-co2-concentration
  - http://qudt.org/vocab/quantitykind/MoleFraction on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-307-co2-concentration needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PPM on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-307-co2-concentration needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-515-cooling-pid-output
  - http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-515-cooling-pid-output needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Dimensionless on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-515-cooling-pid-output needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-104-temp
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-104-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-104-temp needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-537-discharge-air-flow
  - http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-537-discharge-air-flow needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/FT3-PER-MIN on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-537-discharge-air-flow needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-531-damper-command
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-531-damper-command needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-531-damper-command needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://data.ashrae.org/standard223#EnumerationKind-Position on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-531-damper-command needs to be a http://data.ashrae.org/standard223#EnumerationKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-504-discharge-air-flow
  - http://qudt.org/vocab/unit/FT3-PER-MIN on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-504-discharge-air-flow needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-504-discharge-air-flow needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-503-reheat-coil-valve-command
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-503-reheat-coil-valve-command needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://data.ashrae.org/standard223#EnumerationKind-Position on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-503-reheat-coil-valve-command needs to be a http://data.ashrae.org/standard223#EnumerationKind
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-503-reheat-coil-valve-command needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-514-heating-pid-output
  - http://qudt.org/vocab/quantitykind/Dimensionless on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-514-heating-pid-output needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-514-heating-pid-output needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223#Frequency-60Hz
  - http://qudt.org/vocab/quantitykind/Frequency on http://data.ashrae.org/standard223#Frequency-60Hz needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/quantitykind/Frequency on http://data.ashrae.org/standard223#Frequency-60Hz needs to be a http://qudt.org/schema/qudt/QuantityKind
nbfb310f75f4e40b4a199574776661969b2468
  - http://qudt.org/vocab/quantitykind/Temperature on nbfb310f75f4e40b4a199574776661969b2468 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-525-discharge-air-temp
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-525-discharge-air-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-525-discharge-air-temp needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-118-temp
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-118-temp needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-118-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-521-discharge-air-temp
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-521-discharge-air-temp needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-521-discharge-air-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-539-heating-pid-output
  - http://qudt.org/vocab/quantitykind/Dimensionless on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-539-heating-pid-output needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-539-heating-pid-output needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-sa-temp
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-sa-temp needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-sa-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-215-co2-concentration
  - http://qudt.org/vocab/quantitykind/MoleFraction on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-215-co2-concentration needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PPM on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-215-co2-concentration needs to be a http://qudt.org/schema/qudt/Unit
nbfb310f75f4e40b4a199574776661969b362
  - http://qudt.org/vocab/unit/PERCENT on nbfb310f75f4e40b4a199574776661969b362 needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/VolumeFraction on nbfb310f75f4e40b4a199574776661969b362 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-527-reheat-coil
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-527-reheat-coil expected at least 1 instance(s) of ns1:HotWaterValve on path ns2:connectedTo
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-527-reheat-coil expected at least 1 instance(s) of ns1:HotWaterValve on path ns2:connectedTo
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-510-reheat-coil-return-water-temp
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-510-reheat-coil-return-water-temp needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-510-reheat-coil-return-water-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-539-reheat-coil-supply-water-temp
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-539-reheat-coil-supply-water-temp needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-539-reheat-coil-supply-water-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-534-heating-pid-output
  - http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-534-heating-pid-output needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Dimensionless on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-534-heating-pid-output needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-530-reheat-coil-valve-command
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-530-reheat-coil-valve-command needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-530-reheat-coil-valve-command needs to be a http://qudt.org/schema/qudt/Unit
  - http://data.ashrae.org/standard223#EnumerationKind-Position on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-530-reheat-coil-valve-command needs to be a http://data.ashrae.org/standard223#EnumerationKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-534-reheat-coil-return-water-temp
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-534-reheat-coil-return-water-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-534-reheat-coil-return-water-temp needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-508-heating-pid-output
  - http://qudt.org/vocab/quantitykind/Dimensionless on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-508-heating-pid-output needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-508-heating-pid-output needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-505-reheat-coil-valve-position
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-505-reheat-coil-valve-position needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-505-reheat-coil-valve-position needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-212-cooling-setpoint
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-212-cooling-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-212-cooling-setpoint needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-537-damper-command
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-537-damper-command needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-537-damper-command needs to be a http://qudt.org/schema/qudt/Unit
  - http://data.ashrae.org/standard223#EnumerationKind-Position on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-537-damper-command needs to be a http://data.ashrae.org/standard223#EnumerationKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-515-reheat-coil-return-water-temp
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-515-reheat-coil-return-water-temp needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-515-reheat-coil-return-water-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-314-heating-setpoint
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-314-heating-setpoint needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-314-heating-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-524-damper-command
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-524-damper-command needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-524-damper-command needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://data.ashrae.org/standard223#EnumerationKind-Position on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-524-damper-command needs to be a http://data.ashrae.org/standard223#EnumerationKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-519-heating-pid-output
  - http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-519-heating-pid-output needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Dimensionless on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-519-heating-pid-output needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-508-reheat-coil-return-water-temp
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-508-reheat-coil-return-water-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-508-reheat-coil-return-water-temp needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-203-heating-setpoint
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-203-heating-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-203-heating-setpoint needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-517-discharge-air-flow
  - http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-517-discharge-air-flow needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/FT3-PER-MIN on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-517-discharge-air-flow needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-314-cooling-setpoint
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-314-cooling-setpoint needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-314-cooling-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-518-reheat-coil-supply-water-temp
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-518-reheat-coil-supply-water-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-518-reheat-coil-supply-water-temp needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-clg-coil
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-clg-coil expected at least 1 instance(s) of ns1:ChilledWaterValve on path ns2:connectedTo
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-529-discharge-air-flow
  - http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-529-discharge-air-flow needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/FT3-PER-MIN on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-529-discharge-air-flow needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-540-discharge-air-temp
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-540-discharge-air-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-540-discharge-air-temp needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-502-discharge-air-flow
  - http://qudt.org/vocab/unit/FT3-PER-MIN on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-502-discharge-air-flow needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-502-discharge-air-flow needs to be a http://qudt.org/schema/qudt/QuantityKind
nbfb310f75f4e40b4a199574776661969b450
  - http://qudt.org/vocab/quantitykind/VolumeFraction on nbfb310f75f4e40b4a199574776661969b450 needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PERCENT on nbfb310f75f4e40b4a199574776661969b450 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-522-reheat-coil-valve-position
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-522-reheat-coil-valve-position needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-522-reheat-coil-valve-position needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-524-discharge-air-temp
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-524-discharge-air-temp needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-524-discharge-air-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-521-reheat-coil-valve-command
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-521-reheat-coil-valve-command needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-521-reheat-coil-valve-command needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://data.ashrae.org/standard223#EnumerationKind-Position on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-521-reheat-coil-valve-command needs to be a http://data.ashrae.org/standard223#EnumerationKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-103-heating-setpoint
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-103-heating-setpoint needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-103-heating-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-536-cooling-pid-output
  - http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-536-cooling-pid-output needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Dimensionless on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-536-cooling-pid-output needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-531-discharge-air-temp
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-531-discharge-air-temp needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-531-discharge-air-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-533-cooling-pid-output
  - http://qudt.org/vocab/quantitykind/Dimensionless on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-533-cooling-pid-output needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-533-cooling-pid-output needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-115-cooling-setpoint
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-115-cooling-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-115-cooling-setpoint needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-540-reheat-coil-supply-water-temp
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-540-reheat-coil-supply-water-temp needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-540-reheat-coil-supply-water-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-501-reheat-coil-return-water-temp
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-501-reheat-coil-return-water-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-501-reheat-coil-return-water-temp needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-511-reheat-coil-supply-water-temp
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-511-reheat-coil-supply-water-temp needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-511-reheat-coil-supply-water-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-537-heating-pid-output
  - http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-537-heating-pid-output needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Dimensionless on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-537-heating-pid-output needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-514-reheat-coil-return-water-temp
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-514-reheat-coil-return-water-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-514-reheat-coil-return-water-temp needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223#DCPositiveVoltage-48.0V
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#DCPositiveVoltage-48.0V needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#DCPositiveVoltage-48.0V needs to be a http://qudt.org/schema/qudt/QuantityKind
nbfb310f75f4e40b4a199574776661969b3358
  - http://qudt.org/vocab/quantitykind/Temperature on nbfb310f75f4e40b4a199574776661969b3358 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-521-discharge-air-flow
  - http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-521-discharge-air-flow needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/FT3-PER-MIN on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-521-discharge-air-flow needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-ra-fan
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-ra-fan expected at least 1 instance(s) of ns2:EnumeratedActuatableProperty on path ns2:hasProperty
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-ra-fan expected at least 1 instance(s) of ns2:QuantifiableActuatableProperty on path ns2:hasProperty
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-534-reheat-coil-supply-water-temp
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-534-reheat-coil-supply-water-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-534-reheat-coil-supply-water-temp needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-moisture-eliminator-differential-pressure
  - http://qudt.org/vocab/unit/IN_H2O on http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-moisture-eliminator-differential-pressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Pressure on http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-moisture-eliminator-differential-pressure needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-313-heating-setpoint
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-313-heating-setpoint needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-313-heating-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-530-reheat-coil-valve-position
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-530-reheat-coil-valve-position needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-530-reheat-coil-valve-position needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-htg-coil-supply-water-temp
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-htg-coil-supply-water-temp needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-htg-coil-supply-water-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-513-damper-command
  - http://data.ashrae.org/standard223#EnumerationKind-Position on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-513-damper-command needs to be a http://data.ashrae.org/standard223#EnumerationKind
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-513-damper-command needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-513-damper-command needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-310-co2-concentration
  - http://qudt.org/vocab/unit/PPM on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-310-co2-concentration needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/MoleFraction on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-310-co2-concentration needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-514-damper-command
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-514-damper-command needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-514-damper-command needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://data.ashrae.org/standard223#EnumerationKind-Position on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-514-damper-command needs to be a http://data.ashrae.org/standard223#EnumerationKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-112-temp
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-112-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-112-temp needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-508-reheat-coil-valve-position
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-508-reheat-coil-valve-position needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-508-reheat-coil-valve-position needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-114-cooling-setpoint
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-114-cooling-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-114-cooling-setpoint needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-538-damper-command
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-538-damper-command needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://data.ashrae.org/standard223#EnumerationKind-Position on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-538-damper-command needs to be a http://data.ashrae.org/standard223#EnumerationKind
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-538-damper-command needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-102-cooling-setpoint
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-102-cooling-setpoint needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-102-cooling-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-109-temp
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-109-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-109-temp needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-537-damper-position
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-537-damper-position needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-537-damper-position needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-526-discharge-air-temp
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-526-discharge-air-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-526-discharge-air-temp needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-114-heating-setpoint
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-114-heating-setpoint needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-114-heating-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-211-co2-concentration-setpoint
  - http://qudt.org/vocab/quantitykind/MoleFraction on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-211-co2-concentration-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PPM on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-211-co2-concentration-setpoint needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-311-temp
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-311-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-311-temp needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-506-reheat-coil-supply-water-temp
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-506-reheat-coil-supply-water-temp needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-506-reheat-coil-supply-water-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-501-heating-pid-output
  - http://qudt.org/vocab/quantitykind/Dimensionless on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-501-heating-pid-output needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-501-heating-pid-output needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-538-discharge-air-temp
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-538-discharge-air-temp needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-538-discharge-air-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-clg-coil-return-water-temp
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-clg-coil-return-water-temp needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-clg-coil-return-water-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-201-co2-concentration
  - http://qudt.org/vocab/unit/PPM on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-201-co2-concentration needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/MoleFraction on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-201-co2-concentration needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-215-cooling-setpoint
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-215-cooling-setpoint needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-215-cooling-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-531-damper-position
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-531-damper-position needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-531-damper-position needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-512-cooling-pid-output
  - http://qudt.org/vocab/quantitykind/Dimensionless on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-512-cooling-pid-output needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-512-cooling-pid-output needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-110-heating-setpoint
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-110-heating-setpoint needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-110-heating-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-312-heating-setpoint
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-312-heating-setpoint needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-312-heating-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
nbfb310f75f4e40b4a199574776661969b558
  - http://qudt.org/vocab/quantitykind/VolumeFraction on nbfb310f75f4e40b4a199574776661969b558 needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PERCENT on nbfb310f75f4e40b4a199574776661969b558 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-526-heating-pid-output
  - http://qudt.org/vocab/quantitykind/Dimensionless on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-526-heating-pid-output needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-526-heating-pid-output needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-533-reheat-coil-valve-position
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-533-reheat-coil-valve-position needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-533-reheat-coil-valve-position needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-312-temp
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-312-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-312-temp needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-512-reheat-coil-valve-command
  - http://data.ashrae.org/standard223#EnumerationKind-Position on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-512-reheat-coil-valve-command needs to be a http://data.ashrae.org/standard223#EnumerationKind
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-512-reheat-coil-valve-command needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-512-reheat-coil-valve-command needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-311-heating-setpoint
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-311-heating-setpoint needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-311-heating-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-521-reheat-coil-supply-water-temp
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-521-reheat-coil-supply-water-temp needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-521-reheat-coil-supply-water-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-540-reheat-coil
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-540-reheat-coil expected at least 1 instance(s) of ns1:HotWaterValve on path ns2:connectedTo
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-540-reheat-coil expected at least 1 instance(s) of ns1:HotWaterValve on path ns2:connectedTo
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-101-co2-concentration-setpoint
  - http://qudt.org/vocab/unit/PPM on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-101-co2-concentration-setpoint needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/MoleFraction on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-101-co2-concentration-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-519-discharge-air-temp
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-519-discharge-air-temp needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-519-discharge-air-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-104-co2-concentration-setpoint
  - http://qudt.org/vocab/unit/PPM on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-104-co2-concentration-setpoint needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/MoleFraction on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-104-co2-concentration-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-302-cooling-setpoint
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-302-cooling-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-302-cooling-setpoint needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-527-discharge-air-flow
  - http://qudt.org/vocab/quantitykind/VolumeFlowRate on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-527-discharge-air-flow needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/FT3-PER-MIN on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-527-discharge-air-flow needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-510-reheat-coil
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-510-reheat-coil expected at least 1 instance(s) of ns1:HotWaterValve on path ns2:connectedTo
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-510-reheat-coil expected at least 1 instance(s) of ns1:HotWaterValve on path ns2:connectedTo
http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-supply-duct-static-pressure
  - http://qudt.org/vocab/quantitykind/Pressure on http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-supply-duct-static-pressure needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/IN_H2O on http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-supply-duct-static-pressure needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223#Voltage-5V
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-5V needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#Voltage-5V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-526-reheat-coil-valve-command
  - http://data.ashrae.org/standard223#EnumerationKind-Position on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-526-reheat-coil-valve-command needs to be a http://data.ashrae.org/standard223#EnumerationKind
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-526-reheat-coil-valve-command needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-526-reheat-coil-valve-command needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223#DCNegativeVoltage-48.0V
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#DCNegativeVoltage-48.0V needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/quantitykind/Voltage on http://data.ashrae.org/standard223#DCNegativeVoltage-48.0V needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-214-cooling-setpoint
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-214-cooling-setpoint needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-214-cooling-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-516-reheat-coil-supply-water-temp
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-516-reheat-coil-supply-water-temp needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-516-reheat-coil-supply-water-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-507-reheat-coil-supply-water-temp
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-507-reheat-coil-supply-water-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-507-reheat-coil-supply-water-temp needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-529-damper-position
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-529-damper-position needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-529-damper-position needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-208-temp
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-208-temp needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-208-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-208-co2-concentration-setpoint
  - http://qudt.org/vocab/quantitykind/MoleFraction on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-208-co2-concentration-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PPM on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-208-co2-concentration-setpoint needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-117-co2-concentration
  - http://qudt.org/vocab/unit/PPM on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-117-co2-concentration needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/MoleFraction on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-117-co2-concentration needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-535-cooling-pid-output
  - http://qudt.org/vocab/quantitykind/Dimensionless on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-535-cooling-pid-output needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-535-cooling-pid-output needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-513-discharge-air-temp
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-513-discharge-air-temp needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-513-discharge-air-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-535-reheat-coil-supply-water-temp
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-535-reheat-coil-supply-water-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-535-reheat-coil-supply-water-temp needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-514-damper-position
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-514-damper-position needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-514-damper-position needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-522-reheat-coil-valve-command
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-522-reheat-coil-valve-command needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://data.ashrae.org/standard223#EnumerationKind-Position on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-522-reheat-coil-valve-command needs to be a http://data.ashrae.org/standard223#EnumerationKind
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-522-reheat-coil-valve-command needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-505-cooling-pid-output
  - http://qudt.org/vocab/unit/UNITLESS on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-505-cooling-pid-output needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Dimensionless on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-505-cooling-pid-output needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-108-heating-setpoint
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-108-heating-setpoint needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-108-heating-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-211-heating-setpoint
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-211-heating-setpoint needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-211-heating-setpoint needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-307-temp
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-307-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#zone-307-temp needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-513-reheat-coil-valve-position
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-513-reheat-coil-valve-position needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-513-reheat-coil-valve-position needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-534-discharge-air-temp
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-534-discharge-air-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-534-discharge-air-temp needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-516-discharge-air-temp
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-516-discharge-air-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-516-discharge-air-temp needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-525-damper-command
  - http://data.ashrae.org/standard223#EnumerationKind-Position on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-525-damper-command needs to be a http://data.ashrae.org/standard223#EnumerationKind
  - http://qudt.org/vocab/unit/PERCENT on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-525-damper-command needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/DimensionlessRatio on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-525-damper-command needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-530-reheat-coil-supply-water-temp
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-530-reheat-coil-supply-water-temp needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-530-reheat-coil-supply-water-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-527-reheat-coil-return-water-temp
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-527-reheat-coil-return-water-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-527-reheat-coil-return-water-temp needs to be a http://qudt.org/schema/qudt/Unit
nbfb310f75f4e40b4a199574776661969b1598
  - http://qudt.org/vocab/quantitykind/Temperature on nbfb310f75f4e40b4a199574776661969b1598 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-539-reheat-coil
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-539-reheat-coil expected at least 1 instance(s) of ns1:HotWaterValve on path ns2:connectedTo
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-539-reheat-coil expected at least 1 instance(s) of ns1:HotWaterValve on path ns2:connectedTo
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-522-discharge-air-temp
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-522-discharge-air-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-522-discharge-air-temp needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-504-reheat-coil-return-water-temp
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-504-reheat-coil-return-water-temp needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-504-reheat-coil-return-water-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-515-reheat-coil-supply-water-temp
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-515-reheat-coil-supply-water-temp needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-515-reheat-coil-supply-water-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-513-reheat-coil
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-513-reheat-coil expected at least 1 instance(s) of ns1:HotWaterValve on path ns2:connectedTo
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-513-reheat-coil expected at least 1 instance(s) of ns1:HotWaterValve on path ns2:connectedTo
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-510-reheat-coil-supply-water-temp
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-510-reheat-coil-supply-water-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-510-reheat-coil-supply-water-temp needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-505-discharge-air-temp
  - http://qudt.org/vocab/unit/DEG_C on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-505-discharge-air-temp needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Temperature on http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-505-discharge-air-temp needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-507-reheat-coil
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-507-reheat-coil expected at least 1 instance(s) of ns1:HotWaterValve on path ns2:connectedTo
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-507-reheat-coil expected at least 1 instance(s) of ns1:HotWaterValve on path ns2:connectedTo
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-534-reheat-coil-valve
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-534-reheat-coil-valve needs to match one of the following shapes: n1eec9117c951492c8d1dc465c711c4a5b46, n1eec9117c951492c8d1dc465c711c4a5b52
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-518-reheat-coil-valve
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-518-reheat-coil-valve needs to match one of the following shapes: n1eec9117c951492c8d1dc465c711c4a5b46, n1eec9117c951492c8d1dc465c711c4a5b52
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-517-reheat-coil-valve
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-517-reheat-coil-valve needs to match one of the following shapes: n1eec9117c951492c8d1dc465c711c4a5b46, n1eec9117c951492c8d1dc465c711c4a5b52
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-512-damper
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-512-damper needs to match one of the following shapes: n1eec9117c951492c8d1dc465c711c4a5b17, n1eec9117c951492c8d1dc465c711c4a5b23
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-510-reheat-coil-valve
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-510-reheat-coil-valve needs to match one of the following shapes: n1eec9117c951492c8d1dc465c711c4a5b46, n1eec9117c951492c8d1dc465c711c4a5b52
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-522-damper
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-522-damper needs to match one of the following shapes: n1eec9117c951492c8d1dc465c711c4a5b17, n1eec9117c951492c8d1dc465c711c4a5b23
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-539-reheat-coil-valve
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-539-reheat-coil-valve needs to match one of the following shapes: n1eec9117c951492c8d1dc465c711c4a5b46, n1eec9117c951492c8d1dc465c711c4a5b52
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-524-damper
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-524-damper needs to match one of the following shapes: n1eec9117c951492c8d1dc465c711c4a5b17, n1eec9117c951492c8d1dc465c711c4a5b23
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-529-damper
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-529-damper needs to match one of the following shapes: n1eec9117c951492c8d1dc465c711c4a5b17, n1eec9117c951492c8d1dc465c711c4a5b23
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-514-reheat-coil-valve
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-514-reheat-coil-valve needs to match one of the following shapes: n1eec9117c951492c8d1dc465c711c4a5b46, n1eec9117c951492c8d1dc465c711c4a5b52
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-507-damper
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-507-damper needs to match one of the following shapes: n1eec9117c951492c8d1dc465c711c4a5b17, n1eec9117c951492c8d1dc465c711c4a5b23
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-515-reheat-coil-valve
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-515-reheat-coil-valve needs to match one of the following shapes: n1eec9117c951492c8d1dc465c711c4a5b46, n1eec9117c951492c8d1dc465c711c4a5b52
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-501-reheat-coil-valve
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-501-reheat-coil-valve needs to match one of the following shapes: n1eec9117c951492c8d1dc465c711c4a5b46, n1eec9117c951492c8d1dc465c711c4a5b52
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-503-damper
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-503-damper needs to match one of the following shapes: n1eec9117c951492c8d1dc465c711c4a5b17, n1eec9117c951492c8d1dc465c711c4a5b23
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-537-reheat-coil-valve
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-537-reheat-coil-valve needs to match one of the following shapes: n1eec9117c951492c8d1dc465c711c4a5b46, n1eec9117c951492c8d1dc465c711c4a5b52
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-531-damper
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-531-damper needs to match one of the following shapes: n1eec9117c951492c8d1dc465c711c4a5b17, n1eec9117c951492c8d1dc465c711c4a5b23
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-505-damper
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-505-damper needs to match one of the following shapes: n1eec9117c951492c8d1dc465c711c4a5b17, n1eec9117c951492c8d1dc465c711c4a5b23
http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-ra-damper
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-ra-damper needs to match one of the following shapes: n1eec9117c951492c8d1dc465c711c4a5b17, n1eec9117c951492c8d1dc465c711c4a5b23
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-533-damper
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-533-damper needs to match one of the following shapes: n1eec9117c951492c8d1dc465c711c4a5b17, n1eec9117c951492c8d1dc465c711c4a5b23
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-531-reheat-coil-valve
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-531-reheat-coil-valve needs to match one of the following shapes: n1eec9117c951492c8d1dc465c711c4a5b46, n1eec9117c951492c8d1dc465c711c4a5b52
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-532-reheat-coil-valve
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-532-reheat-coil-valve needs to match one of the following shapes: n1eec9117c951492c8d1dc465c711c4a5b46, n1eec9117c951492c8d1dc465c711c4a5b52
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-502-damper
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-502-damper needs to match one of the following shapes: n1eec9117c951492c8d1dc465c711c4a5b17, n1eec9117c951492c8d1dc465c711c4a5b23
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-511-damper
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-511-damper needs to match one of the following shapes: n1eec9117c951492c8d1dc465c711c4a5b17, n1eec9117c951492c8d1dc465c711c4a5b23
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-535-reheat-coil-valve
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-535-reheat-coil-valve needs to match one of the following shapes: n1eec9117c951492c8d1dc465c711c4a5b46, n1eec9117c951492c8d1dc465c711c4a5b52
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-514-damper
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-514-damper needs to match one of the following shapes: n1eec9117c951492c8d1dc465c711c4a5b17, n1eec9117c951492c8d1dc465c711c4a5b23
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-516-reheat-coil-valve
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-516-reheat-coil-valve needs to match one of the following shapes: n1eec9117c951492c8d1dc465c711c4a5b46, n1eec9117c951492c8d1dc465c711c4a5b52
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-505-reheat-coil-valve
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-505-reheat-coil-valve needs to match one of the following shapes: n1eec9117c951492c8d1dc465c711c4a5b46, n1eec9117c951492c8d1dc465c711c4a5b52
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-511-reheat-coil-valve
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-511-reheat-coil-valve needs to match one of the following shapes: n1eec9117c951492c8d1dc465c711c4a5b46, n1eec9117c951492c8d1dc465c711c4a5b52
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-515-damper
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-515-damper needs to match one of the following shapes: n1eec9117c951492c8d1dc465c711c4a5b17, n1eec9117c951492c8d1dc465c711c4a5b23
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-509-reheat-coil-valve
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-509-reheat-coil-valve needs to match one of the following shapes: n1eec9117c951492c8d1dc465c711c4a5b46, n1eec9117c951492c8d1dc465c711c4a5b52
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-535-damper
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-535-damper needs to match one of the following shapes: n1eec9117c951492c8d1dc465c711c4a5b17, n1eec9117c951492c8d1dc465c711c4a5b23
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-526-reheat-coil-valve
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-526-reheat-coil-valve needs to match one of the following shapes: n1eec9117c951492c8d1dc465c711c4a5b46, n1eec9117c951492c8d1dc465c711c4a5b52
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-538-damper
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-538-damper needs to match one of the following shapes: n1eec9117c951492c8d1dc465c711c4a5b17, n1eec9117c951492c8d1dc465c711c4a5b23
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-523-reheat-coil-valve
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-523-reheat-coil-valve needs to match one of the following shapes: n1eec9117c951492c8d1dc465c711c4a5b46, n1eec9117c951492c8d1dc465c711c4a5b52
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-516-damper
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-516-damper needs to match one of the following shapes: n1eec9117c951492c8d1dc465c711c4a5b17, n1eec9117c951492c8d1dc465c711c4a5b23
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-529-reheat-coil-valve
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-529-reheat-coil-valve needs to match one of the following shapes: n1eec9117c951492c8d1dc465c711c4a5b46, n1eec9117c951492c8d1dc465c711c4a5b52
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-540-reheat-coil-valve
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-540-reheat-coil-valve needs to match one of the following shapes: n1eec9117c951492c8d1dc465c711c4a5b46, n1eec9117c951492c8d1dc465c711c4a5b52
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-523-damper
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-523-damper needs to match one of the following shapes: n1eec9117c951492c8d1dc465c711c4a5b17, n1eec9117c951492c8d1dc465c711c4a5b23
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-521-reheat-coil-valve
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-521-reheat-coil-valve needs to match one of the following shapes: n1eec9117c951492c8d1dc465c711c4a5b46, n1eec9117c951492c8d1dc465c711c4a5b52
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-534-damper
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-534-damper needs to match one of the following shapes: n1eec9117c951492c8d1dc465c711c4a5b17, n1eec9117c951492c8d1dc465c711c4a5b23
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-530-damper
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-530-damper needs to match one of the following shapes: n1eec9117c951492c8d1dc465c711c4a5b17, n1eec9117c951492c8d1dc465c711c4a5b23
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-532-damper
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-532-damper needs to match one of the following shapes: n1eec9117c951492c8d1dc465c711c4a5b17, n1eec9117c951492c8d1dc465c711c4a5b23
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-528-reheat-coil-valve
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-528-reheat-coil-valve needs to match one of the following shapes: n1eec9117c951492c8d1dc465c711c4a5b46, n1eec9117c951492c8d1dc465c711c4a5b52
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-506-reheat-coil-valve
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-506-reheat-coil-valve needs to match one of the following shapes: n1eec9117c951492c8d1dc465c711c4a5b46, n1eec9117c951492c8d1dc465c711c4a5b52
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-513-reheat-coil-valve
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-513-reheat-coil-valve needs to match one of the following shapes: n1eec9117c951492c8d1dc465c711c4a5b46, n1eec9117c951492c8d1dc465c711c4a5b52
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-536-reheat-coil-valve
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-536-reheat-coil-valve needs to match one of the following shapes: n1eec9117c951492c8d1dc465c711c4a5b46, n1eec9117c951492c8d1dc465c711c4a5b52
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-521-damper
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-521-damper needs to match one of the following shapes: n1eec9117c951492c8d1dc465c711c4a5b17, n1eec9117c951492c8d1dc465c711c4a5b23
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-507-reheat-coil-valve
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-507-reheat-coil-valve needs to match one of the following shapes: n1eec9117c951492c8d1dc465c711c4a5b46, n1eec9117c951492c8d1dc465c711c4a5b52
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-526-damper
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-526-damper needs to match one of the following shapes: n1eec9117c951492c8d1dc465c711c4a5b17, n1eec9117c951492c8d1dc465c711c4a5b23
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-518-damper
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-518-damper needs to match one of the following shapes: n1eec9117c951492c8d1dc465c711c4a5b17, n1eec9117c951492c8d1dc465c711c4a5b23
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-536-damper
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-536-damper needs to match one of the following shapes: n1eec9117c951492c8d1dc465c711c4a5b17, n1eec9117c951492c8d1dc465c711c4a5b23
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-501-damper
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-501-damper needs to match one of the following shapes: n1eec9117c951492c8d1dc465c711c4a5b17, n1eec9117c951492c8d1dc465c711c4a5b23
http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-oa-damper
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-oa-damper needs to match one of the following shapes: n1eec9117c951492c8d1dc465c711c4a5b17, n1eec9117c951492c8d1dc465c711c4a5b23
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-525-reheat-coil-valve
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-525-reheat-coil-valve needs to match one of the following shapes: n1eec9117c951492c8d1dc465c711c4a5b46, n1eec9117c951492c8d1dc465c711c4a5b52
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-502-reheat-coil-valve
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-502-reheat-coil-valve needs to match one of the following shapes: n1eec9117c951492c8d1dc465c711c4a5b46, n1eec9117c951492c8d1dc465c711c4a5b52
http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-ea-damper
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-ea-damper needs to match one of the following shapes: n1eec9117c951492c8d1dc465c711c4a5b17, n1eec9117c951492c8d1dc465c711c4a5b23
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-527-reheat-coil-valve
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-527-reheat-coil-valve needs to match one of the following shapes: n1eec9117c951492c8d1dc465c711c4a5b46, n1eec9117c951492c8d1dc465c711c4a5b52
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-527-damper
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-527-damper needs to match one of the following shapes: n1eec9117c951492c8d1dc465c711c4a5b17, n1eec9117c951492c8d1dc465c711c4a5b23
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-537-damper
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-537-damper needs to match one of the following shapes: n1eec9117c951492c8d1dc465c711c4a5b17, n1eec9117c951492c8d1dc465c711c4a5b23
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-508-damper
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-508-damper needs to match one of the following shapes: n1eec9117c951492c8d1dc465c711c4a5b17, n1eec9117c951492c8d1dc465c711c4a5b23
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-519-reheat-coil-valve
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-519-reheat-coil-valve needs to match one of the following shapes: n1eec9117c951492c8d1dc465c711c4a5b46, n1eec9117c951492c8d1dc465c711c4a5b52
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-508-reheat-coil-valve
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-508-reheat-coil-valve needs to match one of the following shapes: n1eec9117c951492c8d1dc465c711c4a5b46, n1eec9117c951492c8d1dc465c711c4a5b52
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-530-reheat-coil-valve
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-530-reheat-coil-valve needs to match one of the following shapes: n1eec9117c951492c8d1dc465c711c4a5b46, n1eec9117c951492c8d1dc465c711c4a5b52
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-510-damper
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-510-damper needs to match one of the following shapes: n1eec9117c951492c8d1dc465c711c4a5b17, n1eec9117c951492c8d1dc465c711c4a5b23
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-512-reheat-coil-valve
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-512-reheat-coil-valve needs to match one of the following shapes: n1eec9117c951492c8d1dc465c711c4a5b46, n1eec9117c951492c8d1dc465c711c4a5b52
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-540-damper
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-540-damper needs to match one of the following shapes: n1eec9117c951492c8d1dc465c711c4a5b17, n1eec9117c951492c8d1dc465c711c4a5b23
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-520-reheat-coil-valve
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-520-reheat-coil-valve needs to match one of the following shapes: n1eec9117c951492c8d1dc465c711c4a5b46, n1eec9117c951492c8d1dc465c711c4a5b52
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-517-damper
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-517-damper needs to match one of the following shapes: n1eec9117c951492c8d1dc465c711c4a5b17, n1eec9117c951492c8d1dc465c711c4a5b23
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-519-damper
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-519-damper needs to match one of the following shapes: n1eec9117c951492c8d1dc465c711c4a5b17, n1eec9117c951492c8d1dc465c711c4a5b23
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-520-damper
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-520-damper needs to match one of the following shapes: n1eec9117c951492c8d1dc465c711c4a5b17, n1eec9117c951492c8d1dc465c711c4a5b23
http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-clg-coil-valve
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-clg-coil-valve needs to match one of the following shapes: n1eec9117c951492c8d1dc465c711c4a5b3, n1eec9117c951492c8d1dc465c711c4a5b9
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-522-reheat-coil-valve
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-522-reheat-coil-valve needs to match one of the following shapes: n1eec9117c951492c8d1dc465c711c4a5b46, n1eec9117c951492c8d1dc465c711c4a5b52
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-539-damper
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-539-damper needs to match one of the following shapes: n1eec9117c951492c8d1dc465c711c4a5b17, n1eec9117c951492c8d1dc465c711c4a5b23
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-506-damper
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-506-damper needs to match one of the following shapes: n1eec9117c951492c8d1dc465c711c4a5b17, n1eec9117c951492c8d1dc465c711c4a5b23
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-528-damper
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-528-damper needs to match one of the following shapes: n1eec9117c951492c8d1dc465c711c4a5b17, n1eec9117c951492c8d1dc465c711c4a5b23
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-533-reheat-coil-valve
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-533-reheat-coil-valve needs to match one of the following shapes: n1eec9117c951492c8d1dc465c711c4a5b46, n1eec9117c951492c8d1dc465c711c4a5b52
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-538-reheat-coil-valve
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-538-reheat-coil-valve needs to match one of the following shapes: n1eec9117c951492c8d1dc465c711c4a5b46, n1eec9117c951492c8d1dc465c711c4a5b52
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-503-reheat-coil-valve
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-503-reheat-coil-valve needs to match one of the following shapes: n1eec9117c951492c8d1dc465c711c4a5b46, n1eec9117c951492c8d1dc465c711c4a5b52
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-504-reheat-coil-valve
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-504-reheat-coil-valve needs to match one of the following shapes: n1eec9117c951492c8d1dc465c711c4a5b46, n1eec9117c951492c8d1dc465c711c4a5b52
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-524-reheat-coil-valve
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-524-reheat-coil-valve needs to match one of the following shapes: n1eec9117c951492c8d1dc465c711c4a5b46, n1eec9117c951492c8d1dc465c711c4a5b52
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-525-damper
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-525-damper needs to match one of the following shapes: n1eec9117c951492c8d1dc465c711c4a5b17, n1eec9117c951492c8d1dc465c711c4a5b23
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-509-damper
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-509-damper needs to match one of the following shapes: n1eec9117c951492c8d1dc465c711c4a5b17, n1eec9117c951492c8d1dc465c711c4a5b23
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-504-damper
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-504-damper needs to match one of the following shapes: n1eec9117c951492c8d1dc465c711c4a5b17, n1eec9117c951492c8d1dc465c711c4a5b23
http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-513-damper
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#vav-513-damper needs to match one of the following shapes: n1eec9117c951492c8d1dc465c711c4a5b17, n1eec9117c951492c8d1dc465c711c4a5b23
http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-htg-coil-valve
  - http://data.ashrae.org/standard223/1.0/data/lbnl-example#MultipleZoneAhuOffice-htg-coil-valve needs to match one of the following shapes: n1eec9117c951492c8d1dc465c711c4a5b46, n1eec9117c951492c8d1dc465c711c4a5b52