LBNL Example Building 2

LBNL Example Building 2#

This is a reference model provided by LBNL of a medium-sized office building with two office floors. It uses an underfloor air distribution system with fan-powered terminal reheat coils for perimeter zones. Four roof-top units with VAV are located on the roof. Labels have been anonymized, and are not interpretable.

Downloads#

Queries#

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-example-2")
model.graph.parse("https://models.open223.info/lbnl-example-2.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 ns2: <http://qudt.org/schema/qudt/> .
@prefix ns3: <http://data.ashrae.org/standard223#> .
@prefix ns4: <http://data.ashrae.org/standard223/data/lbnl-example-2#> .
@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 ns4:07222 ;
            sh:resultMessage "Less than 1 values have shape <urn:well-known/5cb2bf3c>" ;
            sh:resultPath ns3:hasConnectionPoint ;
            sh:resultSeverity sh:Violation ;
            sh:sourceConstraintComponent sh:QualifiedMinCountConstraintComponent ;
            sh:sourceShape <urn:well-known/4630bbd1> ],
        [ a sh:ValidationResult ;
            sh:focusNode ns4:93389 ;
            sh:resultMessage "s223: A ConnectionPoint must be associated with exactly one Substance-Medium using the relation hasMedium." ;
            sh:resultPath ns3:hasMedium ;
            sh:resultSeveri
http://data.ashrae.org/standard223/data/lbnl-example-2#18895
  - http://data.ashrae.org/standard223/data/lbnl-example-2#18895 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#78426
  - http://data.ashrae.org/standard223/data/lbnl-example-2#78426 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#70045
  - http://data.ashrae.org/standard223/data/lbnl-example-2#70045 needs between 1 and 1 instances of http://data.ashrae.org/standard223#Substance-Medium on path http://data.ashrae.org/standard223#hasMedium
  - http://data.ashrae.org/standard223/data/lbnl-example-2#70045 needs to be a http://data.ashrae.org/standard223#Substance-Medium
  - http://data.ashrae.org/standard223/data/lbnl-example-2#70045 needs to be a http://data.ashrae.org/standard223#ConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#70045 needs between 1 and 1 instances of http://data.ashrae.org/standard223#Substance-Medium on path http://data.ashrae.org/standard223#hasMedium
  - http://data.ashrae.org/standard223/data/lbnl-example-2#70045 needs to be a http://data.ashrae.org/standard223#Substance-Medium
  - http://data.ashrae.org/standard223/data/lbnl-example-2#70045 needs to be a http://data.ashrae.org/standard223#Substance-Medium
  - http://data.ashrae.org/standard223/data/lbnl-example-2#70045 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#83087
  - http://data.ashrae.org/standard223/data/lbnl-example-2#83087 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#30505
  - http://data.ashrae.org/standard223/data/lbnl-example-2#30505 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#97025
  - http://data.ashrae.org/standard223/data/lbnl-example-2#97025 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#31834
  - http://data.ashrae.org/standard223/data/lbnl-example-2#31834 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#27497
  - http://data.ashrae.org/standard223/data/lbnl-example-2#27497 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#46561
  - http://data.ashrae.org/standard223/data/lbnl-example-2#46561 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#86650
  - http://data.ashrae.org/standard223/data/lbnl-example-2#86650 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#86650 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#25532
  - http://data.ashrae.org/standard223/data/lbnl-example-2#25532 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#42650
  - http://data.ashrae.org/standard223/data/lbnl-example-2#42650 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#31863
  - http://data.ashrae.org/standard223/data/lbnl-example-2#31863 needs between None and 1 instances of http://data.ashrae.org/standard223#ConnectionPoint on path nd13ff611a1e9486cac4ccb4d2602c7a2b1369
  - http://data.ashrae.org/standard223/data/lbnl-example-2#31863 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#92322
  - http://data.ashrae.org/standard223/data/lbnl-example-2#92322 needs between None and 1 instances of http://data.ashrae.org/standard223#ConnectionPoint on path nd13ff611a1e9486cac4ccb4d2602c7a2b972
  - http://data.ashrae.org/standard223/data/lbnl-example-2#92322 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#31173
  - http://data.ashrae.org/standard223/data/lbnl-example-2#31173 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#31173 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#80775
  - http://data.ashrae.org/standard223/data/lbnl-example-2#80775 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#27901
  - http://data.ashrae.org/standard223/data/lbnl-example-2#27901 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#90274
  - http://data.ashrae.org/standard223/data/lbnl-example-2#90274 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#51996
  - http://data.ashrae.org/standard223/data/lbnl-example-2#51996 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#54247
  - http://data.ashrae.org/standard223/data/lbnl-example-2#54247 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#69576
  - http://data.ashrae.org/standard223/data/lbnl-example-2#69576 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#69576 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#50637
  - http://data.ashrae.org/standard223/data/lbnl-example-2#50637 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#39389
  - http://data.ashrae.org/standard223/data/lbnl-example-2#39389 needs to be a http://data.ashrae.org/standard223#Substance-Medium
  - http://data.ashrae.org/standard223/data/lbnl-example-2#39389 needs to be a http://data.ashrae.org/standard223#Substance-Medium
  - http://data.ashrae.org/standard223/data/lbnl-example-2#39389 needs to be a http://data.ashrae.org/standard223#Substance-Medium
  - http://data.ashrae.org/standard223/data/lbnl-example-2#39389 needs between 1 and 1 instances of http://data.ashrae.org/standard223#Substance-Medium on path http://data.ashrae.org/standard223#hasMedium
  - http://data.ashrae.org/standard223/data/lbnl-example-2#39389 needs to be a http://data.ashrae.org/standard223#ConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#39389 needs to be a http://data.ashrae.org/standard223#ConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#39389 needs between 1 and 1 instances of http://data.ashrae.org/standard223#Substance-Medium on path http://data.ashrae.org/standard223#hasMedium
  - http://data.ashrae.org/standard223/data/lbnl-example-2#39389 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#42081
  - http://data.ashrae.org/standard223/data/lbnl-example-2#42081 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#64215
  - http://data.ashrae.org/standard223/data/lbnl-example-2#64215 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#52728
  - http://data.ashrae.org/standard223/data/lbnl-example-2#52728 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#52728 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#81861
  - http://data.ashrae.org/standard223/data/lbnl-example-2#81861 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#99282
  - http://data.ashrae.org/standard223/data/lbnl-example-2#99282 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#13867
  - http://data.ashrae.org/standard223/data/lbnl-example-2#13867 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#13867 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#35561
  - http://data.ashrae.org/standard223/data/lbnl-example-2#35561 needs between 1 and 1 instances of http://data.ashrae.org/standard223#Connectable on path http://data.ashrae.org/standard223#isConnectionPointOf
  - http://data.ashrae.org/standard223/data/lbnl-example-2#35561 needs to be a http://data.ashrae.org/standard223#Substance-Medium
  - http://data.ashrae.org/standard223/data/lbnl-example-2#35561 needs between None and 1 instances of http://data.ashrae.org/standard223#Connectable on path http://data.ashrae.org/standard223#cnx
  - http://data.ashrae.org/standard223/data/lbnl-example-2#35561 needs between None and 1 instances of http://data.ashrae.org/standard223#Connection on path http://data.ashrae.org/standard223#cnx
http://data.ashrae.org/standard223/data/lbnl-example-2#98230
  - http://data.ashrae.org/standard223/data/lbnl-example-2#98230 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#01128
  - http://data.ashrae.org/standard223/data/lbnl-example-2#01128 needs between 1 and 1 instances of http://data.ashrae.org/standard223#Connectable on path http://data.ashrae.org/standard223#isConnectionPointOf
  - http://data.ashrae.org/standard223/data/lbnl-example-2#01128 needs between None and 1 instances of http://data.ashrae.org/standard223#Connection on path http://data.ashrae.org/standard223#cnx
  - http://data.ashrae.org/standard223/data/lbnl-example-2#01128 needs to be a http://data.ashrae.org/standard223#Substance-Medium
  - http://data.ashrae.org/standard223/data/lbnl-example-2#01128 needs between None and 1 instances of http://data.ashrae.org/standard223#Connectable on path http://data.ashrae.org/standard223#cnx
http://data.ashrae.org/standard223/data/lbnl-example-2#54708
  - http://data.ashrae.org/standard223/data/lbnl-example-2#54708 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#54708 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#09315
  - http://data.ashrae.org/standard223/data/lbnl-example-2#09315 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#69373
  - http://data.ashrae.org/standard223/data/lbnl-example-2#69373 needs to be a http://data.ashrae.org/standard223#Substance-Medium
  - http://data.ashrae.org/standard223/data/lbnl-example-2#69373 needs between None and 1 instances of http://data.ashrae.org/standard223#ConnectionPoint on path nd13ff611a1e9486cac4ccb4d2602c7a2b2809
http://data.ashrae.org/standard223/data/lbnl-example-2#31123
  - http://data.ashrae.org/standard223/data/lbnl-example-2#31123 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#44139
  - http://data.ashrae.org/standard223/data/lbnl-example-2#44139 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#00778
  - http://data.ashrae.org/standard223/data/lbnl-example-2#00778 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#86102
  - http://data.ashrae.org/standard223/data/lbnl-example-2#86102 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#55442
  - http://data.ashrae.org/standard223/data/lbnl-example-2#55442 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#51893
  - http://data.ashrae.org/standard223/data/lbnl-example-2#51893 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#51893 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#55672
  - http://data.ashrae.org/standard223/data/lbnl-example-2#55672 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#55672 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#13583
  - http://data.ashrae.org/standard223/data/lbnl-example-2#13583 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#39604
  - http://data.ashrae.org/standard223/data/lbnl-example-2#39604 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#39604 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#15763
  - http://data.ashrae.org/standard223/data/lbnl-example-2#15763 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#29692
  - http://data.ashrae.org/standard223/data/lbnl-example-2#29692 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#65015
  - http://data.ashrae.org/standard223/data/lbnl-example-2#65015 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#65015 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#29667
  - http://data.ashrae.org/standard223/data/lbnl-example-2#29667 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#14150
  - http://data.ashrae.org/standard223/data/lbnl-example-2#14150 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#11294
  - http://data.ashrae.org/standard223/data/lbnl-example-2#11294 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#87421
  - http://data.ashrae.org/standard223/data/lbnl-example-2#87421 needs to be a http://data.ashrae.org/standard223#Substance-Medium
  - http://data.ashrae.org/standard223/data/lbnl-example-2#87421 needs to be a http://data.ashrae.org/standard223#ConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#87421 needs to be a http://data.ashrae.org/standard223#ConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#40219
  - http://data.ashrae.org/standard223/data/lbnl-example-2#40219 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#43608
  - http://data.ashrae.org/standard223/data/lbnl-example-2#43608 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#87420
  - http://data.ashrae.org/standard223/data/lbnl-example-2#87420 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#69552
  - http://data.ashrae.org/standard223/data/lbnl-example-2#69552 needs to be a http://data.ashrae.org/standard223#Substance-Medium
  - http://data.ashrae.org/standard223/data/lbnl-example-2#69552 needs between 1 and 1 instances of http://data.ashrae.org/standard223#Substance-Medium on path http://data.ashrae.org/standard223#hasMedium
  - http://data.ashrae.org/standard223/data/lbnl-example-2#69552 needs to be a http://data.ashrae.org/standard223#Substance-Medium
  - http://data.ashrae.org/standard223/data/lbnl-example-2#69552 needs to be a http://data.ashrae.org/standard223#Substance-Medium
  - http://data.ashrae.org/standard223/data/lbnl-example-2#69552 needs to be a http://data.ashrae.org/standard223#ConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#69552 needs to be a http://data.ashrae.org/standard223#Substance-Medium
  - http://data.ashrae.org/standard223/data/lbnl-example-2#69552 needs between 1 and 1 instances of http://data.ashrae.org/standard223#Substance-Medium on path http://data.ashrae.org/standard223#hasMedium
http://data.ashrae.org/standard223/data/lbnl-example-2#95939
  - http://data.ashrae.org/standard223/data/lbnl-example-2#95939 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#15477
  - http://data.ashrae.org/standard223/data/lbnl-example-2#15477 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#15477 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#56119
  - http://data.ashrae.org/standard223/data/lbnl-example-2#56119 needs to be a http://data.ashrae.org/standard223#Substance-Medium
  - http://data.ashrae.org/standard223/data/lbnl-example-2#56119 needs between None and 1 instances of http://data.ashrae.org/standard223#ConnectionPoint on path nd13ff611a1e9486cac4ccb4d2602c7a2b1555
http://data.ashrae.org/standard223/data/lbnl-example-2#69111
  - http://data.ashrae.org/standard223/data/lbnl-example-2#69111 needs between 1 and 1 instances of http://data.ashrae.org/standard223#Substance-Medium on path http://data.ashrae.org/standard223#hasMedium
http://data.ashrae.org/standard223/data/lbnl-example-2#85384
  - http://data.ashrae.org/standard223/data/lbnl-example-2#85384 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#18941
  - http://data.ashrae.org/standard223/data/lbnl-example-2#18941 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#18941 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#02007
  - http://data.ashrae.org/standard223/data/lbnl-example-2#02007 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#88273
  - http://data.ashrae.org/standard223/data/lbnl-example-2#88273 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#18857
  - http://data.ashrae.org/standard223/data/lbnl-example-2#18857 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#29599
  - http://data.ashrae.org/standard223/data/lbnl-example-2#29599 needs to be a http://data.ashrae.org/standard223#Substance-Medium
  - http://data.ashrae.org/standard223/data/lbnl-example-2#29599 needs to be a http://data.ashrae.org/standard223#ConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#29599 needs to be a http://data.ashrae.org/standard223#ConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#29599 needs to be a http://data.ashrae.org/standard223#ConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#29599 needs to be a http://data.ashrae.org/standard223#Substance-Medium
  - http://data.ashrae.org/standard223/data/lbnl-example-2#29599 needs to be a http://data.ashrae.org/standard223#ConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#81633
  - http://data.ashrae.org/standard223/data/lbnl-example-2#81633 needs to be a http://data.ashrae.org/standard223#ConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#81633 needs to be a http://data.ashrae.org/standard223#Substance-Medium
  - http://data.ashrae.org/standard223/data/lbnl-example-2#81633 needs to be a http://data.ashrae.org/standard223#Substance-Medium
  - http://data.ashrae.org/standard223/data/lbnl-example-2#81633 needs to be a http://data.ashrae.org/standard223#ConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#25347
  - http://data.ashrae.org/standard223/data/lbnl-example-2#25347 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#79229
  - http://data.ashrae.org/standard223/data/lbnl-example-2#79229 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#94734
  - http://data.ashrae.org/standard223/data/lbnl-example-2#94734 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#73219
  - http://data.ashrae.org/standard223/data/lbnl-example-2#73219 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#73219 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#54181
  - http://data.ashrae.org/standard223/data/lbnl-example-2#54181 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#63214
  - http://data.ashrae.org/standard223/data/lbnl-example-2#63214 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#26969
  - http://data.ashrae.org/standard223/data/lbnl-example-2#26969 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#95037
  - http://data.ashrae.org/standard223/data/lbnl-example-2#95037 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#89915
  - http://data.ashrae.org/standard223/data/lbnl-example-2#89915 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#89915 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#96089
  - http://data.ashrae.org/standard223/data/lbnl-example-2#96089 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#81183
  - http://data.ashrae.org/standard223/data/lbnl-example-2#81183 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#81183 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#83154
  - http://data.ashrae.org/standard223/data/lbnl-example-2#83154 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#92008
  - http://data.ashrae.org/standard223/data/lbnl-example-2#92008 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#06056
  - http://data.ashrae.org/standard223/data/lbnl-example-2#06056 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#97655
  - http://data.ashrae.org/standard223/data/lbnl-example-2#97655 needs between None and 1 instances of http://data.ashrae.org/standard223#ConnectionPoint on path nd13ff611a1e9486cac4ccb4d2602c7a2b1166
  - http://data.ashrae.org/standard223/data/lbnl-example-2#97655 needs to be a http://data.ashrae.org/standard223#Substance-Medium
  - http://data.ashrae.org/standard223/data/lbnl-example-2#97655 needs to be a http://data.ashrae.org/standard223#ConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#97655 needs to be a http://data.ashrae.org/standard223#ConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#97655 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#47395
  - http://data.ashrae.org/standard223/data/lbnl-example-2#47395 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#47395 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#49103
  - http://data.ashrae.org/standard223/data/lbnl-example-2#49103 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#55212
  - http://data.ashrae.org/standard223/data/lbnl-example-2#55212 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#19930
  - http://data.ashrae.org/standard223/data/lbnl-example-2#19930 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#04430
  - http://data.ashrae.org/standard223/data/lbnl-example-2#04430 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#04430 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#98308
  - http://data.ashrae.org/standard223/data/lbnl-example-2#98308 needs between None and 1 instances of http://data.ashrae.org/standard223#ConnectionPoint on path nd13ff611a1e9486cac4ccb4d2602c7a2b2179
  - http://data.ashrae.org/standard223/data/lbnl-example-2#98308 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#04219
  - http://data.ashrae.org/standard223/data/lbnl-example-2#04219 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#09895
  - http://data.ashrae.org/standard223/data/lbnl-example-2#09895 needs between 1 and 1 instances of http://data.ashrae.org/standard223#Connectable on path http://data.ashrae.org/standard223#isConnectionPointOf
  - http://data.ashrae.org/standard223/data/lbnl-example-2#09895 needs to be a http://data.ashrae.org/standard223#Substance-Medium
  - http://data.ashrae.org/standard223/data/lbnl-example-2#09895 needs to be a http://data.ashrae.org/standard223#Substance-Medium
  - http://data.ashrae.org/standard223/data/lbnl-example-2#09895 needs to be a http://data.ashrae.org/standard223#InletConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#09895 needs between 1 and 1 instances of http://data.ashrae.org/standard223#Substance-Medium on path http://data.ashrae.org/standard223#hasMedium
  - http://data.ashrae.org/standard223/data/lbnl-example-2#09895 needs between None and 1 instances of http://data.ashrae.org/standard223#Connectable on path http://data.ashrae.org/standard223#cnx
http://data.ashrae.org/standard223/data/lbnl-example-2#83407
  - http://data.ashrae.org/standard223/data/lbnl-example-2#83407 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#00808
  - http://data.ashrae.org/standard223/data/lbnl-example-2#00808 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#00808 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#02075
  - http://data.ashrae.org/standard223/data/lbnl-example-2#02075 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#05172
  - http://data.ashrae.org/standard223/data/lbnl-example-2#05172 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#19137
  - http://data.ashrae.org/standard223/data/lbnl-example-2#19137 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#94590
  - http://data.ashrae.org/standard223/data/lbnl-example-2#94590 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#41561
  - http://data.ashrae.org/standard223/data/lbnl-example-2#41561 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#10923
  - http://data.ashrae.org/standard223/data/lbnl-example-2#10923 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#27044
  - http://data.ashrae.org/standard223/data/lbnl-example-2#27044 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#04668
  - http://data.ashrae.org/standard223/data/lbnl-example-2#04668 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#25082
  - http://data.ashrae.org/standard223/data/lbnl-example-2#25082 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#32193
  - http://data.ashrae.org/standard223/data/lbnl-example-2#32193 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#41260
  - http://data.ashrae.org/standard223/data/lbnl-example-2#41260 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#99388
  - http://data.ashrae.org/standard223/data/lbnl-example-2#99388 needs between None and 1 instances of http://data.ashrae.org/standard223#ConnectionPoint on path nd13ff611a1e9486cac4ccb4d2602c7a2b3105
  - http://data.ashrae.org/standard223/data/lbnl-example-2#99388 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#96291
  - http://data.ashrae.org/standard223/data/lbnl-example-2#96291 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#85308
  - http://data.ashrae.org/standard223/data/lbnl-example-2#85308 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#63209
  - http://data.ashrae.org/standard223/data/lbnl-example-2#63209 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#73674
  - http://data.ashrae.org/standard223/data/lbnl-example-2#73674 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#73674 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#79665
  - http://data.ashrae.org/standard223/data/lbnl-example-2#79665 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#79665 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#26579
  - http://data.ashrae.org/standard223/data/lbnl-example-2#26579 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#04201
  - http://data.ashrae.org/standard223/data/lbnl-example-2#04201 needs to be a http://data.ashrae.org/standard223#Substance-Medium
  - http://data.ashrae.org/standard223/data/lbnl-example-2#04201 needs between None and 1 instances of http://data.ashrae.org/standard223#ConnectionPoint on path nd13ff611a1e9486cac4ccb4d2602c7a2b1584
http://data.ashrae.org/standard223/data/lbnl-example-2#88057
  - http://data.ashrae.org/standard223/data/lbnl-example-2#88057 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#44857
  - http://data.ashrae.org/standard223/data/lbnl-example-2#44857 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#97887
  - http://data.ashrae.org/standard223/data/lbnl-example-2#97887 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#06902
  - http://data.ashrae.org/standard223/data/lbnl-example-2#06902 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#91065
  - http://data.ashrae.org/standard223/data/lbnl-example-2#91065 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#39780
  - http://data.ashrae.org/standard223/data/lbnl-example-2#39780 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#18339
  - http://data.ashrae.org/standard223/data/lbnl-example-2#18339 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#18339 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#52697
  - http://data.ashrae.org/standard223/data/lbnl-example-2#52697 needs to be a http://data.ashrae.org/standard223#Substance-Medium
  - http://data.ashrae.org/standard223/data/lbnl-example-2#52697 needs between None and 1 instances of http://data.ashrae.org/standard223#ConnectionPoint on path nd13ff611a1e9486cac4ccb4d2602c7a2b1434
http://data.ashrae.org/standard223/data/lbnl-example-2#79414
  - http://data.ashrae.org/standard223/data/lbnl-example-2#79414 needs to be a http://data.ashrae.org/standard223#ConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#79414 needs to be a http://data.ashrae.org/standard223#ConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#79414 needs to be a http://data.ashrae.org/standard223#Substance-Medium
  - http://data.ashrae.org/standard223/data/lbnl-example-2#79414 needs between None and 1 instances of http://data.ashrae.org/standard223#ConnectionPoint on path nd13ff611a1e9486cac4ccb4d2602c7a2b3669
  - http://data.ashrae.org/standard223/data/lbnl-example-2#79414 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#77251
  - http://data.ashrae.org/standard223/data/lbnl-example-2#77251 needs between 1 and 1 uses of path http://data.ashrae.org/standard223#hasObservationLocation
  - http://data.ashrae.org/standard223/data/lbnl-example-2#77251 needs between 1 and 1 instances of http://data.ashrae.org/standard223#ObservableProperty on path http://data.ashrae.org/standard223#observes
http://data.ashrae.org/standard223/data/lbnl-example-2#20289
  - http://data.ashrae.org/standard223/data/lbnl-example-2#20289 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#20289 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#92865
  - http://data.ashrae.org/standard223/data/lbnl-example-2#92865 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#92865 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#49221
  - http://data.ashrae.org/standard223/data/lbnl-example-2#49221 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#07756
  - http://data.ashrae.org/standard223/data/lbnl-example-2#07756 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#91041
  - http://data.ashrae.org/standard223/data/lbnl-example-2#91041 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#22058
  - http://data.ashrae.org/standard223/data/lbnl-example-2#22058 needs between 1 and 1 uses of path http://data.ashrae.org/standard223#hasObservationLocation
http://data.ashrae.org/standard223/data/lbnl-example-2#55877
  - http://data.ashrae.org/standard223/data/lbnl-example-2#55877 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#97969
  - http://data.ashrae.org/standard223/data/lbnl-example-2#97969 needs to be a http://data.ashrae.org/standard223#ConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#97969 needs between None and 1 instances of http://data.ashrae.org/standard223#ConnectionPoint on path nd13ff611a1e9486cac4ccb4d2602c7a2b999
  - http://data.ashrae.org/standard223/data/lbnl-example-2#97969 needs to be a http://data.ashrae.org/standard223#ConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#97969 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#97969 needs to be a http://data.ashrae.org/standard223#ConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#97969 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#97969 needs to be a http://data.ashrae.org/standard223#ConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#97969 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#18059
  - http://data.ashrae.org/standard223/data/lbnl-example-2#18059 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#40142
  - http://data.ashrae.org/standard223/data/lbnl-example-2#40142 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#86007
  - http://data.ashrae.org/standard223/data/lbnl-example-2#86007 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#86007 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#87632
  - http://data.ashrae.org/standard223/data/lbnl-example-2#87632 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#87632 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#35307
  - http://data.ashrae.org/standard223/data/lbnl-example-2#35307 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#97049
  - http://data.ashrae.org/standard223/data/lbnl-example-2#97049 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#11125
  - http://data.ashrae.org/standard223/data/lbnl-example-2#11125 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#11125 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#15983
  - http://data.ashrae.org/standard223/data/lbnl-example-2#15983 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#44403
  - http://data.ashrae.org/standard223/data/lbnl-example-2#44403 needs between None and 1 instances of http://data.ashrae.org/standard223#ConnectionPoint on path nd13ff611a1e9486cac4ccb4d2602c7a2b125
  - http://data.ashrae.org/standard223/data/lbnl-example-2#44403 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#89893
  - http://data.ashrae.org/standard223/data/lbnl-example-2#89893 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#68389
  - http://data.ashrae.org/standard223/data/lbnl-example-2#68389 needs between 1 and 1 uses of path http://data.ashrae.org/standard223#hasObservationLocation
http://data.ashrae.org/standard223/data/lbnl-example-2#97787
  - http://data.ashrae.org/standard223/data/lbnl-example-2#97787 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#06275
  - http://data.ashrae.org/standard223/data/lbnl-example-2#06275 needs between 1 and 1 instances of http://data.ashrae.org/standard223#Substance-Medium on path http://data.ashrae.org/standard223#hasMedium
http://data.ashrae.org/standard223/data/lbnl-example-2#99209
  - http://data.ashrae.org/standard223/data/lbnl-example-2#99209 needs to be a http://data.ashrae.org/standard223#Substance-Medium
  - http://data.ashrae.org/standard223/data/lbnl-example-2#99209 needs between None and 1 instances of http://data.ashrae.org/standard223#ConnectionPoint on path nd13ff611a1e9486cac4ccb4d2602c7a2b2215
http://data.ashrae.org/standard223/data/lbnl-example-2#83476
  - http://data.ashrae.org/standard223/data/lbnl-example-2#83476 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#10653
  - http://data.ashrae.org/standard223/data/lbnl-example-2#10653 needs between None and 1 instances of http://data.ashrae.org/standard223#ConnectionPoint on path nd13ff611a1e9486cac4ccb4d2602c7a2b435
  - http://data.ashrae.org/standard223/data/lbnl-example-2#10653 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#06938
  - http://data.ashrae.org/standard223/data/lbnl-example-2#06938 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#81579
  - http://data.ashrae.org/standard223/data/lbnl-example-2#81579 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#81762
  - http://data.ashrae.org/standard223/data/lbnl-example-2#81762 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#10405
  - http://data.ashrae.org/standard223/data/lbnl-example-2#10405 needs between 1 and 1 uses of path http://data.ashrae.org/standard223#hasObservationLocation
http://data.ashrae.org/standard223/data/lbnl-example-2#80586
  - http://data.ashrae.org/standard223/data/lbnl-example-2#80586 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#62986
  - http://data.ashrae.org/standard223/data/lbnl-example-2#62986 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#62986 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#97222
  - http://data.ashrae.org/standard223/data/lbnl-example-2#97222 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#35251
  - http://data.ashrae.org/standard223/data/lbnl-example-2#35251 needs between None and 1 instances of http://data.ashrae.org/standard223#Connectable on path http://data.ashrae.org/standard223#cnx
  - http://data.ashrae.org/standard223/data/lbnl-example-2#35251 needs between 1 and 1 instances of http://data.ashrae.org/standard223#Substance-Medium on path http://data.ashrae.org/standard223#hasMedium
  - http://data.ashrae.org/standard223/data/lbnl-example-2#35251 needs between None and 1 instances of http://data.ashrae.org/standard223#Connection on path http://data.ashrae.org/standard223#cnx
  - http://data.ashrae.org/standard223/data/lbnl-example-2#35251 needs between 1 and 1 instances of http://data.ashrae.org/standard223#Connectable on path http://data.ashrae.org/standard223#isConnectionPointOf
  - http://data.ashrae.org/standard223/data/lbnl-example-2#35251 needs between None and 1 instances of http://data.ashrae.org/standard223#ConnectionPoint on path nd13ff611a1e9486cac4ccb4d2602c7a2b157
  - http://data.ashrae.org/standard223/data/lbnl-example-2#35251 needs to be a http://data.ashrae.org/standard223#Substance-Medium
  - http://data.ashrae.org/standard223/data/lbnl-example-2#35251 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#25200
  - http://data.ashrae.org/standard223/data/lbnl-example-2#25200 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#25200 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#47481
  - http://data.ashrae.org/standard223/data/lbnl-example-2#47481 needs to be a http://data.ashrae.org/standard223#Substance-Medium
  - http://data.ashrae.org/standard223/data/lbnl-example-2#47481 needs between None and 1 instances of http://data.ashrae.org/standard223#ConnectionPoint on path nd13ff611a1e9486cac4ccb4d2602c7a2b2641
http://data.ashrae.org/standard223/data/lbnl-example-2#00783
  - http://data.ashrae.org/standard223/data/lbnl-example-2#00783 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#00783 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#77220
  - http://data.ashrae.org/standard223/data/lbnl-example-2#77220 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#87461
  - http://data.ashrae.org/standard223/data/lbnl-example-2#87461 needs to be a http://data.ashrae.org/standard223#Substance-Medium
  - http://data.ashrae.org/standard223/data/lbnl-example-2#87461 needs between None and 1 instances of http://data.ashrae.org/standard223#ConnectionPoint on path nd13ff611a1e9486cac4ccb4d2602c7a2b2803
http://data.ashrae.org/standard223/data/lbnl-example-2#31262
  - http://data.ashrae.org/standard223/data/lbnl-example-2#31262 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#67780
  - http://data.ashrae.org/standard223/data/lbnl-example-2#67780 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#67780 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#62855
  - http://data.ashrae.org/standard223/data/lbnl-example-2#62855 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#62855 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#84011
  - http://data.ashrae.org/standard223/data/lbnl-example-2#84011 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#48493
  - http://data.ashrae.org/standard223/data/lbnl-example-2#48493 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#44503
  - http://data.ashrae.org/standard223/data/lbnl-example-2#44503 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#72358
  - http://data.ashrae.org/standard223/data/lbnl-example-2#72358 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#55520
  - http://data.ashrae.org/standard223/data/lbnl-example-2#55520 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#75197
  - http://data.ashrae.org/standard223/data/lbnl-example-2#75197 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#55951
  - http://data.ashrae.org/standard223/data/lbnl-example-2#55951 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#55951 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#59115
  - http://data.ashrae.org/standard223/data/lbnl-example-2#59115 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#01192
  - http://data.ashrae.org/standard223/data/lbnl-example-2#01192 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#24415
  - http://data.ashrae.org/standard223/data/lbnl-example-2#24415 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#68836
  - http://data.ashrae.org/standard223/data/lbnl-example-2#68836 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#55174
  - http://data.ashrae.org/standard223/data/lbnl-example-2#55174 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#78502
  - http://data.ashrae.org/standard223/data/lbnl-example-2#78502 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#65779
  - http://data.ashrae.org/standard223/data/lbnl-example-2#65779 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#65779 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#05672
  - http://data.ashrae.org/standard223/data/lbnl-example-2#05672 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#56624
  - http://data.ashrae.org/standard223/data/lbnl-example-2#56624 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#30148
  - http://data.ashrae.org/standard223/data/lbnl-example-2#30148 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#06502
  - http://data.ashrae.org/standard223/data/lbnl-example-2#06502 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#06502 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#34910
  - http://data.ashrae.org/standard223/data/lbnl-example-2#34910 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#09160
  - http://data.ashrae.org/standard223/data/lbnl-example-2#09160 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#09160 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#45817
  - http://data.ashrae.org/standard223/data/lbnl-example-2#45817 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#45817 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#92763
  - http://data.ashrae.org/standard223/data/lbnl-example-2#92763 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#44594
  - http://data.ashrae.org/standard223/data/lbnl-example-2#44594 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#44594 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#88792
  - http://data.ashrae.org/standard223/data/lbnl-example-2#88792 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#67207
  - http://data.ashrae.org/standard223/data/lbnl-example-2#67207 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#97321
  - http://data.ashrae.org/standard223/data/lbnl-example-2#97321 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#97321 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#56547
  - http://data.ashrae.org/standard223/data/lbnl-example-2#56547 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#14490
  - http://data.ashrae.org/standard223/data/lbnl-example-2#14490 needs to be a http://data.ashrae.org/standard223#Substance-Medium
  - http://data.ashrae.org/standard223/data/lbnl-example-2#14490 needs between None and 1 instances of http://data.ashrae.org/standard223#ConnectionPoint on path nd13ff611a1e9486cac4ccb4d2602c7a2b3613
http://data.ashrae.org/standard223/data/lbnl-example-2#10763
  - http://data.ashrae.org/standard223/data/lbnl-example-2#10763 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#54486
  - http://data.ashrae.org/standard223/data/lbnl-example-2#54486 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#66983
  - http://data.ashrae.org/standard223/data/lbnl-example-2#66983 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#96164
  - http://data.ashrae.org/standard223/data/lbnl-example-2#96164 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#50012
  - http://data.ashrae.org/standard223/data/lbnl-example-2#50012 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#29892
  - http://data.ashrae.org/standard223/data/lbnl-example-2#29892 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#65728
  - http://data.ashrae.org/standard223/data/lbnl-example-2#65728 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#56747
  - http://data.ashrae.org/standard223/data/lbnl-example-2#56747 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#16884
  - http://data.ashrae.org/standard223/data/lbnl-example-2#16884 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#50969
  - http://data.ashrae.org/standard223/data/lbnl-example-2#50969 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#85270
  - http://data.ashrae.org/standard223/data/lbnl-example-2#85270 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#92110
  - http://data.ashrae.org/standard223/data/lbnl-example-2#92110 needs between None and 1 instances of http://data.ashrae.org/standard223#Connectable on path http://data.ashrae.org/standard223#cnx
  - http://data.ashrae.org/standard223/data/lbnl-example-2#92110 needs to be a http://data.ashrae.org/standard223#Substance-Medium
  - http://data.ashrae.org/standard223/data/lbnl-example-2#92110 needs between 1 and 1 instances of http://data.ashrae.org/standard223#Connectable on path http://data.ashrae.org/standard223#isConnectionPointOf
  - http://data.ashrae.org/standard223/data/lbnl-example-2#92110 needs between None and 1 instances of http://data.ashrae.org/standard223#ConnectionPoint on path http://data.ashrae.org/standard223#mapsTo
http://data.ashrae.org/standard223/data/lbnl-example-2#41128
  - http://data.ashrae.org/standard223/data/lbnl-example-2#41128 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#99160
  - http://data.ashrae.org/standard223/data/lbnl-example-2#99160 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#14065
  - http://data.ashrae.org/standard223/data/lbnl-example-2#14065 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#62873
  - http://data.ashrae.org/standard223/data/lbnl-example-2#62873 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#60599
  - http://data.ashrae.org/standard223/data/lbnl-example-2#60599 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#32493
  - http://data.ashrae.org/standard223/data/lbnl-example-2#32493 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#32493 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#98956
  - http://data.ashrae.org/standard223/data/lbnl-example-2#98956 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#32499
  - http://data.ashrae.org/standard223/data/lbnl-example-2#32499 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#04462
  - http://data.ashrae.org/standard223/data/lbnl-example-2#04462 needs to be a http://data.ashrae.org/standard223#Substance-Medium
  - http://data.ashrae.org/standard223/data/lbnl-example-2#04462 needs between None and 1 instances of http://data.ashrae.org/standard223#ConnectionPoint on path nd13ff611a1e9486cac4ccb4d2602c7a2b3367
http://data.ashrae.org/standard223/data/lbnl-example-2#38293
  - http://data.ashrae.org/standard223/data/lbnl-example-2#38293 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#38974
  - http://data.ashrae.org/standard223/data/lbnl-example-2#38974 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#36633
  - http://data.ashrae.org/standard223/data/lbnl-example-2#36633 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#83653
  - http://data.ashrae.org/standard223/data/lbnl-example-2#83653 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#47087
  - http://data.ashrae.org/standard223/data/lbnl-example-2#47087 needs to be a http://data.ashrae.org/standard223#Substance-Medium
  - http://data.ashrae.org/standard223/data/lbnl-example-2#47087 needs between None and 1 instances of http://data.ashrae.org/standard223#ConnectionPoint on path nd13ff611a1e9486cac4ccb4d2602c7a2b611
http://data.ashrae.org/standard223/data/lbnl-example-2#58411
  - http://data.ashrae.org/standard223/data/lbnl-example-2#58411 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#58411 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#82184
  - http://data.ashrae.org/standard223/data/lbnl-example-2#82184 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#38096
  - http://data.ashrae.org/standard223/data/lbnl-example-2#38096 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#18527
  - http://data.ashrae.org/standard223/data/lbnl-example-2#18527 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#21910
  - http://data.ashrae.org/standard223/data/lbnl-example-2#21910 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#21910 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#79837
  - http://data.ashrae.org/standard223/data/lbnl-example-2#79837 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#26069
  - http://data.ashrae.org/standard223/data/lbnl-example-2#26069 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#34927
  - http://data.ashrae.org/standard223/data/lbnl-example-2#34927 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#34927 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#10692
  - http://data.ashrae.org/standard223/data/lbnl-example-2#10692 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#31261
  - http://data.ashrae.org/standard223/data/lbnl-example-2#31261 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#31261 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#90778
  - http://data.ashrae.org/standard223/data/lbnl-example-2#90778 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#90778 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#62454
  - http://data.ashrae.org/standard223/data/lbnl-example-2#62454 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#54578
  - http://data.ashrae.org/standard223/data/lbnl-example-2#54578 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#08808
  - http://data.ashrae.org/standard223/data/lbnl-example-2#08808 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#44830
  - http://data.ashrae.org/standard223/data/lbnl-example-2#44830 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#73249
  - http://data.ashrae.org/standard223/data/lbnl-example-2#73249 needs between 1 and 1 instances of http://data.ashrae.org/standard223#ObservableProperty on path http://data.ashrae.org/standard223#observes
  - http://data.ashrae.org/standard223/data/lbnl-example-2#73249 needs between 1 and 1 uses of path http://data.ashrae.org/standard223#hasObservationLocation
http://data.ashrae.org/standard223/data/lbnl-example-2#33702
  - http://data.ashrae.org/standard223/data/lbnl-example-2#33702 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#87772
  - http://data.ashrae.org/standard223/data/lbnl-example-2#87772 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#51617
  - http://data.ashrae.org/standard223/data/lbnl-example-2#51617 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#82983
  - http://data.ashrae.org/standard223/data/lbnl-example-2#82983 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#64347
  - http://data.ashrae.org/standard223/data/lbnl-example-2#64347 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#51343
  - http://data.ashrae.org/standard223/data/lbnl-example-2#51343 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#51343 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#56030
  - http://data.ashrae.org/standard223/data/lbnl-example-2#56030 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#07924
  - http://data.ashrae.org/standard223/data/lbnl-example-2#07924 needs to be a http://data.ashrae.org/standard223#ConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#07924 needs to be a http://data.ashrae.org/standard223#ConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#07924 needs to be a http://data.ashrae.org/standard223#Substance-Medium
  - http://data.ashrae.org/standard223/data/lbnl-example-2#07924 needs to be a http://data.ashrae.org/standard223#ConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#07924 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#07924 needs to be a http://data.ashrae.org/standard223#ConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#07924 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#69174
  - http://data.ashrae.org/standard223/data/lbnl-example-2#69174 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#32081
  - http://data.ashrae.org/standard223/data/lbnl-example-2#32081 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#30089
  - http://data.ashrae.org/standard223/data/lbnl-example-2#30089 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#24559
  - http://data.ashrae.org/standard223/data/lbnl-example-2#24559 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#24559 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#13224
  - http://data.ashrae.org/standard223/data/lbnl-example-2#13224 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#28042
  - http://data.ashrae.org/standard223/data/lbnl-example-2#28042 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#43438
  - http://data.ashrae.org/standard223/data/lbnl-example-2#43438 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#43438 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#98616
  - http://data.ashrae.org/standard223/data/lbnl-example-2#98616 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#52856
  - http://data.ashrae.org/standard223/data/lbnl-example-2#52856 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#08368
  - http://data.ashrae.org/standard223/data/lbnl-example-2#08368 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#54523
  - http://data.ashrae.org/standard223/data/lbnl-example-2#54523 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#03990
  - http://data.ashrae.org/standard223/data/lbnl-example-2#03990 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#03990 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#05895
  - http://data.ashrae.org/standard223/data/lbnl-example-2#05895 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#77211
  - http://data.ashrae.org/standard223/data/lbnl-example-2#77211 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#77211 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#16636
  - http://data.ashrae.org/standard223/data/lbnl-example-2#16636 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#62479
  - http://data.ashrae.org/standard223/data/lbnl-example-2#62479 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#70764
  - http://data.ashrae.org/standard223/data/lbnl-example-2#70764 needs to be a http://data.ashrae.org/standard223#ConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#70764 needs to be a http://data.ashrae.org/standard223#ConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#70764 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#99287
  - http://data.ashrae.org/standard223/data/lbnl-example-2#99287 needs between None and 1 instances of http://data.ashrae.org/standard223#ConnectionPoint on path nd13ff611a1e9486cac4ccb4d2602c7a2b2849
  - http://data.ashrae.org/standard223/data/lbnl-example-2#99287 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#50027
  - http://data.ashrae.org/standard223/data/lbnl-example-2#50027 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#33422
  - http://data.ashrae.org/standard223/data/lbnl-example-2#33422 needs between None and 1 instances of http://data.ashrae.org/standard223#ConnectionPoint on path nd13ff611a1e9486cac4ccb4d2602c7a2b503
  - http://data.ashrae.org/standard223/data/lbnl-example-2#33422 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#23963
  - http://data.ashrae.org/standard223/data/lbnl-example-2#23963 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#62913
  - http://data.ashrae.org/standard223/data/lbnl-example-2#62913 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#55505
  - http://data.ashrae.org/standard223/data/lbnl-example-2#55505 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#85649
  - http://data.ashrae.org/standard223/data/lbnl-example-2#85649 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#61920
  - http://data.ashrae.org/standard223/data/lbnl-example-2#61920 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#53092
  - http://data.ashrae.org/standard223/data/lbnl-example-2#53092 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#36630
  - http://data.ashrae.org/standard223/data/lbnl-example-2#36630 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#43211
  - http://data.ashrae.org/standard223/data/lbnl-example-2#43211 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#20132
  - http://data.ashrae.org/standard223/data/lbnl-example-2#20132 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#49943
  - http://data.ashrae.org/standard223/data/lbnl-example-2#49943 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#06594
  - http://data.ashrae.org/standard223/data/lbnl-example-2#06594 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#06594 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#71107
  - http://data.ashrae.org/standard223/data/lbnl-example-2#71107 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#79421
  - http://data.ashrae.org/standard223/data/lbnl-example-2#79421 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#79421 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#06591
  - http://data.ashrae.org/standard223/data/lbnl-example-2#06591 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#45669
  - http://data.ashrae.org/standard223/data/lbnl-example-2#45669 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#89839
  - http://data.ashrae.org/standard223/data/lbnl-example-2#89839 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#85409
  - http://data.ashrae.org/standard223/data/lbnl-example-2#85409 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#85409 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#79655
  - http://data.ashrae.org/standard223/data/lbnl-example-2#79655 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#42854
  - http://data.ashrae.org/standard223/data/lbnl-example-2#42854 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#75105
  - http://data.ashrae.org/standard223/data/lbnl-example-2#75105 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#99976
  - http://data.ashrae.org/standard223/data/lbnl-example-2#99976 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#99976 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#73412
  - http://data.ashrae.org/standard223/data/lbnl-example-2#73412 needs between 1 and 1 uses of path http://data.ashrae.org/standard223#hasObservationLocation
http://data.ashrae.org/standard223/data/lbnl-example-2#52083
  - http://data.ashrae.org/standard223/data/lbnl-example-2#52083 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#68211
  - http://data.ashrae.org/standard223/data/lbnl-example-2#68211 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#23464
  - http://data.ashrae.org/standard223/data/lbnl-example-2#23464 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#85262
  - http://data.ashrae.org/standard223/data/lbnl-example-2#85262 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#81499
  - http://data.ashrae.org/standard223/data/lbnl-example-2#81499 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#26783
  - http://data.ashrae.org/standard223/data/lbnl-example-2#26783 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#86505
  - http://data.ashrae.org/standard223/data/lbnl-example-2#86505 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#62659
  - http://data.ashrae.org/standard223/data/lbnl-example-2#62659 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#63557
  - http://data.ashrae.org/standard223/data/lbnl-example-2#63557 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#71776
  - http://data.ashrae.org/standard223/data/lbnl-example-2#71776 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#40147
  - http://data.ashrae.org/standard223/data/lbnl-example-2#40147 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#56136
  - http://data.ashrae.org/standard223/data/lbnl-example-2#56136 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#42308
  - http://data.ashrae.org/standard223/data/lbnl-example-2#42308 needs between 1 and 1 instances of http://data.ashrae.org/standard223#Substance-Medium on path http://data.ashrae.org/standard223#hasMedium
http://data.ashrae.org/standard223/data/lbnl-example-2#88395
  - http://data.ashrae.org/standard223/data/lbnl-example-2#88395 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#18118
  - http://data.ashrae.org/standard223/data/lbnl-example-2#18118 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#18118 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#10397
  - http://data.ashrae.org/standard223/data/lbnl-example-2#10397 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#84668
  - http://data.ashrae.org/standard223/data/lbnl-example-2#84668 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#49614
  - http://data.ashrae.org/standard223/data/lbnl-example-2#49614 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#49614 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#57087
  - http://data.ashrae.org/standard223/data/lbnl-example-2#57087 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#59276
  - http://data.ashrae.org/standard223/data/lbnl-example-2#59276 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#73704
  - http://data.ashrae.org/standard223/data/lbnl-example-2#73704 needs between 1 and 1 instances of http://data.ashrae.org/standard223#Connectable on path http://data.ashrae.org/standard223#isConnectionPointOf
  - http://data.ashrae.org/standard223/data/lbnl-example-2#73704 needs to be a http://data.ashrae.org/standard223#Substance-Medium
  - http://data.ashrae.org/standard223/data/lbnl-example-2#73704 needs to be a http://data.ashrae.org/standard223#Substance-Medium
  - http://data.ashrae.org/standard223/data/lbnl-example-2#73704 needs between None and 1 instances of http://data.ashrae.org/standard223#Connectable on path http://data.ashrae.org/standard223#cnx
  - http://data.ashrae.org/standard223/data/lbnl-example-2#73704 needs between 1 and 1 instances of http://data.ashrae.org/standard223#Substance-Medium on path http://data.ashrae.org/standard223#hasMedium
http://data.ashrae.org/standard223/data/lbnl-example-2#23780
  - http://data.ashrae.org/standard223/data/lbnl-example-2#23780 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#36274
  - http://data.ashrae.org/standard223/data/lbnl-example-2#36274 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#57751
  - http://data.ashrae.org/standard223/data/lbnl-example-2#57751 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#24513
  - http://data.ashrae.org/standard223/data/lbnl-example-2#24513 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#89919
  - http://data.ashrae.org/standard223/data/lbnl-example-2#89919 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#35388
  - http://data.ashrae.org/standard223/data/lbnl-example-2#35388 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#18099
  - http://data.ashrae.org/standard223/data/lbnl-example-2#18099 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#18099 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#75934
  - http://data.ashrae.org/standard223/data/lbnl-example-2#75934 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#26427
  - http://data.ashrae.org/standard223/data/lbnl-example-2#26427 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#26427 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#33889
  - http://data.ashrae.org/standard223/data/lbnl-example-2#33889 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#60889
  - http://data.ashrae.org/standard223/data/lbnl-example-2#60889 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#36302
  - http://data.ashrae.org/standard223/data/lbnl-example-2#36302 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#27154
  - http://data.ashrae.org/standard223/data/lbnl-example-2#27154 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#35514
  - http://data.ashrae.org/standard223/data/lbnl-example-2#35514 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#35514 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#66460
  - http://data.ashrae.org/standard223/data/lbnl-example-2#66460 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#33243
  - http://data.ashrae.org/standard223/data/lbnl-example-2#33243 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#94541
  - http://data.ashrae.org/standard223/data/lbnl-example-2#94541 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#08570
  - http://data.ashrae.org/standard223/data/lbnl-example-2#08570 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#38529
  - http://data.ashrae.org/standard223/data/lbnl-example-2#38529 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#38529 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#38533
  - http://data.ashrae.org/standard223/data/lbnl-example-2#38533 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#04501
  - http://data.ashrae.org/standard223/data/lbnl-example-2#04501 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#57702
  - http://data.ashrae.org/standard223/data/lbnl-example-2#57702 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#85834
  - http://data.ashrae.org/standard223/data/lbnl-example-2#85834 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#85932
  - http://data.ashrae.org/standard223/data/lbnl-example-2#85932 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#79048
  - http://data.ashrae.org/standard223/data/lbnl-example-2#79048 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#01218
  - http://data.ashrae.org/standard223/data/lbnl-example-2#01218 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#42555
  - http://data.ashrae.org/standard223/data/lbnl-example-2#42555 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#34354
  - http://data.ashrae.org/standard223/data/lbnl-example-2#34354 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#60969
  - http://data.ashrae.org/standard223/data/lbnl-example-2#60969 needs between 1 and 1 uses of path http://data.ashrae.org/standard223#hasObservationLocation
http://data.ashrae.org/standard223/data/lbnl-example-2#53343
  - http://data.ashrae.org/standard223/data/lbnl-example-2#53343 needs between None and 1 instances of http://data.ashrae.org/standard223#ConnectionPoint on path nd13ff611a1e9486cac4ccb4d2602c7a2b3116
  - http://data.ashrae.org/standard223/data/lbnl-example-2#53343 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#88310
  - http://data.ashrae.org/standard223/data/lbnl-example-2#88310 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#32500
  - http://data.ashrae.org/standard223/data/lbnl-example-2#32500 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#44735
  - http://data.ashrae.org/standard223/data/lbnl-example-2#44735 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#75528
  - http://data.ashrae.org/standard223/data/lbnl-example-2#75528 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#19898
  - http://data.ashrae.org/standard223/data/lbnl-example-2#19898 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#55408
  - http://data.ashrae.org/standard223/data/lbnl-example-2#55408 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#55408 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#24416
  - http://data.ashrae.org/standard223/data/lbnl-example-2#24416 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#24416 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#72190
  - http://data.ashrae.org/standard223/data/lbnl-example-2#72190 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#38290
  - http://data.ashrae.org/standard223/data/lbnl-example-2#38290 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#19989
  - http://data.ashrae.org/standard223/data/lbnl-example-2#19989 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#63904
  - http://data.ashrae.org/standard223/data/lbnl-example-2#63904 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#97030
  - http://data.ashrae.org/standard223/data/lbnl-example-2#97030 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#97030 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#23324
  - http://data.ashrae.org/standard223/data/lbnl-example-2#23324 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#42574
  - http://data.ashrae.org/standard223/data/lbnl-example-2#42574 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#54971
  - http://data.ashrae.org/standard223/data/lbnl-example-2#54971 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#61223
  - http://data.ashrae.org/standard223/data/lbnl-example-2#61223 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#59892
  - http://data.ashrae.org/standard223/data/lbnl-example-2#59892 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#63837
  - http://data.ashrae.org/standard223/data/lbnl-example-2#63837 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#16091
  - http://data.ashrae.org/standard223/data/lbnl-example-2#16091 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#81565
  - http://data.ashrae.org/standard223/data/lbnl-example-2#81565 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#54185
  - http://data.ashrae.org/standard223/data/lbnl-example-2#54185 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#32646
  - http://data.ashrae.org/standard223/data/lbnl-example-2#32646 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#76930
  - http://data.ashrae.org/standard223/data/lbnl-example-2#76930 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#87263
  - http://data.ashrae.org/standard223/data/lbnl-example-2#87263 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#61520
  - http://data.ashrae.org/standard223/data/lbnl-example-2#61520 needs to be a http://data.ashrae.org/standard223#Substance-Medium
  - http://data.ashrae.org/standard223/data/lbnl-example-2#61520 needs between None and 1 instances of http://data.ashrae.org/standard223#ConnectionPoint on path nd13ff611a1e9486cac4ccb4d2602c7a2b149
http://data.ashrae.org/standard223/data/lbnl-example-2#11351
  - http://data.ashrae.org/standard223/data/lbnl-example-2#11351 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#91175
  - http://data.ashrae.org/standard223/data/lbnl-example-2#91175 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#65321
  - http://data.ashrae.org/standard223/data/lbnl-example-2#65321 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#83975
  - http://data.ashrae.org/standard223/data/lbnl-example-2#83975 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#71478
  - http://data.ashrae.org/standard223/data/lbnl-example-2#71478 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#13428
  - http://data.ashrae.org/standard223/data/lbnl-example-2#13428 needs to be a http://data.ashrae.org/standard223#Substance-Medium
  - http://data.ashrae.org/standard223/data/lbnl-example-2#13428 needs between None and 1 instances of http://data.ashrae.org/standard223#ConnectionPoint on path nd13ff611a1e9486cac4ccb4d2602c7a2b3195
http://data.ashrae.org/standard223/data/lbnl-example-2#39985
  - http://data.ashrae.org/standard223/data/lbnl-example-2#39985 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#51136
  - http://data.ashrae.org/standard223/data/lbnl-example-2#51136 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#82026
  - http://data.ashrae.org/standard223/data/lbnl-example-2#82026 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#60877
  - http://data.ashrae.org/standard223/data/lbnl-example-2#60877 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#47226
  - http://data.ashrae.org/standard223/data/lbnl-example-2#47226 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#77457
  - http://data.ashrae.org/standard223/data/lbnl-example-2#77457 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#77457 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#09214
  - http://data.ashrae.org/standard223/data/lbnl-example-2#09214 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#69029
  - http://data.ashrae.org/standard223/data/lbnl-example-2#69029 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#28196
  - http://data.ashrae.org/standard223/data/lbnl-example-2#28196 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#15549
  - http://data.ashrae.org/standard223/data/lbnl-example-2#15549 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#49965
  - http://data.ashrae.org/standard223/data/lbnl-example-2#49965 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#49965 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#12778
  - http://data.ashrae.org/standard223/data/lbnl-example-2#12778 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#18968
  - http://data.ashrae.org/standard223/data/lbnl-example-2#18968 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#31318
  - http://data.ashrae.org/standard223/data/lbnl-example-2#31318 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#31318 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#99249
  - http://data.ashrae.org/standard223/data/lbnl-example-2#99249 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#78658
  - http://data.ashrae.org/standard223/data/lbnl-example-2#78658 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#81613
  - http://data.ashrae.org/standard223/data/lbnl-example-2#81613 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#34392
  - http://data.ashrae.org/standard223/data/lbnl-example-2#34392 needs between 1 and 1 instances of http://data.ashrae.org/standard223#ObservableProperty on path http://data.ashrae.org/standard223#observes
  - http://data.ashrae.org/standard223/data/lbnl-example-2#34392 needs between 1 and 1 uses of path http://data.ashrae.org/standard223#hasObservationLocation
http://data.ashrae.org/standard223/data/lbnl-example-2#74884
  - http://data.ashrae.org/standard223/data/lbnl-example-2#74884 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#41868
  - http://data.ashrae.org/standard223/data/lbnl-example-2#41868 needs between None and 1 instances of http://data.ashrae.org/standard223#ConnectionPoint on path nd13ff611a1e9486cac4ccb4d2602c7a2b3069
  - http://data.ashrae.org/standard223/data/lbnl-example-2#41868 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#83742
  - http://data.ashrae.org/standard223/data/lbnl-example-2#83742 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#77139
  - http://data.ashrae.org/standard223/data/lbnl-example-2#77139 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#97393
  - http://data.ashrae.org/standard223/data/lbnl-example-2#97393 needs to be a http://data.ashrae.org/standard223#Substance-Medium
  - http://data.ashrae.org/standard223/data/lbnl-example-2#97393 needs between None and 1 instances of http://data.ashrae.org/standard223#ConnectionPoint on path nd13ff611a1e9486cac4ccb4d2602c7a2b1078
http://data.ashrae.org/standard223/data/lbnl-example-2#62510
  - http://data.ashrae.org/standard223/data/lbnl-example-2#62510 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#62510 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#98635
  - http://data.ashrae.org/standard223/data/lbnl-example-2#98635 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#51341
  - http://data.ashrae.org/standard223/data/lbnl-example-2#51341 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#51341 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#65991
  - http://data.ashrae.org/standard223/data/lbnl-example-2#65991 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#76313
  - http://data.ashrae.org/standard223/data/lbnl-example-2#76313 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#65911
  - http://data.ashrae.org/standard223/data/lbnl-example-2#65911 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#72285
  - http://data.ashrae.org/standard223/data/lbnl-example-2#72285 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#67388
  - http://data.ashrae.org/standard223/data/lbnl-example-2#67388 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#67388 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#58036
  - http://data.ashrae.org/standard223/data/lbnl-example-2#58036 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#83890
  - http://data.ashrae.org/standard223/data/lbnl-example-2#83890 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#22040
  - http://data.ashrae.org/standard223/data/lbnl-example-2#22040 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#22040 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#68016
  - http://data.ashrae.org/standard223/data/lbnl-example-2#68016 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#68016 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#75031
  - http://data.ashrae.org/standard223/data/lbnl-example-2#75031 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#45386
  - http://data.ashrae.org/standard223/data/lbnl-example-2#45386 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#48567
  - http://data.ashrae.org/standard223/data/lbnl-example-2#48567 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#30816
  - http://data.ashrae.org/standard223/data/lbnl-example-2#30816 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#50525
  - http://data.ashrae.org/standard223/data/lbnl-example-2#50525 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#98539
  - http://data.ashrae.org/standard223/data/lbnl-example-2#98539 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#98539 needs to be a http://data.ashrae.org/standard223#Substance-Medium
  - http://data.ashrae.org/standard223/data/lbnl-example-2#98539 needs to be a http://data.ashrae.org/standard223#ConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#98539 needs to be a http://data.ashrae.org/standard223#ConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#98539 needs to be a http://data.ashrae.org/standard223#ConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#98539 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#98539 needs to be a http://data.ashrae.org/standard223#ConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#64380
  - http://data.ashrae.org/standard223/data/lbnl-example-2#64380 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#28017
  - http://data.ashrae.org/standard223/data/lbnl-example-2#28017 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#20014
  - http://data.ashrae.org/standard223/data/lbnl-example-2#20014 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#51689
  - http://data.ashrae.org/standard223/data/lbnl-example-2#51689 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#40974
  - http://data.ashrae.org/standard223/data/lbnl-example-2#40974 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#40974 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#43081
  - http://data.ashrae.org/standard223/data/lbnl-example-2#43081 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#09247
  - http://data.ashrae.org/standard223/data/lbnl-example-2#09247 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#58231
  - http://data.ashrae.org/standard223/data/lbnl-example-2#58231 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#21165
  - http://data.ashrae.org/standard223/data/lbnl-example-2#21165 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#09731
  - http://data.ashrae.org/standard223/data/lbnl-example-2#09731 needs to be a http://data.ashrae.org/standard223#Substance-Medium
  - http://data.ashrae.org/standard223/data/lbnl-example-2#09731 needs to be a http://data.ashrae.org/standard223#ConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#09731 needs to be a http://data.ashrae.org/standard223#ConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#83759
  - http://data.ashrae.org/standard223/data/lbnl-example-2#83759 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#12631
  - http://data.ashrae.org/standard223/data/lbnl-example-2#12631 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#74351
  - http://data.ashrae.org/standard223/data/lbnl-example-2#74351 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#89238
  - http://data.ashrae.org/standard223/data/lbnl-example-2#89238 needs between None and 1 instances of http://data.ashrae.org/standard223#ConnectionPoint on path nd13ff611a1e9486cac4ccb4d2602c7a2b1755
  - http://data.ashrae.org/standard223/data/lbnl-example-2#89238 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#08710
  - http://data.ashrae.org/standard223/data/lbnl-example-2#08710 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#57974
  - http://data.ashrae.org/standard223/data/lbnl-example-2#57974 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#55916
  - http://data.ashrae.org/standard223/data/lbnl-example-2#55916 needs between None and 1 instances of http://data.ashrae.org/standard223#ConnectionPoint on path nd13ff611a1e9486cac4ccb4d2602c7a2b42
  - http://data.ashrae.org/standard223/data/lbnl-example-2#55916 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#87484
  - http://data.ashrae.org/standard223/data/lbnl-example-2#87484 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#48637
  - http://data.ashrae.org/standard223/data/lbnl-example-2#48637 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#44848
  - http://data.ashrae.org/standard223/data/lbnl-example-2#44848 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#98042
  - http://data.ashrae.org/standard223/data/lbnl-example-2#98042 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#16851
  - http://data.ashrae.org/standard223/data/lbnl-example-2#16851 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#25300
  - http://data.ashrae.org/standard223/data/lbnl-example-2#25300 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#40865
  - http://data.ashrae.org/standard223/data/lbnl-example-2#40865 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#70623
  - http://data.ashrae.org/standard223/data/lbnl-example-2#70623 needs to be a http://data.ashrae.org/standard223#Substance-Medium
  - http://data.ashrae.org/standard223/data/lbnl-example-2#70623 needs between None and 1 instances of http://data.ashrae.org/standard223#ConnectionPoint on path nd13ff611a1e9486cac4ccb4d2602c7a2b2611
http://data.ashrae.org/standard223/data/lbnl-example-2#57861
  - http://data.ashrae.org/standard223/data/lbnl-example-2#57861 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#70423
  - http://data.ashrae.org/standard223/data/lbnl-example-2#70423 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#57368
  - http://data.ashrae.org/standard223/data/lbnl-example-2#57368 needs between None and 1 instances of http://data.ashrae.org/standard223#Connectable on path http://data.ashrae.org/standard223#cnx
  - http://data.ashrae.org/standard223/data/lbnl-example-2#57368 needs to be a http://data.ashrae.org/standard223#Substance-Medium
  - http://data.ashrae.org/standard223/data/lbnl-example-2#57368 needs between 1 and 1 instances of http://data.ashrae.org/standard223#Connectable on path http://data.ashrae.org/standard223#isConnectionPointOf
http://data.ashrae.org/standard223/data/lbnl-example-2#73677
  - http://data.ashrae.org/standard223/data/lbnl-example-2#73677 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#88207
  - http://data.ashrae.org/standard223/data/lbnl-example-2#88207 needs to be a http://data.ashrae.org/standard223#Substance-Medium
  - http://data.ashrae.org/standard223/data/lbnl-example-2#88207 needs between None and 1 instances of http://data.ashrae.org/standard223#ConnectionPoint on path nd13ff611a1e9486cac4ccb4d2602c7a2b2561
http://data.ashrae.org/standard223/data/lbnl-example-2#92494
  - http://data.ashrae.org/standard223/data/lbnl-example-2#92494 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#81884
  - http://data.ashrae.org/standard223/data/lbnl-example-2#81884 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#27066
  - http://data.ashrae.org/standard223/data/lbnl-example-2#27066 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#31628
  - http://data.ashrae.org/standard223/data/lbnl-example-2#31628 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#68202
  - http://data.ashrae.org/standard223/data/lbnl-example-2#68202 needs to be a http://data.ashrae.org/standard223#Substance-Medium
  - http://data.ashrae.org/standard223/data/lbnl-example-2#68202 needs between None and 1 instances of http://data.ashrae.org/standard223#ConnectionPoint on path nd13ff611a1e9486cac4ccb4d2602c7a2b2658
http://data.ashrae.org/standard223/data/lbnl-example-2#04282
  - http://data.ashrae.org/standard223/data/lbnl-example-2#04282 needs between None and 1 instances of http://data.ashrae.org/standard223#Connectable on path http://data.ashrae.org/standard223#cnx
  - http://data.ashrae.org/standard223/data/lbnl-example-2#04282 needs to be a http://data.ashrae.org/standard223#Substance-Medium
  - http://data.ashrae.org/standard223/data/lbnl-example-2#04282 needs between 1 and 1 instances of http://data.ashrae.org/standard223#Substance-Medium on path http://data.ashrae.org/standard223#hasMedium
  - http://data.ashrae.org/standard223/data/lbnl-example-2#04282 needs to be a http://data.ashrae.org/standard223#Substance-Medium
  - http://data.ashrae.org/standard223/data/lbnl-example-2#04282 needs between 1 and 1 instances of http://data.ashrae.org/standard223#Connectable on path http://data.ashrae.org/standard223#isConnectionPointOf
http://data.ashrae.org/standard223/data/lbnl-example-2#90702
  - http://data.ashrae.org/standard223/data/lbnl-example-2#90702 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#34957
  - http://data.ashrae.org/standard223/data/lbnl-example-2#34957 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#81559
  - http://data.ashrae.org/standard223/data/lbnl-example-2#81559 needs to be a http://data.ashrae.org/standard223#Substance-Medium
  - http://data.ashrae.org/standard223/data/lbnl-example-2#81559 needs between None and 1 instances of http://data.ashrae.org/standard223#ConnectionPoint on path nd13ff611a1e9486cac4ccb4d2602c7a2b3029
http://data.ashrae.org/standard223/data/lbnl-example-2#16445
  - http://data.ashrae.org/standard223/data/lbnl-example-2#16445 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#45991
  - http://data.ashrae.org/standard223/data/lbnl-example-2#45991 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#45991 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#86734
  - http://data.ashrae.org/standard223/data/lbnl-example-2#86734 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#72478
  - http://data.ashrae.org/standard223/data/lbnl-example-2#72478 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#98463
  - http://data.ashrae.org/standard223/data/lbnl-example-2#98463 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#87516
  - http://data.ashrae.org/standard223/data/lbnl-example-2#87516 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#15204
  - http://data.ashrae.org/standard223/data/lbnl-example-2#15204 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#96248
  - http://data.ashrae.org/standard223/data/lbnl-example-2#96248 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#95827
  - http://data.ashrae.org/standard223/data/lbnl-example-2#95827 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#02800
  - http://data.ashrae.org/standard223/data/lbnl-example-2#02800 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#91664
  - http://data.ashrae.org/standard223/data/lbnl-example-2#91664 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#27409
  - http://data.ashrae.org/standard223/data/lbnl-example-2#27409 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#24002
  - http://data.ashrae.org/standard223/data/lbnl-example-2#24002 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#24002 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#51853
  - http://data.ashrae.org/standard223/data/lbnl-example-2#51853 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#79430
  - http://data.ashrae.org/standard223/data/lbnl-example-2#79430 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#26412
  - http://data.ashrae.org/standard223/data/lbnl-example-2#26412 needs between 1 and 1 uses of path http://data.ashrae.org/standard223#hasObservationLocation
http://data.ashrae.org/standard223/data/lbnl-example-2#33570
  - http://data.ashrae.org/standard223/data/lbnl-example-2#33570 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#73303
  - http://data.ashrae.org/standard223/data/lbnl-example-2#73303 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#15464
  - http://data.ashrae.org/standard223/data/lbnl-example-2#15464 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#15464 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#41382
  - http://data.ashrae.org/standard223/data/lbnl-example-2#41382 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#01094
  - http://data.ashrae.org/standard223/data/lbnl-example-2#01094 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#21534
  - http://data.ashrae.org/standard223/data/lbnl-example-2#21534 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#30152
  - http://data.ashrae.org/standard223/data/lbnl-example-2#30152 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#68313
  - http://data.ashrae.org/standard223/data/lbnl-example-2#68313 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#61077
  - http://data.ashrae.org/standard223/data/lbnl-example-2#61077 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#19216
  - http://data.ashrae.org/standard223/data/lbnl-example-2#19216 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#26285
  - http://data.ashrae.org/standard223/data/lbnl-example-2#26285 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#57605
  - http://data.ashrae.org/standard223/data/lbnl-example-2#57605 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#58620
  - http://data.ashrae.org/standard223/data/lbnl-example-2#58620 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#84309
  - http://data.ashrae.org/standard223/data/lbnl-example-2#84309 needs to be a http://data.ashrae.org/standard223#Substance-Medium
  - http://data.ashrae.org/standard223/data/lbnl-example-2#84309 needs between None and 1 instances of http://data.ashrae.org/standard223#ConnectionPoint on path nd13ff611a1e9486cac4ccb4d2602c7a2b293
http://data.ashrae.org/standard223/data/lbnl-example-2#95885
  - http://data.ashrae.org/standard223/data/lbnl-example-2#95885 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#95932
  - http://data.ashrae.org/standard223/data/lbnl-example-2#95932 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#49869
  - http://data.ashrae.org/standard223/data/lbnl-example-2#49869 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#73942
  - http://data.ashrae.org/standard223/data/lbnl-example-2#73942 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#73942 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#54050
  - http://data.ashrae.org/standard223/data/lbnl-example-2#54050 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#54050 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#90440
  - http://data.ashrae.org/standard223/data/lbnl-example-2#90440 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#75560
  - http://data.ashrae.org/standard223/data/lbnl-example-2#75560 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#80482
  - http://data.ashrae.org/standard223/data/lbnl-example-2#80482 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#88705
  - http://data.ashrae.org/standard223/data/lbnl-example-2#88705 needs to be a http://data.ashrae.org/standard223#Substance-Medium
  - http://data.ashrae.org/standard223/data/lbnl-example-2#88705 needs between None and 1 instances of http://data.ashrae.org/standard223#ConnectionPoint on path nd13ff611a1e9486cac4ccb4d2602c7a2b1006
http://data.ashrae.org/standard223/data/lbnl-example-2#49391
  - http://data.ashrae.org/standard223/data/lbnl-example-2#49391 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#21886
  - http://data.ashrae.org/standard223/data/lbnl-example-2#21886 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#59158
  - http://data.ashrae.org/standard223/data/lbnl-example-2#59158 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#59158 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#93231
  - http://data.ashrae.org/standard223/data/lbnl-example-2#93231 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#54882
  - http://data.ashrae.org/standard223/data/lbnl-example-2#54882 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#55411
  - http://data.ashrae.org/standard223/data/lbnl-example-2#55411 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#05062
  - http://data.ashrae.org/standard223/data/lbnl-example-2#05062 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#05062 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#26374
  - http://data.ashrae.org/standard223/data/lbnl-example-2#26374 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#74362
  - http://data.ashrae.org/standard223/data/lbnl-example-2#74362 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#74362 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#44137
  - http://data.ashrae.org/standard223/data/lbnl-example-2#44137 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#87387
  - http://data.ashrae.org/standard223/data/lbnl-example-2#87387 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#76434
  - http://data.ashrae.org/standard223/data/lbnl-example-2#76434 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#74065
  - http://data.ashrae.org/standard223/data/lbnl-example-2#74065 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#74065 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#42823
  - http://data.ashrae.org/standard223/data/lbnl-example-2#42823 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#64683
  - http://data.ashrae.org/standard223/data/lbnl-example-2#64683 needs to be a http://data.ashrae.org/standard223#Substance-Medium
  - http://data.ashrae.org/standard223/data/lbnl-example-2#64683 needs between None and 1 instances of http://data.ashrae.org/standard223#ConnectionPoint on path nd13ff611a1e9486cac4ccb4d2602c7a2b855
http://data.ashrae.org/standard223/data/lbnl-example-2#30582
  - http://data.ashrae.org/standard223/data/lbnl-example-2#30582 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#61181
  - http://data.ashrae.org/standard223/data/lbnl-example-2#61181 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#94342
  - http://data.ashrae.org/standard223/data/lbnl-example-2#94342 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#87912
  - http://data.ashrae.org/standard223/data/lbnl-example-2#87912 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#25549
  - http://data.ashrae.org/standard223/data/lbnl-example-2#25549 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#11167
  - http://data.ashrae.org/standard223/data/lbnl-example-2#11167 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#92270
  - http://data.ashrae.org/standard223/data/lbnl-example-2#92270 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#30593
  - http://data.ashrae.org/standard223/data/lbnl-example-2#30593 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#99455
  - http://data.ashrae.org/standard223/data/lbnl-example-2#99455 needs between None and 1 instances of http://data.ashrae.org/standard223#ConnectionPoint on path nd13ff611a1e9486cac4ccb4d2602c7a2b2158
  - http://data.ashrae.org/standard223/data/lbnl-example-2#99455 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#99658
  - http://data.ashrae.org/standard223/data/lbnl-example-2#99658 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#22687
  - http://data.ashrae.org/standard223/data/lbnl-example-2#22687 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#29732
  - http://data.ashrae.org/standard223/data/lbnl-example-2#29732 needs to be a http://data.ashrae.org/standard223#Substance-Medium
  - http://data.ashrae.org/standard223/data/lbnl-example-2#29732 needs between None and 1 instances of http://data.ashrae.org/standard223#ConnectionPoint on path nd13ff611a1e9486cac4ccb4d2602c7a2b1324
http://data.ashrae.org/standard223/data/lbnl-example-2#99824
  - http://data.ashrae.org/standard223/data/lbnl-example-2#99824 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#83549
  - http://data.ashrae.org/standard223/data/lbnl-example-2#83549 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#83549 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#49498
  - http://data.ashrae.org/standard223/data/lbnl-example-2#49498 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#30616
  - http://data.ashrae.org/standard223/data/lbnl-example-2#30616 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#39848
  - http://data.ashrae.org/standard223/data/lbnl-example-2#39848 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#39848 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#12553
  - http://data.ashrae.org/standard223/data/lbnl-example-2#12553 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#12553 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#63092
  - http://data.ashrae.org/standard223/data/lbnl-example-2#63092 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#18158
  - http://data.ashrae.org/standard223/data/lbnl-example-2#18158 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#46836
  - http://data.ashrae.org/standard223/data/lbnl-example-2#46836 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#33969
  - http://data.ashrae.org/standard223/data/lbnl-example-2#33969 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#12418
  - http://data.ashrae.org/standard223/data/lbnl-example-2#12418 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#12418 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#68106
  - http://data.ashrae.org/standard223/data/lbnl-example-2#68106 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#90604
  - http://data.ashrae.org/standard223/data/lbnl-example-2#90604 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#85360
  - http://data.ashrae.org/standard223/data/lbnl-example-2#85360 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#69044
  - http://data.ashrae.org/standard223/data/lbnl-example-2#69044 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#69044 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#07686
  - http://data.ashrae.org/standard223/data/lbnl-example-2#07686 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#03254
  - http://data.ashrae.org/standard223/data/lbnl-example-2#03254 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#03254 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#78608
  - http://data.ashrae.org/standard223/data/lbnl-example-2#78608 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#54033
  - http://data.ashrae.org/standard223/data/lbnl-example-2#54033 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#16646
  - http://data.ashrae.org/standard223/data/lbnl-example-2#16646 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#13280
  - http://data.ashrae.org/standard223/data/lbnl-example-2#13280 needs between None and 1 instances of http://data.ashrae.org/standard223#ConnectionPoint on path nd13ff611a1e9486cac4ccb4d2602c7a2b3316
  - http://data.ashrae.org/standard223/data/lbnl-example-2#13280 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#33343
  - http://data.ashrae.org/standard223/data/lbnl-example-2#33343 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#87816
  - http://data.ashrae.org/standard223/data/lbnl-example-2#87816 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#18254
  - http://data.ashrae.org/standard223/data/lbnl-example-2#18254 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#45050
  - http://data.ashrae.org/standard223/data/lbnl-example-2#45050 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#45050 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#83074
  - http://data.ashrae.org/standard223/data/lbnl-example-2#83074 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#49932
  - http://data.ashrae.org/standard223/data/lbnl-example-2#49932 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#77070
  - http://data.ashrae.org/standard223/data/lbnl-example-2#77070 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#29089
  - http://data.ashrae.org/standard223/data/lbnl-example-2#29089 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#46417
  - http://data.ashrae.org/standard223/data/lbnl-example-2#46417 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#46417 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#56799
  - http://data.ashrae.org/standard223/data/lbnl-example-2#56799 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#19566
  - http://data.ashrae.org/standard223/data/lbnl-example-2#19566 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#16657
  - http://data.ashrae.org/standard223/data/lbnl-example-2#16657 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#13637
  - http://data.ashrae.org/standard223/data/lbnl-example-2#13637 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#30030
  - http://data.ashrae.org/standard223/data/lbnl-example-2#30030 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#30030 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#17322
  - http://data.ashrae.org/standard223/data/lbnl-example-2#17322 needs to be a http://data.ashrae.org/standard223#Substance-Medium
  - http://data.ashrae.org/standard223/data/lbnl-example-2#17322 needs between None and 1 instances of http://data.ashrae.org/standard223#Connectable on path http://data.ashrae.org/standard223#cnx
  - http://data.ashrae.org/standard223/data/lbnl-example-2#17322 needs between 1 and 1 instances of http://data.ashrae.org/standard223#Substance-Medium on path http://data.ashrae.org/standard223#hasMedium
  - http://data.ashrae.org/standard223/data/lbnl-example-2#17322 needs between 1 and 1 instances of http://data.ashrae.org/standard223#Connectable on path http://data.ashrae.org/standard223#isConnectionPointOf
  - http://data.ashrae.org/standard223/data/lbnl-example-2#17322 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#44650
  - http://data.ashrae.org/standard223/data/lbnl-example-2#44650 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#86998
  - http://data.ashrae.org/standard223/data/lbnl-example-2#86998 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#86998 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#45992
  - http://data.ashrae.org/standard223/data/lbnl-example-2#45992 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#45992 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#34654
  - http://data.ashrae.org/standard223/data/lbnl-example-2#34654 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#27490
  - http://data.ashrae.org/standard223/data/lbnl-example-2#27490 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#00066
  - http://data.ashrae.org/standard223/data/lbnl-example-2#00066 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#57110
  - http://data.ashrae.org/standard223/data/lbnl-example-2#57110 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#66163
  - http://data.ashrae.org/standard223/data/lbnl-example-2#66163 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#46181
  - http://data.ashrae.org/standard223/data/lbnl-example-2#46181 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#69790
  - http://data.ashrae.org/standard223/data/lbnl-example-2#69790 needs to be a http://data.ashrae.org/standard223#Substance-Medium
  - http://data.ashrae.org/standard223/data/lbnl-example-2#69790 needs between None and 1 instances of http://data.ashrae.org/standard223#ConnectionPoint on path nd13ff611a1e9486cac4ccb4d2602c7a2b1905
http://data.ashrae.org/standard223/data/lbnl-example-2#03023
  - http://data.ashrae.org/standard223/data/lbnl-example-2#03023 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#63590
  - http://data.ashrae.org/standard223/data/lbnl-example-2#63590 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#75104
  - http://data.ashrae.org/standard223/data/lbnl-example-2#75104 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#75104 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#22732
  - http://data.ashrae.org/standard223/data/lbnl-example-2#22732 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#22732 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#41846
  - http://data.ashrae.org/standard223/data/lbnl-example-2#41846 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#70209
  - http://data.ashrae.org/standard223/data/lbnl-example-2#70209 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#02892
  - http://data.ashrae.org/standard223/data/lbnl-example-2#02892 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#80749
  - http://data.ashrae.org/standard223/data/lbnl-example-2#80749 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#55942
  - http://data.ashrae.org/standard223/data/lbnl-example-2#55942 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#53835
  - http://data.ashrae.org/standard223/data/lbnl-example-2#53835 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#32023
  - http://data.ashrae.org/standard223/data/lbnl-example-2#32023 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#58956
  - http://data.ashrae.org/standard223/data/lbnl-example-2#58956 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#01014
  - http://data.ashrae.org/standard223/data/lbnl-example-2#01014 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#42653
  - http://data.ashrae.org/standard223/data/lbnl-example-2#42653 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#88541
  - http://data.ashrae.org/standard223/data/lbnl-example-2#88541 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#39678
  - http://data.ashrae.org/standard223/data/lbnl-example-2#39678 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#65987
  - http://data.ashrae.org/standard223/data/lbnl-example-2#65987 needs to be a http://data.ashrae.org/standard223#Substance-Medium
  - http://data.ashrae.org/standard223/data/lbnl-example-2#65987 needs between None and 1 instances of http://data.ashrae.org/standard223#ConnectionPoint on path nd13ff611a1e9486cac4ccb4d2602c7a2b1170
http://data.ashrae.org/standard223/data/lbnl-example-2#47376
  - http://data.ashrae.org/standard223/data/lbnl-example-2#47376 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#14626
  - http://data.ashrae.org/standard223/data/lbnl-example-2#14626 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#39723
  - http://data.ashrae.org/standard223/data/lbnl-example-2#39723 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#55679
  - http://data.ashrae.org/standard223/data/lbnl-example-2#55679 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#29476
  - http://data.ashrae.org/standard223/data/lbnl-example-2#29476 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#58953
  - http://data.ashrae.org/standard223/data/lbnl-example-2#58953 needs to be a http://data.ashrae.org/standard223#ConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#58953 needs to be a http://data.ashrae.org/standard223#Substance-Medium
  - http://data.ashrae.org/standard223/data/lbnl-example-2#58953 needs to be a http://data.ashrae.org/standard223#ConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#82815
  - http://data.ashrae.org/standard223/data/lbnl-example-2#82815 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#50484
  - http://data.ashrae.org/standard223/data/lbnl-example-2#50484 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#20005
  - http://data.ashrae.org/standard223/data/lbnl-example-2#20005 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#24605
  - http://data.ashrae.org/standard223/data/lbnl-example-2#24605 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#91912
  - http://data.ashrae.org/standard223/data/lbnl-example-2#91912 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#19107
  - http://data.ashrae.org/standard223/data/lbnl-example-2#19107 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#19107 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#77513
  - http://data.ashrae.org/standard223/data/lbnl-example-2#77513 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#88748
  - http://data.ashrae.org/standard223/data/lbnl-example-2#88748 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#17434
  - http://data.ashrae.org/standard223/data/lbnl-example-2#17434 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#99683
  - http://data.ashrae.org/standard223/data/lbnl-example-2#99683 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#50742
  - http://data.ashrae.org/standard223/data/lbnl-example-2#50742 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#80523
  - http://data.ashrae.org/standard223/data/lbnl-example-2#80523 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#80523 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#04798
  - http://data.ashrae.org/standard223/data/lbnl-example-2#04798 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#85356
  - http://data.ashrae.org/standard223/data/lbnl-example-2#85356 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#02549
  - http://data.ashrae.org/standard223/data/lbnl-example-2#02549 needs between 1 and 1 instances of http://data.ashrae.org/standard223#Connectable on path http://data.ashrae.org/standard223#isConnectionPointOf
  - http://data.ashrae.org/standard223/data/lbnl-example-2#02549 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#99143
  - http://data.ashrae.org/standard223/data/lbnl-example-2#99143 needs between 1 and 1 uses of path http://data.ashrae.org/standard223#hasObservationLocation
http://data.ashrae.org/standard223/data/lbnl-example-2#49951
  - http://data.ashrae.org/standard223/data/lbnl-example-2#49951 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#18531
  - http://data.ashrae.org/standard223/data/lbnl-example-2#18531 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#25265
  - http://data.ashrae.org/standard223/data/lbnl-example-2#25265 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#58141
  - http://data.ashrae.org/standard223/data/lbnl-example-2#58141 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#60443
  - http://data.ashrae.org/standard223/data/lbnl-example-2#60443 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#92566
  - http://data.ashrae.org/standard223/data/lbnl-example-2#92566 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#08874
  - http://data.ashrae.org/standard223/data/lbnl-example-2#08874 needs to be a http://data.ashrae.org/standard223#Substance-Medium
  - http://data.ashrae.org/standard223/data/lbnl-example-2#08874 needs between None and 1 instances of http://data.ashrae.org/standard223#ConnectionPoint on path nd13ff611a1e9486cac4ccb4d2602c7a2b948
http://data.ashrae.org/standard223/data/lbnl-example-2#09200
  - http://data.ashrae.org/standard223/data/lbnl-example-2#09200 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#09200 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#66260
  - http://data.ashrae.org/standard223/data/lbnl-example-2#66260 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#26037
  - http://data.ashrae.org/standard223/data/lbnl-example-2#26037 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#82341
  - http://data.ashrae.org/standard223/data/lbnl-example-2#82341 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#55837
  - http://data.ashrae.org/standard223/data/lbnl-example-2#55837 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#46589
  - http://data.ashrae.org/standard223/data/lbnl-example-2#46589 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#78531
  - http://data.ashrae.org/standard223/data/lbnl-example-2#78531 needs to be a http://data.ashrae.org/standard223#Substance-Medium
  - http://data.ashrae.org/standard223/data/lbnl-example-2#78531 needs between None and 1 instances of http://data.ashrae.org/standard223#ConnectionPoint on path nd13ff611a1e9486cac4ccb4d2602c7a2b876
http://data.ashrae.org/standard223/data/lbnl-example-2#68285
  - http://data.ashrae.org/standard223/data/lbnl-example-2#68285 needs to be a http://data.ashrae.org/standard223#Substance-Medium
  - http://data.ashrae.org/standard223/data/lbnl-example-2#68285 needs between None and 1 instances of http://data.ashrae.org/standard223#ConnectionPoint on path nd13ff611a1e9486cac4ccb4d2602c7a2b3175
http://data.ashrae.org/standard223/data/lbnl-example-2#38633
  - http://data.ashrae.org/standard223/data/lbnl-example-2#38633 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#47927
  - http://data.ashrae.org/standard223/data/lbnl-example-2#47927 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#48579
  - http://data.ashrae.org/standard223/data/lbnl-example-2#48579 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#00845
  - http://data.ashrae.org/standard223/data/lbnl-example-2#00845 needs to be a http://data.ashrae.org/standard223#ConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#00845 needs to be a http://data.ashrae.org/standard223#Substance-Medium
  - http://data.ashrae.org/standard223/data/lbnl-example-2#00845 needs to be a http://data.ashrae.org/standard223#ConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#33895
  - http://data.ashrae.org/standard223/data/lbnl-example-2#33895 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#77169
  - http://data.ashrae.org/standard223/data/lbnl-example-2#77169 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#60029
  - http://data.ashrae.org/standard223/data/lbnl-example-2#60029 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#81744
  - http://data.ashrae.org/standard223/data/lbnl-example-2#81744 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#39299
  - http://data.ashrae.org/standard223/data/lbnl-example-2#39299 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#63225
  - http://data.ashrae.org/standard223/data/lbnl-example-2#63225 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#09070
  - http://data.ashrae.org/standard223/data/lbnl-example-2#09070 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#82716
  - http://data.ashrae.org/standard223/data/lbnl-example-2#82716 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#19181
  - http://data.ashrae.org/standard223/data/lbnl-example-2#19181 needs between None and 1 instances of http://data.ashrae.org/standard223#ConnectionPoint on path nd13ff611a1e9486cac4ccb4d2602c7a2b2779
  - http://data.ashrae.org/standard223/data/lbnl-example-2#19181 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#78122
  - http://data.ashrae.org/standard223/data/lbnl-example-2#78122 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#10883
  - http://data.ashrae.org/standard223/data/lbnl-example-2#10883 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#85385
  - http://data.ashrae.org/standard223/data/lbnl-example-2#85385 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#22389
  - http://data.ashrae.org/standard223/data/lbnl-example-2#22389 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#49917
  - http://data.ashrae.org/standard223/data/lbnl-example-2#49917 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#87637
  - http://data.ashrae.org/standard223/data/lbnl-example-2#87637 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#87637 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#61021
  - http://data.ashrae.org/standard223/data/lbnl-example-2#61021 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#76964
  - http://data.ashrae.org/standard223/data/lbnl-example-2#76964 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#82400
  - http://data.ashrae.org/standard223/data/lbnl-example-2#82400 needs to be a http://data.ashrae.org/standard223#Substance-Medium
  - http://data.ashrae.org/standard223/data/lbnl-example-2#82400 needs between None and 1 instances of http://data.ashrae.org/standard223#ConnectionPoint on path nd13ff611a1e9486cac4ccb4d2602c7a2b840
http://data.ashrae.org/standard223/data/lbnl-example-2#64318
  - http://data.ashrae.org/standard223/data/lbnl-example-2#64318 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#64318 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#71209
  - http://data.ashrae.org/standard223/data/lbnl-example-2#71209 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#57017
  - http://data.ashrae.org/standard223/data/lbnl-example-2#57017 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#57017 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#50996
  - http://data.ashrae.org/standard223/data/lbnl-example-2#50996 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#16343
  - http://data.ashrae.org/standard223/data/lbnl-example-2#16343 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#16343 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#92902
  - http://data.ashrae.org/standard223/data/lbnl-example-2#92902 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#33562
  - http://data.ashrae.org/standard223/data/lbnl-example-2#33562 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#73972
  - http://data.ashrae.org/standard223/data/lbnl-example-2#73972 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#73972 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#91896
  - http://data.ashrae.org/standard223/data/lbnl-example-2#91896 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#63543
  - http://data.ashrae.org/standard223/data/lbnl-example-2#63543 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#63543 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#14171
  - http://data.ashrae.org/standard223/data/lbnl-example-2#14171 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#94884
  - http://data.ashrae.org/standard223/data/lbnl-example-2#94884 needs between 1 and 1 uses of path http://data.ashrae.org/standard223#hasObservationLocation
http://data.ashrae.org/standard223/data/lbnl-example-2#69401
  - http://data.ashrae.org/standard223/data/lbnl-example-2#69401 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#34672
  - http://data.ashrae.org/standard223/data/lbnl-example-2#34672 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#02809
  - http://data.ashrae.org/standard223/data/lbnl-example-2#02809 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#64612
  - http://data.ashrae.org/standard223/data/lbnl-example-2#64612 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#83065
  - http://data.ashrae.org/standard223/data/lbnl-example-2#83065 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#52992
  - http://data.ashrae.org/standard223/data/lbnl-example-2#52992 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#53089
  - http://data.ashrae.org/standard223/data/lbnl-example-2#53089 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#53089 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#59768
  - http://data.ashrae.org/standard223/data/lbnl-example-2#59768 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#93499
  - http://data.ashrae.org/standard223/data/lbnl-example-2#93499 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#29173
  - http://data.ashrae.org/standard223/data/lbnl-example-2#29173 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#07452
  - http://data.ashrae.org/standard223/data/lbnl-example-2#07452 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#16551
  - http://data.ashrae.org/standard223/data/lbnl-example-2#16551 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#35505
  - http://data.ashrae.org/standard223/data/lbnl-example-2#35505 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#35505 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#48021
  - http://data.ashrae.org/standard223/data/lbnl-example-2#48021 needs to be a http://data.ashrae.org/standard223#Substance-Medium
  - http://data.ashrae.org/standard223/data/lbnl-example-2#48021 needs between None and 1 instances of http://data.ashrae.org/standard223#ConnectionPoint on path nd13ff611a1e9486cac4ccb4d2602c7a2b2701
http://data.ashrae.org/standard223/data/lbnl-example-2#53503
  - http://data.ashrae.org/standard223/data/lbnl-example-2#53503 needs to be a http://data.ashrae.org/standard223#Substance-Medium
  - http://data.ashrae.org/standard223/data/lbnl-example-2#53503 needs between None and 1 instances of http://data.ashrae.org/standard223#ConnectionPoint on path nd13ff611a1e9486cac4ccb4d2602c7a2b544
http://data.ashrae.org/standard223/data/lbnl-example-2#17586
  - http://data.ashrae.org/standard223/data/lbnl-example-2#17586 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#17586 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#69823
  - http://data.ashrae.org/standard223/data/lbnl-example-2#69823 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#54863
  - http://data.ashrae.org/standard223/data/lbnl-example-2#54863 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#66844
  - http://data.ashrae.org/standard223/data/lbnl-example-2#66844 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#57148
  - http://data.ashrae.org/standard223/data/lbnl-example-2#57148 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#24918
  - http://data.ashrae.org/standard223/data/lbnl-example-2#24918 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#80445
  - http://data.ashrae.org/standard223/data/lbnl-example-2#80445 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#00254
  - http://data.ashrae.org/standard223/data/lbnl-example-2#00254 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#21786
  - http://data.ashrae.org/standard223/data/lbnl-example-2#21786 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#75350
  - http://data.ashrae.org/standard223/data/lbnl-example-2#75350 needs to be a http://data.ashrae.org/standard223#Substance-Medium
  - http://data.ashrae.org/standard223/data/lbnl-example-2#75350 needs between None and 1 instances of http://data.ashrae.org/standard223#ConnectionPoint on path nd13ff611a1e9486cac4ccb4d2602c7a2b737
http://data.ashrae.org/standard223/data/lbnl-example-2#36241
  - http://data.ashrae.org/standard223/data/lbnl-example-2#36241 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#66562
  - http://data.ashrae.org/standard223/data/lbnl-example-2#66562 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#66562 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#44640
  - http://data.ashrae.org/standard223/data/lbnl-example-2#44640 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#35121
  - http://data.ashrae.org/standard223/data/lbnl-example-2#35121 needs to be a http://data.ashrae.org/standard223#Substance-Medium
  - http://data.ashrae.org/standard223/data/lbnl-example-2#35121 needs between None and 1 instances of http://data.ashrae.org/standard223#ConnectionPoint on path nd13ff611a1e9486cac4ccb4d2602c7a2b954
http://data.ashrae.org/standard223/data/lbnl-example-2#34986
  - http://data.ashrae.org/standard223/data/lbnl-example-2#34986 needs to be a http://data.ashrae.org/standard223#ConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#34986 needs to be a http://data.ashrae.org/standard223#Substance-Medium
  - http://data.ashrae.org/standard223/data/lbnl-example-2#34986 needs to be a http://data.ashrae.org/standard223#ConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#34986 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#84397
  - http://data.ashrae.org/standard223/data/lbnl-example-2#84397 needs between 1 and 1 uses of path http://data.ashrae.org/standard223#hasObservationLocation
http://data.ashrae.org/standard223/data/lbnl-example-2#61423
  - http://data.ashrae.org/standard223/data/lbnl-example-2#61423 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#56445
  - http://data.ashrae.org/standard223/data/lbnl-example-2#56445 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#07850
  - http://data.ashrae.org/standard223/data/lbnl-example-2#07850 needs between None and 1 instances of http://data.ashrae.org/standard223#ConnectionPoint on path nd13ff611a1e9486cac4ccb4d2602c7a2b2883
  - http://data.ashrae.org/standard223/data/lbnl-example-2#07850 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#26559
  - http://data.ashrae.org/standard223/data/lbnl-example-2#26559 needs between 1 and 1 instances of http://data.ashrae.org/standard223#Connectable on path http://data.ashrae.org/standard223#isConnectionPointOf
  - http://data.ashrae.org/standard223/data/lbnl-example-2#26559 needs between 1 and 1 instances of http://data.ashrae.org/standard223#Substance-Medium on path http://data.ashrae.org/standard223#hasMedium
  - http://data.ashrae.org/standard223/data/lbnl-example-2#26559 needs between None and 1 instances of http://data.ashrae.org/standard223#Connectable on path http://data.ashrae.org/standard223#cnx
  - http://data.ashrae.org/standard223/data/lbnl-example-2#26559 needs to be a http://data.ashrae.org/standard223#Substance-Medium
  - http://data.ashrae.org/standard223/data/lbnl-example-2#26559 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#16095
  - http://data.ashrae.org/standard223/data/lbnl-example-2#16095 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#14475
  - http://data.ashrae.org/standard223/data/lbnl-example-2#14475 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#17784
  - http://data.ashrae.org/standard223/data/lbnl-example-2#17784 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#31947
  - http://data.ashrae.org/standard223/data/lbnl-example-2#31947 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#31947 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#38344
  - http://data.ashrae.org/standard223/data/lbnl-example-2#38344 needs to be a http://data.ashrae.org/standard223#Substance-Medium
  - http://data.ashrae.org/standard223/data/lbnl-example-2#38344 needs between None and 1 instances of http://data.ashrae.org/standard223#ConnectionPoint on path nd13ff611a1e9486cac4ccb4d2602c7a2b3566
http://data.ashrae.org/standard223/data/lbnl-example-2#12002
  - http://data.ashrae.org/standard223/data/lbnl-example-2#12002 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#22663
  - http://data.ashrae.org/standard223/data/lbnl-example-2#22663 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#09479
  - http://data.ashrae.org/standard223/data/lbnl-example-2#09479 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#99961
  - http://data.ashrae.org/standard223/data/lbnl-example-2#99961 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#28283
  - http://data.ashrae.org/standard223/data/lbnl-example-2#28283 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#89654
  - http://data.ashrae.org/standard223/data/lbnl-example-2#89654 needs between None and 1 instances of http://data.ashrae.org/standard223#ConnectionPoint on path nd13ff611a1e9486cac4ccb4d2602c7a2b1441
  - http://data.ashrae.org/standard223/data/lbnl-example-2#89654 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#42397
  - http://data.ashrae.org/standard223/data/lbnl-example-2#42397 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#49064
  - http://data.ashrae.org/standard223/data/lbnl-example-2#49064 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#49064 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#03382
  - http://data.ashrae.org/standard223/data/lbnl-example-2#03382 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#64698
  - http://data.ashrae.org/standard223/data/lbnl-example-2#64698 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#11624
  - http://data.ashrae.org/standard223/data/lbnl-example-2#11624 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#11624 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#21028
  - http://data.ashrae.org/standard223/data/lbnl-example-2#21028 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#69060
  - http://data.ashrae.org/standard223/data/lbnl-example-2#69060 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#73382
  - http://data.ashrae.org/standard223/data/lbnl-example-2#73382 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#13590
  - http://data.ashrae.org/standard223/data/lbnl-example-2#13590 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#13590 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#64663
  - http://data.ashrae.org/standard223/data/lbnl-example-2#64663 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#33468
  - http://data.ashrae.org/standard223/data/lbnl-example-2#33468 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#93128
  - http://data.ashrae.org/standard223/data/lbnl-example-2#93128 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#17099
  - http://data.ashrae.org/standard223/data/lbnl-example-2#17099 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#42750
  - http://data.ashrae.org/standard223/data/lbnl-example-2#42750 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#48230
  - http://data.ashrae.org/standard223/data/lbnl-example-2#48230 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#75732
  - http://data.ashrae.org/standard223/data/lbnl-example-2#75732 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#75732 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#96446
  - http://data.ashrae.org/standard223/data/lbnl-example-2#96446 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#55188
  - http://data.ashrae.org/standard223/data/lbnl-example-2#55188 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#96356
  - http://data.ashrae.org/standard223/data/lbnl-example-2#96356 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#11589
  - http://data.ashrae.org/standard223/data/lbnl-example-2#11589 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#59084
  - http://data.ashrae.org/standard223/data/lbnl-example-2#59084 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#25836
  - http://data.ashrae.org/standard223/data/lbnl-example-2#25836 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#30584
  - http://data.ashrae.org/standard223/data/lbnl-example-2#30584 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#15049
  - http://data.ashrae.org/standard223/data/lbnl-example-2#15049 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#05320
  - http://data.ashrae.org/standard223/data/lbnl-example-2#05320 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#79140
  - http://data.ashrae.org/standard223/data/lbnl-example-2#79140 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#26376
  - http://data.ashrae.org/standard223/data/lbnl-example-2#26376 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#73994
  - http://data.ashrae.org/standard223/data/lbnl-example-2#73994 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#54792
  - http://data.ashrae.org/standard223/data/lbnl-example-2#54792 needs between 1 and 1 uses of path http://data.ashrae.org/standard223#hasObservationLocation
  - http://data.ashrae.org/standard223/data/lbnl-example-2#54792 needs between 1 and 1 instances of http://data.ashrae.org/standard223#ObservableProperty on path http://data.ashrae.org/standard223#observes
http://data.ashrae.org/standard223/data/lbnl-example-2#25446
  - http://data.ashrae.org/standard223/data/lbnl-example-2#25446 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#10117
  - http://data.ashrae.org/standard223/data/lbnl-example-2#10117 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#85886
  - http://data.ashrae.org/standard223/data/lbnl-example-2#85886 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#17755
  - http://data.ashrae.org/standard223/data/lbnl-example-2#17755 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#16401
  - http://data.ashrae.org/standard223/data/lbnl-example-2#16401 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#95531
  - http://data.ashrae.org/standard223/data/lbnl-example-2#95531 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#94817
  - http://data.ashrae.org/standard223/data/lbnl-example-2#94817 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#25601
  - http://data.ashrae.org/standard223/data/lbnl-example-2#25601 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#02746
  - http://data.ashrae.org/standard223/data/lbnl-example-2#02746 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#40402
  - http://data.ashrae.org/standard223/data/lbnl-example-2#40402 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#20835
  - http://data.ashrae.org/standard223/data/lbnl-example-2#20835 needs between None and 1 instances of http://data.ashrae.org/standard223#ConnectionPoint on path nd13ff611a1e9486cac4ccb4d2602c7a2b3694
  - http://data.ashrae.org/standard223/data/lbnl-example-2#20835 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#65351
  - http://data.ashrae.org/standard223/data/lbnl-example-2#65351 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#15217
  - http://data.ashrae.org/standard223/data/lbnl-example-2#15217 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#11099
  - http://data.ashrae.org/standard223/data/lbnl-example-2#11099 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#11099 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#94683
  - http://data.ashrae.org/standard223/data/lbnl-example-2#94683 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#94683 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#15860
  - http://data.ashrae.org/standard223/data/lbnl-example-2#15860 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#36398
  - http://data.ashrae.org/standard223/data/lbnl-example-2#36398 needs between None and 1 instances of http://data.ashrae.org/standard223#Connection on path http://data.ashrae.org/standard223#cnx
  - http://data.ashrae.org/standard223/data/lbnl-example-2#36398 needs to be a http://data.ashrae.org/standard223#Substance-Medium
  - http://data.ashrae.org/standard223/data/lbnl-example-2#36398 needs between None and 1 instances of http://data.ashrae.org/standard223#Connectable on path http://data.ashrae.org/standard223#cnx
  - http://data.ashrae.org/standard223/data/lbnl-example-2#36398 needs to be a http://data.ashrae.org/standard223#Substance-Medium
  - http://data.ashrae.org/standard223/data/lbnl-example-2#36398 needs between 1 and 1 instances of http://data.ashrae.org/standard223#Substance-Medium on path http://data.ashrae.org/standard223#hasMedium
  - http://data.ashrae.org/standard223/data/lbnl-example-2#36398 needs between 1 and 1 instances of http://data.ashrae.org/standard223#Connectable on path http://data.ashrae.org/standard223#isConnectionPointOf
http://data.ashrae.org/standard223/data/lbnl-example-2#88844
  - http://data.ashrae.org/standard223/data/lbnl-example-2#88844 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#80065
  - http://data.ashrae.org/standard223/data/lbnl-example-2#80065 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#80065 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#93084
  - http://data.ashrae.org/standard223/data/lbnl-example-2#93084 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#57442
  - http://data.ashrae.org/standard223/data/lbnl-example-2#57442 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#22291
  - http://data.ashrae.org/standard223/data/lbnl-example-2#22291 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#00196
  - http://data.ashrae.org/standard223/data/lbnl-example-2#00196 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#66509
  - http://data.ashrae.org/standard223/data/lbnl-example-2#66509 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#28911
  - http://data.ashrae.org/standard223/data/lbnl-example-2#28911 needs between 1 and 1 instances of http://data.ashrae.org/standard223#Substance-Medium on path http://data.ashrae.org/standard223#hasMedium
http://data.ashrae.org/standard223/data/lbnl-example-2#66100
  - http://data.ashrae.org/standard223/data/lbnl-example-2#66100 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#17765
  - http://data.ashrae.org/standard223/data/lbnl-example-2#17765 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#59682
  - http://data.ashrae.org/standard223/data/lbnl-example-2#59682 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#81406
  - http://data.ashrae.org/standard223/data/lbnl-example-2#81406 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#81406 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#34134
  - http://data.ashrae.org/standard223/data/lbnl-example-2#34134 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#34134 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#14653
  - http://data.ashrae.org/standard223/data/lbnl-example-2#14653 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#43192
  - http://data.ashrae.org/standard223/data/lbnl-example-2#43192 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#31907
  - http://data.ashrae.org/standard223/data/lbnl-example-2#31907 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#68284
  - http://data.ashrae.org/standard223/data/lbnl-example-2#68284 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#40367
  - http://data.ashrae.org/standard223/data/lbnl-example-2#40367 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#14550
  - http://data.ashrae.org/standard223/data/lbnl-example-2#14550 needs to be a http://data.ashrae.org/standard223#Substance-Medium
  - http://data.ashrae.org/standard223/data/lbnl-example-2#14550 needs between None and 1 instances of http://data.ashrae.org/standard223#ConnectionPoint on path nd13ff611a1e9486cac4ccb4d2602c7a2b2409
http://data.ashrae.org/standard223/data/lbnl-example-2#97168
  - http://data.ashrae.org/standard223/data/lbnl-example-2#97168 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#12794
  - http://data.ashrae.org/standard223/data/lbnl-example-2#12794 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#06301
  - http://data.ashrae.org/standard223/data/lbnl-example-2#06301 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#58895
  - http://data.ashrae.org/standard223/data/lbnl-example-2#58895 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#60254
  - http://data.ashrae.org/standard223/data/lbnl-example-2#60254 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#60254 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#37912
  - http://data.ashrae.org/standard223/data/lbnl-example-2#37912 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#19094
  - http://data.ashrae.org/standard223/data/lbnl-example-2#19094 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#30594
  - http://data.ashrae.org/standard223/data/lbnl-example-2#30594 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#22726
  - http://data.ashrae.org/standard223/data/lbnl-example-2#22726 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#34046
  - http://data.ashrae.org/standard223/data/lbnl-example-2#34046 needs to be a http://data.ashrae.org/standard223#Substance-Medium
  - http://data.ashrae.org/standard223/data/lbnl-example-2#34046 needs between 1 and 1 instances of http://data.ashrae.org/standard223#Connectable on path http://data.ashrae.org/standard223#isConnectionPointOf
http://data.ashrae.org/standard223/data/lbnl-example-2#54692
  - http://data.ashrae.org/standard223/data/lbnl-example-2#54692 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#52416
  - http://data.ashrae.org/standard223/data/lbnl-example-2#52416 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#39247
  - http://data.ashrae.org/standard223/data/lbnl-example-2#39247 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#88169
  - http://data.ashrae.org/standard223/data/lbnl-example-2#88169 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#47881
  - http://data.ashrae.org/standard223/data/lbnl-example-2#47881 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#14119
  - http://data.ashrae.org/standard223/data/lbnl-example-2#14119 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#14119 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#82844
  - http://data.ashrae.org/standard223/data/lbnl-example-2#82844 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#37192
  - http://data.ashrae.org/standard223/data/lbnl-example-2#37192 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#37192 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#72960
  - http://data.ashrae.org/standard223/data/lbnl-example-2#72960 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#47111
  - http://data.ashrae.org/standard223/data/lbnl-example-2#47111 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#31562
  - http://data.ashrae.org/standard223/data/lbnl-example-2#31562 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#20861
  - http://data.ashrae.org/standard223/data/lbnl-example-2#20861 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#20861 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#95273
  - http://data.ashrae.org/standard223/data/lbnl-example-2#95273 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#97276
  - http://data.ashrae.org/standard223/data/lbnl-example-2#97276 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#52219
  - http://data.ashrae.org/standard223/data/lbnl-example-2#52219 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#37032
  - http://data.ashrae.org/standard223/data/lbnl-example-2#37032 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#08460
  - http://data.ashrae.org/standard223/data/lbnl-example-2#08460 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#51164
  - http://data.ashrae.org/standard223/data/lbnl-example-2#51164 needs between None and 1 instances of http://data.ashrae.org/standard223#ConnectionPoint on path nd13ff611a1e9486cac4ccb4d2602c7a2b2821
  - http://data.ashrae.org/standard223/data/lbnl-example-2#51164 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#33745
  - http://data.ashrae.org/standard223/data/lbnl-example-2#33745 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#46374
  - http://data.ashrae.org/standard223/data/lbnl-example-2#46374 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#18152
  - http://data.ashrae.org/standard223/data/lbnl-example-2#18152 needs between 1 and 1 uses of path http://data.ashrae.org/standard223#hasObservationLocation
http://data.ashrae.org/standard223/data/lbnl-example-2#07222
  - http://data.ashrae.org/standard223/data/lbnl-example-2#07222 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#07222 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#36099
  - http://data.ashrae.org/standard223/data/lbnl-example-2#36099 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#31018
  - http://data.ashrae.org/standard223/data/lbnl-example-2#31018 needs between None and 1 instances of http://data.ashrae.org/standard223#ConnectionPoint on path nd13ff611a1e9486cac4ccb4d2602c7a2b1988
  - http://data.ashrae.org/standard223/data/lbnl-example-2#31018 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#63848
  - http://data.ashrae.org/standard223/data/lbnl-example-2#63848 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#24250
  - http://data.ashrae.org/standard223/data/lbnl-example-2#24250 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#12438
  - http://data.ashrae.org/standard223/data/lbnl-example-2#12438 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#12438 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#91853
  - http://data.ashrae.org/standard223/data/lbnl-example-2#91853 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#91853 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#99413
  - http://data.ashrae.org/standard223/data/lbnl-example-2#99413 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#61489
  - http://data.ashrae.org/standard223/data/lbnl-example-2#61489 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#38627
  - http://data.ashrae.org/standard223/data/lbnl-example-2#38627 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#38627 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#71446
  - http://data.ashrae.org/standard223/data/lbnl-example-2#71446 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#69116
  - http://data.ashrae.org/standard223/data/lbnl-example-2#69116 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#45963
  - http://data.ashrae.org/standard223/data/lbnl-example-2#45963 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#17598
  - http://data.ashrae.org/standard223/data/lbnl-example-2#17598 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#92197
  - http://data.ashrae.org/standard223/data/lbnl-example-2#92197 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#92197 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#05101
  - http://data.ashrae.org/standard223/data/lbnl-example-2#05101 needs between 1 and 1 instances of http://data.ashrae.org/standard223#Substance-Medium on path http://data.ashrae.org/standard223#hasMedium
http://data.ashrae.org/standard223/data/lbnl-example-2#34277
  - http://data.ashrae.org/standard223/data/lbnl-example-2#34277 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#89000
  - http://data.ashrae.org/standard223/data/lbnl-example-2#89000 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#46031
  - http://data.ashrae.org/standard223/data/lbnl-example-2#46031 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#49486
  - http://data.ashrae.org/standard223/data/lbnl-example-2#49486 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#05086
  - http://data.ashrae.org/standard223/data/lbnl-example-2#05086 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#29739
  - http://data.ashrae.org/standard223/data/lbnl-example-2#29739 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#09379
  - http://data.ashrae.org/standard223/data/lbnl-example-2#09379 needs to be a http://data.ashrae.org/standard223#Substance-Medium
  - http://data.ashrae.org/standard223/data/lbnl-example-2#09379 needs between None and 1 instances of http://data.ashrae.org/standard223#ConnectionPoint on path nd13ff611a1e9486cac4ccb4d2602c7a2b3458
http://data.ashrae.org/standard223/data/lbnl-example-2#58281
  - http://data.ashrae.org/standard223/data/lbnl-example-2#58281 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#28200
  - http://data.ashrae.org/standard223/data/lbnl-example-2#28200 needs to be a http://data.ashrae.org/standard223#Substance-Medium
  - http://data.ashrae.org/standard223/data/lbnl-example-2#28200 needs between None and 1 instances of http://data.ashrae.org/standard223#ConnectionPoint on path nd13ff611a1e9486cac4ccb4d2602c7a2b57
http://data.ashrae.org/standard223/data/lbnl-example-2#82486
  - http://data.ashrae.org/standard223/data/lbnl-example-2#82486 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#18751
  - http://data.ashrae.org/standard223/data/lbnl-example-2#18751 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#58818
  - http://data.ashrae.org/standard223/data/lbnl-example-2#58818 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#30054
  - http://data.ashrae.org/standard223/data/lbnl-example-2#30054 needs to be a http://data.ashrae.org/standard223#Substance-Medium
  - http://data.ashrae.org/standard223/data/lbnl-example-2#30054 needs between None and 1 instances of http://data.ashrae.org/standard223#ConnectionPoint on path nd13ff611a1e9486cac4ccb4d2602c7a2b1138
http://data.ashrae.org/standard223/data/lbnl-example-2#70362
  - http://data.ashrae.org/standard223/data/lbnl-example-2#70362 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#04646
  - http://data.ashrae.org/standard223/data/lbnl-example-2#04646 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#79613
  - http://data.ashrae.org/standard223/data/lbnl-example-2#79613 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#77006
  - http://data.ashrae.org/standard223/data/lbnl-example-2#77006 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#12218
  - http://data.ashrae.org/standard223/data/lbnl-example-2#12218 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#99378
  - http://data.ashrae.org/standard223/data/lbnl-example-2#99378 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#22936
  - http://data.ashrae.org/standard223/data/lbnl-example-2#22936 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#93913
  - http://data.ashrae.org/standard223/data/lbnl-example-2#93913 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#35606
  - http://data.ashrae.org/standard223/data/lbnl-example-2#35606 needs to be a http://data.ashrae.org/standard223#Substance-Medium
  - http://data.ashrae.org/standard223/data/lbnl-example-2#35606 needs between None and 1 instances of http://data.ashrae.org/standard223#ConnectionPoint on path nd13ff611a1e9486cac4ccb4d2602c7a2b48
http://data.ashrae.org/standard223/data/lbnl-example-2#40095
  - http://data.ashrae.org/standard223/data/lbnl-example-2#40095 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#62103
  - http://data.ashrae.org/standard223/data/lbnl-example-2#62103 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#22976
  - http://data.ashrae.org/standard223/data/lbnl-example-2#22976 needs between None and 1 instances of http://data.ashrae.org/standard223#ConnectionPoint on path nd13ff611a1e9486cac4ccb4d2602c7a2b2162
  - http://data.ashrae.org/standard223/data/lbnl-example-2#22976 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#10430
  - http://data.ashrae.org/standard223/data/lbnl-example-2#10430 needs between None and 1 instances of http://data.ashrae.org/standard223#ConnectionPoint on path nd13ff611a1e9486cac4ccb4d2602c7a2b491
  - http://data.ashrae.org/standard223/data/lbnl-example-2#10430 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#09473
  - http://data.ashrae.org/standard223/data/lbnl-example-2#09473 needs to be a http://data.ashrae.org/standard223#Function
http://data.ashrae.org/standard223/data/lbnl-example-2#59507
  - http://data.ashrae.org/standard223/data/lbnl-example-2#59507 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#37818
  - http://data.ashrae.org/standard223/data/lbnl-example-2#37818 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#33232
  - http://data.ashrae.org/standard223/data/lbnl-example-2#33232 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#80062
  - http://data.ashrae.org/standard223/data/lbnl-example-2#80062 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#28842
  - http://data.ashrae.org/standard223/data/lbnl-example-2#28842 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#60850
  - http://data.ashrae.org/standard223/data/lbnl-example-2#60850 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#38157
  - http://data.ashrae.org/standard223/data/lbnl-example-2#38157 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#35508
  - http://data.ashrae.org/standard223/data/lbnl-example-2#35508 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#58251
  - http://data.ashrae.org/standard223/data/lbnl-example-2#58251 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#58251 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#69109
  - http://data.ashrae.org/standard223/data/lbnl-example-2#69109 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#56611
  - http://data.ashrae.org/standard223/data/lbnl-example-2#56611 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#56611 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#42054
  - http://data.ashrae.org/standard223/data/lbnl-example-2#42054 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#86877
  - http://data.ashrae.org/standard223/data/lbnl-example-2#86877 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#74360
  - http://data.ashrae.org/standard223/data/lbnl-example-2#74360 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#74360 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#75434
  - http://data.ashrae.org/standard223/data/lbnl-example-2#75434 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#49336
  - http://data.ashrae.org/standard223/data/lbnl-example-2#49336 needs to be a http://data.ashrae.org/standard223#Substance-Medium
  - http://data.ashrae.org/standard223/data/lbnl-example-2#49336 needs between None and 1 instances of http://data.ashrae.org/standard223#ConnectionPoint on path nd13ff611a1e9486cac4ccb4d2602c7a2b373
http://data.ashrae.org/standard223/data/lbnl-example-2#17179
  - http://data.ashrae.org/standard223/data/lbnl-example-2#17179 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#59156
  - http://data.ashrae.org/standard223/data/lbnl-example-2#59156 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#15903
  - http://data.ashrae.org/standard223/data/lbnl-example-2#15903 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#27827
  - http://data.ashrae.org/standard223/data/lbnl-example-2#27827 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#17295
  - http://data.ashrae.org/standard223/data/lbnl-example-2#17295 needs between 1 and 1 uses of path http://data.ashrae.org/standard223#hasObservationLocation
http://data.ashrae.org/standard223/data/lbnl-example-2#20292
  - http://data.ashrae.org/standard223/data/lbnl-example-2#20292 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#39866
  - http://data.ashrae.org/standard223/data/lbnl-example-2#39866 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#69563
  - http://data.ashrae.org/standard223/data/lbnl-example-2#69563 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#22932
  - http://data.ashrae.org/standard223/data/lbnl-example-2#22932 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#88184
  - http://data.ashrae.org/standard223/data/lbnl-example-2#88184 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#31827
  - http://data.ashrae.org/standard223/data/lbnl-example-2#31827 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#65267
  - http://data.ashrae.org/standard223/data/lbnl-example-2#65267 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#76232
  - http://data.ashrae.org/standard223/data/lbnl-example-2#76232 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#56565
  - http://data.ashrae.org/standard223/data/lbnl-example-2#56565 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#84378
  - http://data.ashrae.org/standard223/data/lbnl-example-2#84378 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#38144
  - http://data.ashrae.org/standard223/data/lbnl-example-2#38144 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#04912
  - http://data.ashrae.org/standard223/data/lbnl-example-2#04912 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#31650
  - http://data.ashrae.org/standard223/data/lbnl-example-2#31650 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#91202
  - http://data.ashrae.org/standard223/data/lbnl-example-2#91202 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#53704
  - http://data.ashrae.org/standard223/data/lbnl-example-2#53704 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#89781
  - http://data.ashrae.org/standard223/data/lbnl-example-2#89781 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#73305
  - http://data.ashrae.org/standard223/data/lbnl-example-2#73305 needs to be a http://data.ashrae.org/standard223#Substance-Medium
  - http://data.ashrae.org/standard223/data/lbnl-example-2#73305 needs between None and 1 instances of http://data.ashrae.org/standard223#ConnectionPoint on path nd13ff611a1e9486cac4ccb4d2602c7a2b1676
http://data.ashrae.org/standard223/data/lbnl-example-2#32040
  - http://data.ashrae.org/standard223/data/lbnl-example-2#32040 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#36453
  - http://data.ashrae.org/standard223/data/lbnl-example-2#36453 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#13472
  - http://data.ashrae.org/standard223/data/lbnl-example-2#13472 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#03772
  - http://data.ashrae.org/standard223/data/lbnl-example-2#03772 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#70668
  - http://data.ashrae.org/standard223/data/lbnl-example-2#70668 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#72185
  - http://data.ashrae.org/standard223/data/lbnl-example-2#72185 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#72185 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#65905
  - http://data.ashrae.org/standard223/data/lbnl-example-2#65905 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#78883
  - http://data.ashrae.org/standard223/data/lbnl-example-2#78883 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#27115
  - http://data.ashrae.org/standard223/data/lbnl-example-2#27115 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#40300
  - http://data.ashrae.org/standard223/data/lbnl-example-2#40300 needs between None and 1 instances of http://data.ashrae.org/standard223#ConnectionPoint on path nd13ff611a1e9486cac4ccb4d2602c7a2b3294
  - http://data.ashrae.org/standard223/data/lbnl-example-2#40300 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#96338
  - http://data.ashrae.org/standard223/data/lbnl-example-2#96338 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#85673
  - http://data.ashrae.org/standard223/data/lbnl-example-2#85673 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#97304
  - http://data.ashrae.org/standard223/data/lbnl-example-2#97304 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#11429
  - http://data.ashrae.org/standard223/data/lbnl-example-2#11429 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#91176
  - http://data.ashrae.org/standard223/data/lbnl-example-2#91176 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#28817
  - http://data.ashrae.org/standard223/data/lbnl-example-2#28817 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#10168
  - http://data.ashrae.org/standard223/data/lbnl-example-2#10168 needs to be a http://data.ashrae.org/standard223#Substance-Medium
  - http://data.ashrae.org/standard223/data/lbnl-example-2#10168 needs between None and 1 instances of http://data.ashrae.org/standard223#ConnectionPoint on path nd13ff611a1e9486cac4ccb4d2602c7a2b2960
http://data.ashrae.org/standard223/data/lbnl-example-2#30599
  - http://data.ashrae.org/standard223/data/lbnl-example-2#30599 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#49730
  - http://data.ashrae.org/standard223/data/lbnl-example-2#49730 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#49730 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#64361
  - http://data.ashrae.org/standard223/data/lbnl-example-2#64361 needs between None and 1 instances of http://data.ashrae.org/standard223#ConnectionPoint on path nd13ff611a1e9486cac4ccb4d2602c7a2b2833
  - http://data.ashrae.org/standard223/data/lbnl-example-2#64361 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#88346
  - http://data.ashrae.org/standard223/data/lbnl-example-2#88346 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#06755
  - http://data.ashrae.org/standard223/data/lbnl-example-2#06755 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#46466
  - http://data.ashrae.org/standard223/data/lbnl-example-2#46466 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#89220
  - http://data.ashrae.org/standard223/data/lbnl-example-2#89220 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#93617
  - http://data.ashrae.org/standard223/data/lbnl-example-2#93617 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#18214
  - http://data.ashrae.org/standard223/data/lbnl-example-2#18214 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#36177
  - http://data.ashrae.org/standard223/data/lbnl-example-2#36177 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#34379
  - http://data.ashrae.org/standard223/data/lbnl-example-2#34379 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#59407
  - http://data.ashrae.org/standard223/data/lbnl-example-2#59407 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#05873
  - http://data.ashrae.org/standard223/data/lbnl-example-2#05873 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#19014
  - http://data.ashrae.org/standard223/data/lbnl-example-2#19014 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#19014 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#66606
  - http://data.ashrae.org/standard223/data/lbnl-example-2#66606 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#68474
  - http://data.ashrae.org/standard223/data/lbnl-example-2#68474 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#68474 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#03003
  - http://data.ashrae.org/standard223/data/lbnl-example-2#03003 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#88163
  - http://data.ashrae.org/standard223/data/lbnl-example-2#88163 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#25163
  - http://data.ashrae.org/standard223/data/lbnl-example-2#25163 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#03503
  - http://data.ashrae.org/standard223/data/lbnl-example-2#03503 needs between None and 1 instances of http://data.ashrae.org/standard223#ConnectionPoint on path nd13ff611a1e9486cac4ccb4d2602c7a2b290
  - http://data.ashrae.org/standard223/data/lbnl-example-2#03503 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#40109
  - http://data.ashrae.org/standard223/data/lbnl-example-2#40109 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#07961
  - http://data.ashrae.org/standard223/data/lbnl-example-2#07961 needs to be a http://data.ashrae.org/standard223#Substance-Medium
  - http://data.ashrae.org/standard223/data/lbnl-example-2#07961 needs between None and 1 instances of http://data.ashrae.org/standard223#ConnectionPoint on path nd13ff611a1e9486cac4ccb4d2602c7a2b2541
http://data.ashrae.org/standard223/data/lbnl-example-2#55198
  - http://data.ashrae.org/standard223/data/lbnl-example-2#55198 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#55198 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#62383
  - http://data.ashrae.org/standard223/data/lbnl-example-2#62383 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#62383 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#98697
  - http://data.ashrae.org/standard223/data/lbnl-example-2#98697 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#13702
  - http://data.ashrae.org/standard223/data/lbnl-example-2#13702 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#82262
  - http://data.ashrae.org/standard223/data/lbnl-example-2#82262 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#82262 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#73810
  - http://data.ashrae.org/standard223/data/lbnl-example-2#73810 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#01874
  - http://data.ashrae.org/standard223/data/lbnl-example-2#01874 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#14620
  - http://data.ashrae.org/standard223/data/lbnl-example-2#14620 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#80679
  - http://data.ashrae.org/standard223/data/lbnl-example-2#80679 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#66976
  - http://data.ashrae.org/standard223/data/lbnl-example-2#66976 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#42765
  - http://data.ashrae.org/standard223/data/lbnl-example-2#42765 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#82977
  - http://data.ashrae.org/standard223/data/lbnl-example-2#82977 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#61942
  - http://data.ashrae.org/standard223/data/lbnl-example-2#61942 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#43285
  - http://data.ashrae.org/standard223/data/lbnl-example-2#43285 needs to be a http://data.ashrae.org/standard223#Substance-Medium
  - http://data.ashrae.org/standard223/data/lbnl-example-2#43285 needs between None and 1 instances of http://data.ashrae.org/standard223#ConnectionPoint on path nd13ff611a1e9486cac4ccb4d2602c7a2b2840
http://data.ashrae.org/standard223/data/lbnl-example-2#75984
  - http://data.ashrae.org/standard223/data/lbnl-example-2#75984 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#04879
  - http://data.ashrae.org/standard223/data/lbnl-example-2#04879 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#97101
  - http://data.ashrae.org/standard223/data/lbnl-example-2#97101 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#73637
  - http://data.ashrae.org/standard223/data/lbnl-example-2#73637 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#56948
  - http://data.ashrae.org/standard223/data/lbnl-example-2#56948 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#56948 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#30894
  - http://data.ashrae.org/standard223/data/lbnl-example-2#30894 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#27223
  - http://data.ashrae.org/standard223/data/lbnl-example-2#27223 needs between None and 1 instances of http://data.ashrae.org/standard223#ConnectionPoint on path nd13ff611a1e9486cac4ccb4d2602c7a2b1099
  - http://data.ashrae.org/standard223/data/lbnl-example-2#27223 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#68703
  - http://data.ashrae.org/standard223/data/lbnl-example-2#68703 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#60707
  - http://data.ashrae.org/standard223/data/lbnl-example-2#60707 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#31095
  - http://data.ashrae.org/standard223/data/lbnl-example-2#31095 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#27329
  - http://data.ashrae.org/standard223/data/lbnl-example-2#27329 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#86986
  - http://data.ashrae.org/standard223/data/lbnl-example-2#86986 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#48548
  - http://data.ashrae.org/standard223/data/lbnl-example-2#48548 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#15832
  - http://data.ashrae.org/standard223/data/lbnl-example-2#15832 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#37516
  - http://data.ashrae.org/standard223/data/lbnl-example-2#37516 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#54539
  - http://data.ashrae.org/standard223/data/lbnl-example-2#54539 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#93455
  - http://data.ashrae.org/standard223/data/lbnl-example-2#93455 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#73024
  - http://data.ashrae.org/standard223/data/lbnl-example-2#73024 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#73024 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#19220
  - http://data.ashrae.org/standard223/data/lbnl-example-2#19220 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#19220 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#41979
  - http://data.ashrae.org/standard223/data/lbnl-example-2#41979 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#50319
  - http://data.ashrae.org/standard223/data/lbnl-example-2#50319 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#09596
  - http://data.ashrae.org/standard223/data/lbnl-example-2#09596 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#80091
  - http://data.ashrae.org/standard223/data/lbnl-example-2#80091 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#16633
  - http://data.ashrae.org/standard223/data/lbnl-example-2#16633 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#12857
  - http://data.ashrae.org/standard223/data/lbnl-example-2#12857 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#47059
  - http://data.ashrae.org/standard223/data/lbnl-example-2#47059 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#09753
  - http://data.ashrae.org/standard223/data/lbnl-example-2#09753 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#40470
  - http://data.ashrae.org/standard223/data/lbnl-example-2#40470 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#75613
  - http://data.ashrae.org/standard223/data/lbnl-example-2#75613 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#03860
  - http://data.ashrae.org/standard223/data/lbnl-example-2#03860 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#03860 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#09852
  - http://data.ashrae.org/standard223/data/lbnl-example-2#09852 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#50604
  - http://data.ashrae.org/standard223/data/lbnl-example-2#50604 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#50714
  - http://data.ashrae.org/standard223/data/lbnl-example-2#50714 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#66422
  - http://data.ashrae.org/standard223/data/lbnl-example-2#66422 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#85482
  - http://data.ashrae.org/standard223/data/lbnl-example-2#85482 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#76708
  - http://data.ashrae.org/standard223/data/lbnl-example-2#76708 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#76708 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#07708
  - http://data.ashrae.org/standard223/data/lbnl-example-2#07708 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#85905
  - http://data.ashrae.org/standard223/data/lbnl-example-2#85905 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#12117
  - http://data.ashrae.org/standard223/data/lbnl-example-2#12117 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#99750
  - http://data.ashrae.org/standard223/data/lbnl-example-2#99750 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#51238
  - http://data.ashrae.org/standard223/data/lbnl-example-2#51238 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#51238 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#88028
  - http://data.ashrae.org/standard223/data/lbnl-example-2#88028 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#07088
  - http://data.ashrae.org/standard223/data/lbnl-example-2#07088 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#47769
  - http://data.ashrae.org/standard223/data/lbnl-example-2#47769 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#26345
  - http://data.ashrae.org/standard223/data/lbnl-example-2#26345 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#71091
  - http://data.ashrae.org/standard223/data/lbnl-example-2#71091 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#82619
  - http://data.ashrae.org/standard223/data/lbnl-example-2#82619 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#82619 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#91232
  - http://data.ashrae.org/standard223/data/lbnl-example-2#91232 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#21349
  - http://data.ashrae.org/standard223/data/lbnl-example-2#21349 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#06476
  - http://data.ashrae.org/standard223/data/lbnl-example-2#06476 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#21295
  - http://data.ashrae.org/standard223/data/lbnl-example-2#21295 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#42696
  - http://data.ashrae.org/standard223/data/lbnl-example-2#42696 needs to be a http://data.ashrae.org/standard223#Substance-Medium
  - http://data.ashrae.org/standard223/data/lbnl-example-2#42696 needs between None and 1 instances of http://data.ashrae.org/standard223#ConnectionPoint on path nd13ff611a1e9486cac4ccb4d2602c7a2b1591
http://data.ashrae.org/standard223/data/lbnl-example-2#28576
  - http://data.ashrae.org/standard223/data/lbnl-example-2#28576 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#22267
  - http://data.ashrae.org/standard223/data/lbnl-example-2#22267 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#04901
  - http://data.ashrae.org/standard223/data/lbnl-example-2#04901 needs to be a http://data.ashrae.org/standard223#Substance-Medium
  - http://data.ashrae.org/standard223/data/lbnl-example-2#04901 needs between None and 1 instances of http://data.ashrae.org/standard223#ConnectionPoint on path nd13ff611a1e9486cac4ccb4d2602c7a2b1475
http://data.ashrae.org/standard223/data/lbnl-example-2#41833
  - http://data.ashrae.org/standard223/data/lbnl-example-2#41833 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#50397
  - http://data.ashrae.org/standard223/data/lbnl-example-2#50397 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#70830
  - http://data.ashrae.org/standard223/data/lbnl-example-2#70830 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#00287
  - http://data.ashrae.org/standard223/data/lbnl-example-2#00287 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#51197
  - http://data.ashrae.org/standard223/data/lbnl-example-2#51197 needs to be a http://data.ashrae.org/standard223#Substance-Medium
  - http://data.ashrae.org/standard223/data/lbnl-example-2#51197 needs between None and 1 instances of http://data.ashrae.org/standard223#ConnectionPoint on path nd13ff611a1e9486cac4ccb4d2602c7a2b1934
http://data.ashrae.org/standard223/data/lbnl-example-2#00024
  - http://data.ashrae.org/standard223/data/lbnl-example-2#00024 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#54268
  - http://data.ashrae.org/standard223/data/lbnl-example-2#54268 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#35410
  - http://data.ashrae.org/standard223/data/lbnl-example-2#35410 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#12423
  - http://data.ashrae.org/standard223/data/lbnl-example-2#12423 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#87151
  - http://data.ashrae.org/standard223/data/lbnl-example-2#87151 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#21298
  - http://data.ashrae.org/standard223/data/lbnl-example-2#21298 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#68940
  - http://data.ashrae.org/standard223/data/lbnl-example-2#68940 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#53679
  - http://data.ashrae.org/standard223/data/lbnl-example-2#53679 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#53679 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#95093
  - http://data.ashrae.org/standard223/data/lbnl-example-2#95093 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#30312
  - http://data.ashrae.org/standard223/data/lbnl-example-2#30312 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#30312 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#40409
  - http://data.ashrae.org/standard223/data/lbnl-example-2#40409 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#65843
  - http://data.ashrae.org/standard223/data/lbnl-example-2#65843 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#48959
  - http://data.ashrae.org/standard223/data/lbnl-example-2#48959 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#57774
  - http://data.ashrae.org/standard223/data/lbnl-example-2#57774 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#02861
  - http://data.ashrae.org/standard223/data/lbnl-example-2#02861 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#73870
  - http://data.ashrae.org/standard223/data/lbnl-example-2#73870 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#78283
  - http://data.ashrae.org/standard223/data/lbnl-example-2#78283 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#52909
  - http://data.ashrae.org/standard223/data/lbnl-example-2#52909 needs between None and 1 instances of http://data.ashrae.org/standard223#ConnectionPoint on path nd13ff611a1e9486cac4ccb4d2602c7a2b3268
  - http://data.ashrae.org/standard223/data/lbnl-example-2#52909 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#73928
  - http://data.ashrae.org/standard223/data/lbnl-example-2#73928 needs between 1 and 1 uses of path http://data.ashrae.org/standard223#hasObservationLocation
http://data.ashrae.org/standard223/data/lbnl-example-2#42273
  - http://data.ashrae.org/standard223/data/lbnl-example-2#42273 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#11879
  - http://data.ashrae.org/standard223/data/lbnl-example-2#11879 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#59125
  - http://data.ashrae.org/standard223/data/lbnl-example-2#59125 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#76954
  - http://data.ashrae.org/standard223/data/lbnl-example-2#76954 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#84620
  - http://data.ashrae.org/standard223/data/lbnl-example-2#84620 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#84620 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#83482
  - http://data.ashrae.org/standard223/data/lbnl-example-2#83482 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#70230
  - http://data.ashrae.org/standard223/data/lbnl-example-2#70230 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#70230 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#06055
  - http://data.ashrae.org/standard223/data/lbnl-example-2#06055 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#34268
  - http://data.ashrae.org/standard223/data/lbnl-example-2#34268 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#47847
  - http://data.ashrae.org/standard223/data/lbnl-example-2#47847 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#60625
  - http://data.ashrae.org/standard223/data/lbnl-example-2#60625 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#15879
  - http://data.ashrae.org/standard223/data/lbnl-example-2#15879 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#43983
  - http://data.ashrae.org/standard223/data/lbnl-example-2#43983 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#47009
  - http://data.ashrae.org/standard223/data/lbnl-example-2#47009 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#02517
  - http://data.ashrae.org/standard223/data/lbnl-example-2#02517 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#06054
  - http://data.ashrae.org/standard223/data/lbnl-example-2#06054 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#69130
  - http://data.ashrae.org/standard223/data/lbnl-example-2#69130 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#82894
  - http://data.ashrae.org/standard223/data/lbnl-example-2#82894 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#45429
  - http://data.ashrae.org/standard223/data/lbnl-example-2#45429 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#45429 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#17361
  - http://data.ashrae.org/standard223/data/lbnl-example-2#17361 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#17361 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#46907
  - http://data.ashrae.org/standard223/data/lbnl-example-2#46907 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#46907 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#85048
  - http://data.ashrae.org/standard223/data/lbnl-example-2#85048 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#19877
  - http://data.ashrae.org/standard223/data/lbnl-example-2#19877 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#26456
  - http://data.ashrae.org/standard223/data/lbnl-example-2#26456 needs between None and 1 instances of http://data.ashrae.org/standard223#ConnectionPoint on path nd13ff611a1e9486cac4ccb4d2602c7a2b667
  - http://data.ashrae.org/standard223/data/lbnl-example-2#26456 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#72643
  - http://data.ashrae.org/standard223/data/lbnl-example-2#72643 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#41941
  - http://data.ashrae.org/standard223/data/lbnl-example-2#41941 needs between 1 and 1 uses of path http://data.ashrae.org/standard223#hasObservationLocation
http://data.ashrae.org/standard223/data/lbnl-example-2#76894
  - http://data.ashrae.org/standard223/data/lbnl-example-2#76894 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#54585
  - http://data.ashrae.org/standard223/data/lbnl-example-2#54585 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#47785
  - http://data.ashrae.org/standard223/data/lbnl-example-2#47785 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#47278
  - http://data.ashrae.org/standard223/data/lbnl-example-2#47278 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#22163
  - http://data.ashrae.org/standard223/data/lbnl-example-2#22163 needs to be a http://data.ashrae.org/standard223#Substance-Medium
  - http://data.ashrae.org/standard223/data/lbnl-example-2#22163 needs between None and 1 instances of http://data.ashrae.org/standard223#ConnectionPoint on path nd13ff611a1e9486cac4ccb4d2602c7a2b792
http://data.ashrae.org/standard223/data/lbnl-example-2#11513
  - http://data.ashrae.org/standard223/data/lbnl-example-2#11513 needs between None and 1 instances of http://data.ashrae.org/standard223#ConnectionPoint on path nd13ff611a1e9486cac4ccb4d2602c7a2b585
  - http://data.ashrae.org/standard223/data/lbnl-example-2#11513 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#72250
  - http://data.ashrae.org/standard223/data/lbnl-example-2#72250 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#87860
  - http://data.ashrae.org/standard223/data/lbnl-example-2#87860 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#82356
  - http://data.ashrae.org/standard223/data/lbnl-example-2#82356 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#64435
  - http://data.ashrae.org/standard223/data/lbnl-example-2#64435 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#64435 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#78087
  - http://data.ashrae.org/standard223/data/lbnl-example-2#78087 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#23239
  - http://data.ashrae.org/standard223/data/lbnl-example-2#23239 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#38396
  - http://data.ashrae.org/standard223/data/lbnl-example-2#38396 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#68980
  - http://data.ashrae.org/standard223/data/lbnl-example-2#68980 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#11398
  - http://data.ashrae.org/standard223/data/lbnl-example-2#11398 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#74699
  - http://data.ashrae.org/standard223/data/lbnl-example-2#74699 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#74699 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#64164
  - http://data.ashrae.org/standard223/data/lbnl-example-2#64164 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#00617
  - http://data.ashrae.org/standard223/data/lbnl-example-2#00617 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#41291
  - http://data.ashrae.org/standard223/data/lbnl-example-2#41291 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#11279
  - http://data.ashrae.org/standard223/data/lbnl-example-2#11279 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#01864
  - http://data.ashrae.org/standard223/data/lbnl-example-2#01864 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#06299
  - http://data.ashrae.org/standard223/data/lbnl-example-2#06299 needs to be a http://data.ashrae.org/standard223#Substance-Medium
  - http://data.ashrae.org/standard223/data/lbnl-example-2#06299 needs between None and 1 instances of http://data.ashrae.org/standard223#ConnectionPoint on path nd13ff611a1e9486cac4ccb4d2602c7a2b365
http://data.ashrae.org/standard223/data/lbnl-example-2#40685
  - http://data.ashrae.org/standard223/data/lbnl-example-2#40685 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#01401
  - http://data.ashrae.org/standard223/data/lbnl-example-2#01401 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#20269
  - http://data.ashrae.org/standard223/data/lbnl-example-2#20269 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#31603
  - http://data.ashrae.org/standard223/data/lbnl-example-2#31603 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#40609
  - http://data.ashrae.org/standard223/data/lbnl-example-2#40609 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#11858
  - http://data.ashrae.org/standard223/data/lbnl-example-2#11858 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#11303
  - http://data.ashrae.org/standard223/data/lbnl-example-2#11303 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#71329
  - http://data.ashrae.org/standard223/data/lbnl-example-2#71329 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#71329 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#08907
  - http://data.ashrae.org/standard223/data/lbnl-example-2#08907 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#46761
  - http://data.ashrae.org/standard223/data/lbnl-example-2#46761 needs between None and 1 instances of http://data.ashrae.org/standard223#ConnectionPoint on path nd13ff611a1e9486cac4ccb4d2602c7a2b1851
  - http://data.ashrae.org/standard223/data/lbnl-example-2#46761 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#19805
  - http://data.ashrae.org/standard223/data/lbnl-example-2#19805 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#19805 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#05353
  - http://data.ashrae.org/standard223/data/lbnl-example-2#05353 needs between 1 and 1 instances of http://data.ashrae.org/standard223#Substance-Medium on path http://data.ashrae.org/standard223#hasMedium
http://data.ashrae.org/standard223/data/lbnl-example-2#03863
  - http://data.ashrae.org/standard223/data/lbnl-example-2#03863 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#46202
  - http://data.ashrae.org/standard223/data/lbnl-example-2#46202 needs between 1 and 1 uses of path http://data.ashrae.org/standard223#hasObservationLocation
http://data.ashrae.org/standard223/data/lbnl-example-2#94165
  - http://data.ashrae.org/standard223/data/lbnl-example-2#94165 needs to be a http://data.ashrae.org/standard223#Substance-Medium
  - http://data.ashrae.org/standard223/data/lbnl-example-2#94165 needs between None and 1 instances of http://data.ashrae.org/standard223#ConnectionPoint on path nd13ff611a1e9486cac4ccb4d2602c7a2b1428
http://data.ashrae.org/standard223/data/lbnl-example-2#70008
  - http://data.ashrae.org/standard223/data/lbnl-example-2#70008 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#27844
  - http://data.ashrae.org/standard223/data/lbnl-example-2#27844 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#51911
  - http://data.ashrae.org/standard223/data/lbnl-example-2#51911 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#80960
  - http://data.ashrae.org/standard223/data/lbnl-example-2#80960 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#57776
  - http://data.ashrae.org/standard223/data/lbnl-example-2#57776 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#57776 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#82063
  - http://data.ashrae.org/standard223/data/lbnl-example-2#82063 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#56205
  - http://data.ashrae.org/standard223/data/lbnl-example-2#56205 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#81911
  - http://data.ashrae.org/standard223/data/lbnl-example-2#81911 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#38655
  - http://data.ashrae.org/standard223/data/lbnl-example-2#38655 needs between None and 1 instances of http://data.ashrae.org/standard223#ConnectionPoint on path nd13ff611a1e9486cac4ccb4d2602c7a2b3263
  - http://data.ashrae.org/standard223/data/lbnl-example-2#38655 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#23967
  - http://data.ashrae.org/standard223/data/lbnl-example-2#23967 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#09638
  - http://data.ashrae.org/standard223/data/lbnl-example-2#09638 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#09638 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#52037
  - http://data.ashrae.org/standard223/data/lbnl-example-2#52037 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#46736
  - http://data.ashrae.org/standard223/data/lbnl-example-2#46736 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#22612
  - http://data.ashrae.org/standard223/data/lbnl-example-2#22612 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#52272
  - http://data.ashrae.org/standard223/data/lbnl-example-2#52272 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#04045
  - http://data.ashrae.org/standard223/data/lbnl-example-2#04045 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#62707
  - http://data.ashrae.org/standard223/data/lbnl-example-2#62707 needs to be a http://qudt.org/schema/qudt/Unit
  - http://data.ashrae.org/standard223/data/lbnl-example-2#62707 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#85492
  - http://data.ashrae.org/standard223/data/lbnl-example-2#85492 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#93276
  - http://data.ashrae.org/standard223/data/lbnl-example-2#93276 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#75390
  - http://data.ashrae.org/standard223/data/lbnl-example-2#75390 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#81897
  - http://data.ashrae.org/standard223/data/lbnl-example-2#81897 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#34554
  - http://data.ashrae.org/standard223/data/lbnl-example-2#34554 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#34188
  - http://data.ashrae.org/standard223/data/lbnl-example-2#34188 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#37038
  - http://data.ashrae.org/standard223/data/lbnl-example-2#37038 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#37038 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#23310
  - http://data.ashrae.org/standard223/data/lbnl-example-2#23310 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#40374
  - http://data.ashrae.org/standard223/data/lbnl-example-2#40374 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#25825
  - http://data.ashrae.org/standard223/data/lbnl-example-2#25825 needs between 1 and 1 uses of path http://data.ashrae.org/standard223#hasObservationLocation
http://data.ashrae.org/standard223/data/lbnl-example-2#05888
  - http://data.ashrae.org/standard223/data/lbnl-example-2#05888 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#61196
  - http://data.ashrae.org/standard223/data/lbnl-example-2#61196 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#61196 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#13581
  - http://data.ashrae.org/standard223/data/lbnl-example-2#13581 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#84040
  - http://data.ashrae.org/standard223/data/lbnl-example-2#84040 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#84040 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#70256
  - http://data.ashrae.org/standard223/data/lbnl-example-2#70256 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#83463
  - http://data.ashrae.org/standard223/data/lbnl-example-2#83463 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#50365
  - http://data.ashrae.org/standard223/data/lbnl-example-2#50365 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#10922
  - http://data.ashrae.org/standard223/data/lbnl-example-2#10922 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#13038
  - http://data.ashrae.org/standard223/data/lbnl-example-2#13038 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#07881
  - http://data.ashrae.org/standard223/data/lbnl-example-2#07881 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#26452
  - http://data.ashrae.org/standard223/data/lbnl-example-2#26452 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#37718
  - http://data.ashrae.org/standard223/data/lbnl-example-2#37718 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#87186
  - http://data.ashrae.org/standard223/data/lbnl-example-2#87186 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#51302
  - http://data.ashrae.org/standard223/data/lbnl-example-2#51302 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#64887
  - http://data.ashrae.org/standard223/data/lbnl-example-2#64887 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#64887 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#03898
  - http://data.ashrae.org/standard223/data/lbnl-example-2#03898 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#88280
  - http://data.ashrae.org/standard223/data/lbnl-example-2#88280 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#82929
  - http://data.ashrae.org/standard223/data/lbnl-example-2#82929 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#48597
  - http://data.ashrae.org/standard223/data/lbnl-example-2#48597 needs to be a http://data.ashrae.org/standard223#Substance-Medium
  - http://data.ashrae.org/standard223/data/lbnl-example-2#48597 needs between None and 1 instances of http://data.ashrae.org/standard223#ConnectionPoint on path nd13ff611a1e9486cac4ccb4d2602c7a2b251
http://data.ashrae.org/standard223/data/lbnl-example-2#08953
  - http://data.ashrae.org/standard223/data/lbnl-example-2#08953 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#30387
  - http://data.ashrae.org/standard223/data/lbnl-example-2#30387 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#95463
  - http://data.ashrae.org/standard223/data/lbnl-example-2#95463 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#63823
  - http://data.ashrae.org/standard223/data/lbnl-example-2#63823 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#16928
  - http://data.ashrae.org/standard223/data/lbnl-example-2#16928 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#84420
  - http://data.ashrae.org/standard223/data/lbnl-example-2#84420 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#34690
  - http://data.ashrae.org/standard223/data/lbnl-example-2#34690 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#49121
  - http://data.ashrae.org/standard223/data/lbnl-example-2#49121 needs between None and 1 instances of http://data.ashrae.org/standard223#ConnectionPoint on path nd13ff611a1e9486cac4ccb4d2602c7a2b2321
  - http://data.ashrae.org/standard223/data/lbnl-example-2#49121 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#17590
  - http://data.ashrae.org/standard223/data/lbnl-example-2#17590 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#08495
  - http://data.ashrae.org/standard223/data/lbnl-example-2#08495 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#08495 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#65082
  - http://data.ashrae.org/standard223/data/lbnl-example-2#65082 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#68951
  - http://data.ashrae.org/standard223/data/lbnl-example-2#68951 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#68951 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#85928
  - http://data.ashrae.org/standard223/data/lbnl-example-2#85928 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#34100
  - http://data.ashrae.org/standard223/data/lbnl-example-2#34100 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#30191
  - http://data.ashrae.org/standard223/data/lbnl-example-2#30191 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#04653
  - http://data.ashrae.org/standard223/data/lbnl-example-2#04653 needs to be a http://data.ashrae.org/standard223#Substance-Medium
  - http://data.ashrae.org/standard223/data/lbnl-example-2#04653 needs between None and 1 instances of http://data.ashrae.org/standard223#ConnectionPoint on path nd13ff611a1e9486cac4ccb4d2602c7a2b3683
http://data.ashrae.org/standard223/data/lbnl-example-2#93328
  - http://data.ashrae.org/standard223/data/lbnl-example-2#93328 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#40842
  - http://data.ashrae.org/standard223/data/lbnl-example-2#40842 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#16958
  - http://data.ashrae.org/standard223/data/lbnl-example-2#16958 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#14188
  - http://data.ashrae.org/standard223/data/lbnl-example-2#14188 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#78472
  - http://data.ashrae.org/standard223/data/lbnl-example-2#78472 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#09611
  - http://data.ashrae.org/standard223/data/lbnl-example-2#09611 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#09611 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#44522
  - http://data.ashrae.org/standard223/data/lbnl-example-2#44522 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#57596
  - http://data.ashrae.org/standard223/data/lbnl-example-2#57596 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#46293
  - http://data.ashrae.org/standard223/data/lbnl-example-2#46293 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#46293 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#95718
  - http://data.ashrae.org/standard223/data/lbnl-example-2#95718 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#68518
  - http://data.ashrae.org/standard223/data/lbnl-example-2#68518 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#09900
  - http://data.ashrae.org/standard223/data/lbnl-example-2#09900 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#09900 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#97215
  - http://data.ashrae.org/standard223/data/lbnl-example-2#97215 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#48116
  - http://data.ashrae.org/standard223/data/lbnl-example-2#48116 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#06718
  - http://data.ashrae.org/standard223/data/lbnl-example-2#06718 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#88826
  - http://data.ashrae.org/standard223/data/lbnl-example-2#88826 needs between 1 and 1 uses of path http://data.ashrae.org/standard223#hasObservationLocation
http://data.ashrae.org/standard223/data/lbnl-example-2#83422
  - http://data.ashrae.org/standard223/data/lbnl-example-2#83422 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#82856
  - http://data.ashrae.org/standard223/data/lbnl-example-2#82856 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#89973
  - http://data.ashrae.org/standard223/data/lbnl-example-2#89973 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#48347
  - http://data.ashrae.org/standard223/data/lbnl-example-2#48347 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#12638
  - http://data.ashrae.org/standard223/data/lbnl-example-2#12638 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#97401
  - http://data.ashrae.org/standard223/data/lbnl-example-2#97401 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#07051
  - http://data.ashrae.org/standard223/data/lbnl-example-2#07051 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#92535
  - http://data.ashrae.org/standard223/data/lbnl-example-2#92535 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#51828
  - http://data.ashrae.org/standard223/data/lbnl-example-2#51828 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#04274
  - http://data.ashrae.org/standard223/data/lbnl-example-2#04274 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#71498
  - http://data.ashrae.org/standard223/data/lbnl-example-2#71498 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#50261
  - http://data.ashrae.org/standard223/data/lbnl-example-2#50261 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#34559
  - http://data.ashrae.org/standard223/data/lbnl-example-2#34559 needs between 1 and 1 uses of path http://data.ashrae.org/standard223#hasObservationLocation
http://data.ashrae.org/standard223/data/lbnl-example-2#24344
  - http://data.ashrae.org/standard223/data/lbnl-example-2#24344 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#24344 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#60631
  - http://data.ashrae.org/standard223/data/lbnl-example-2#60631 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#92540
  - http://data.ashrae.org/standard223/data/lbnl-example-2#92540 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#15997
  - http://data.ashrae.org/standard223/data/lbnl-example-2#15997 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#79003
  - http://data.ashrae.org/standard223/data/lbnl-example-2#79003 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#56272
  - http://data.ashrae.org/standard223/data/lbnl-example-2#56272 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#77276
  - http://data.ashrae.org/standard223/data/lbnl-example-2#77276 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#09442
  - http://data.ashrae.org/standard223/data/lbnl-example-2#09442 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#16617
  - http://data.ashrae.org/standard223/data/lbnl-example-2#16617 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#33619
  - http://data.ashrae.org/standard223/data/lbnl-example-2#33619 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#60170
  - http://data.ashrae.org/standard223/data/lbnl-example-2#60170 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#08108
  - http://data.ashrae.org/standard223/data/lbnl-example-2#08108 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#84841
  - http://data.ashrae.org/standard223/data/lbnl-example-2#84841 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#55637
  - http://data.ashrae.org/standard223/data/lbnl-example-2#55637 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#72380
  - http://data.ashrae.org/standard223/data/lbnl-example-2#72380 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#53271
  - http://data.ashrae.org/standard223/data/lbnl-example-2#53271 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#57984
  - http://data.ashrae.org/standard223/data/lbnl-example-2#57984 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#11473
  - http://data.ashrae.org/standard223/data/lbnl-example-2#11473 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#77207
  - http://data.ashrae.org/standard223/data/lbnl-example-2#77207 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#50224
  - http://data.ashrae.org/standard223/data/lbnl-example-2#50224 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#87105
  - http://data.ashrae.org/standard223/data/lbnl-example-2#87105 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#92085
  - http://data.ashrae.org/standard223/data/lbnl-example-2#92085 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#53581
  - http://data.ashrae.org/standard223/data/lbnl-example-2#53581 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#18240
  - http://data.ashrae.org/standard223/data/lbnl-example-2#18240 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#85390
  - http://data.ashrae.org/standard223/data/lbnl-example-2#85390 needs to be a http://data.ashrae.org/standard223#Substance-Medium
  - http://data.ashrae.org/standard223/data/lbnl-example-2#85390 needs between None and 1 instances of http://data.ashrae.org/standard223#ConnectionPoint on path nd13ff611a1e9486cac4ccb4d2602c7a2b1247
http://data.ashrae.org/standard223/data/lbnl-example-2#82635
  - http://data.ashrae.org/standard223/data/lbnl-example-2#82635 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#09291
  - http://data.ashrae.org/standard223/data/lbnl-example-2#09291 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#27784
  - http://data.ashrae.org/standard223/data/lbnl-example-2#27784 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#67959
  - http://data.ashrae.org/standard223/data/lbnl-example-2#67959 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#61895
  - http://data.ashrae.org/standard223/data/lbnl-example-2#61895 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#48268
  - http://data.ashrae.org/standard223/data/lbnl-example-2#48268 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#72880
  - http://data.ashrae.org/standard223/data/lbnl-example-2#72880 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#31065
  - http://data.ashrae.org/standard223/data/lbnl-example-2#31065 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#33944
  - http://data.ashrae.org/standard223/data/lbnl-example-2#33944 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#46438
  - http://data.ashrae.org/standard223/data/lbnl-example-2#46438 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#80693
  - http://data.ashrae.org/standard223/data/lbnl-example-2#80693 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#80693 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#18936
  - http://data.ashrae.org/standard223/data/lbnl-example-2#18936 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#12321
  - http://data.ashrae.org/standard223/data/lbnl-example-2#12321 needs to be a http://data.ashrae.org/standard223#Substance-Medium
  - http://data.ashrae.org/standard223/data/lbnl-example-2#12321 needs between None and 1 instances of http://data.ashrae.org/standard223#ConnectionPoint on path nd13ff611a1e9486cac4ccb4d2602c7a2b2044
http://data.ashrae.org/standard223/data/lbnl-example-2#49227
  - http://data.ashrae.org/standard223/data/lbnl-example-2#49227 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#06115
  - http://data.ashrae.org/standard223/data/lbnl-example-2#06115 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#94180
  - http://data.ashrae.org/standard223/data/lbnl-example-2#94180 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#51451
  - http://data.ashrae.org/standard223/data/lbnl-example-2#51451 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#35174
  - http://data.ashrae.org/standard223/data/lbnl-example-2#35174 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#45896
  - http://data.ashrae.org/standard223/data/lbnl-example-2#45896 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#45896 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#34440
  - http://data.ashrae.org/standard223/data/lbnl-example-2#34440 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#01637
  - http://data.ashrae.org/standard223/data/lbnl-example-2#01637 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#05363
  - http://data.ashrae.org/standard223/data/lbnl-example-2#05363 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#92091
  - http://data.ashrae.org/standard223/data/lbnl-example-2#92091 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#34996
  - http://data.ashrae.org/standard223/data/lbnl-example-2#34996 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#76009
  - http://data.ashrae.org/standard223/data/lbnl-example-2#76009 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#72322
  - http://data.ashrae.org/standard223/data/lbnl-example-2#72322 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#14807
  - http://data.ashrae.org/standard223/data/lbnl-example-2#14807 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#11783
  - http://data.ashrae.org/standard223/data/lbnl-example-2#11783 needs between 1 and 1 uses of path http://data.ashrae.org/standard223#hasObservationLocation
http://data.ashrae.org/standard223/data/lbnl-example-2#01601
  - http://data.ashrae.org/standard223/data/lbnl-example-2#01601 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#85218
  - http://data.ashrae.org/standard223/data/lbnl-example-2#85218 needs between 1 and 1 uses of path http://data.ashrae.org/standard223#hasObservationLocation
http://data.ashrae.org/standard223/data/lbnl-example-2#63083
  - http://data.ashrae.org/standard223/data/lbnl-example-2#63083 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#38418
  - http://data.ashrae.org/standard223/data/lbnl-example-2#38418 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#03760
  - http://data.ashrae.org/standard223/data/lbnl-example-2#03760 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#82625
  - http://data.ashrae.org/standard223/data/lbnl-example-2#82625 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#23460
  - http://data.ashrae.org/standard223/data/lbnl-example-2#23460 needs between None and 1 instances of http://data.ashrae.org/standard223#ConnectionPoint on path nd13ff611a1e9486cac4ccb4d2602c7a2b3606
  - http://data.ashrae.org/standard223/data/lbnl-example-2#23460 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#16627
  - http://data.ashrae.org/standard223/data/lbnl-example-2#16627 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#38470
  - http://data.ashrae.org/standard223/data/lbnl-example-2#38470 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#25319
  - http://data.ashrae.org/standard223/data/lbnl-example-2#25319 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#75459
  - http://data.ashrae.org/standard223/data/lbnl-example-2#75459 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#71570
  - http://data.ashrae.org/standard223/data/lbnl-example-2#71570 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#60006
  - http://data.ashrae.org/standard223/data/lbnl-example-2#60006 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#34355
  - http://data.ashrae.org/standard223/data/lbnl-example-2#34355 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#34355 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#99918
  - http://data.ashrae.org/standard223/data/lbnl-example-2#99918 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#02651
  - http://data.ashrae.org/standard223/data/lbnl-example-2#02651 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#01882
  - http://data.ashrae.org/standard223/data/lbnl-example-2#01882 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#61099
  - http://data.ashrae.org/standard223/data/lbnl-example-2#61099 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#50625
  - http://data.ashrae.org/standard223/data/lbnl-example-2#50625 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#85676
  - http://data.ashrae.org/standard223/data/lbnl-example-2#85676 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#49700
  - http://data.ashrae.org/standard223/data/lbnl-example-2#49700 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#37405
  - http://data.ashrae.org/standard223/data/lbnl-example-2#37405 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#73777
  - http://data.ashrae.org/standard223/data/lbnl-example-2#73777 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#41330
  - http://data.ashrae.org/standard223/data/lbnl-example-2#41330 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#05144
  - http://data.ashrae.org/standard223/data/lbnl-example-2#05144 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#55931
  - http://data.ashrae.org/standard223/data/lbnl-example-2#55931 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#41633
  - http://data.ashrae.org/standard223/data/lbnl-example-2#41633 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#92693
  - http://data.ashrae.org/standard223/data/lbnl-example-2#92693 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#29008
  - http://data.ashrae.org/standard223/data/lbnl-example-2#29008 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#33560
  - http://data.ashrae.org/standard223/data/lbnl-example-2#33560 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#29573
  - http://data.ashrae.org/standard223/data/lbnl-example-2#29573 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#85011
  - http://data.ashrae.org/standard223/data/lbnl-example-2#85011 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#07024
  - http://data.ashrae.org/standard223/data/lbnl-example-2#07024 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#07024 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#02216
  - http://data.ashrae.org/standard223/data/lbnl-example-2#02216 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#51208
  - http://data.ashrae.org/standard223/data/lbnl-example-2#51208 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#08733
  - http://data.ashrae.org/standard223/data/lbnl-example-2#08733 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#84877
  - http://data.ashrae.org/standard223/data/lbnl-example-2#84877 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#35242
  - http://data.ashrae.org/standard223/data/lbnl-example-2#35242 needs to be a http://data.ashrae.org/standard223#Substance-Medium
  - http://data.ashrae.org/standard223/data/lbnl-example-2#35242 needs between None and 1 instances of http://data.ashrae.org/standard223#ConnectionPoint on path nd13ff611a1e9486cac4ccb4d2602c7a2b131
http://data.ashrae.org/standard223/data/lbnl-example-2#12686
  - http://data.ashrae.org/standard223/data/lbnl-example-2#12686 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#12686 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#40462
  - http://data.ashrae.org/standard223/data/lbnl-example-2#40462 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#25846
  - http://data.ashrae.org/standard223/data/lbnl-example-2#25846 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#02817
  - http://data.ashrae.org/standard223/data/lbnl-example-2#02817 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#02817 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#63755
  - http://data.ashrae.org/standard223/data/lbnl-example-2#63755 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#27754
  - http://data.ashrae.org/standard223/data/lbnl-example-2#27754 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#86286
  - http://data.ashrae.org/standard223/data/lbnl-example-2#86286 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#04231
  - http://data.ashrae.org/standard223/data/lbnl-example-2#04231 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#83428
  - http://data.ashrae.org/standard223/data/lbnl-example-2#83428 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#83428 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#56473
  - http://data.ashrae.org/standard223/data/lbnl-example-2#56473 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#21453
  - http://data.ashrae.org/standard223/data/lbnl-example-2#21453 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#30707
  - http://data.ashrae.org/standard223/data/lbnl-example-2#30707 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#29634
  - http://data.ashrae.org/standard223/data/lbnl-example-2#29634 needs to be a http://data.ashrae.org/standard223#Substance-Medium
  - http://data.ashrae.org/standard223/data/lbnl-example-2#29634 needs between None and 1 instances of http://data.ashrae.org/standard223#ConnectionPoint on path nd13ff611a1e9486cac4ccb4d2602c7a2b3151
http://data.ashrae.org/standard223/data/lbnl-example-2#09848
  - http://data.ashrae.org/standard223/data/lbnl-example-2#09848 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#81532
  - http://data.ashrae.org/standard223/data/lbnl-example-2#81532 needs to be a http://data.ashrae.org/standard223#Substance-Medium
  - http://data.ashrae.org/standard223/data/lbnl-example-2#81532 needs between None and 1 instances of http://data.ashrae.org/standard223#ConnectionPoint on path nd13ff611a1e9486cac4ccb4d2602c7a2b915
http://data.ashrae.org/standard223/data/lbnl-example-2#53666
  - http://data.ashrae.org/standard223/data/lbnl-example-2#53666 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#45824
  - http://data.ashrae.org/standard223/data/lbnl-example-2#45824 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#23712
  - http://data.ashrae.org/standard223/data/lbnl-example-2#23712 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#67316
  - http://data.ashrae.org/standard223/data/lbnl-example-2#67316 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#52402
  - http://data.ashrae.org/standard223/data/lbnl-example-2#52402 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#67748
  - http://data.ashrae.org/standard223/data/lbnl-example-2#67748 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#15450
  - http://data.ashrae.org/standard223/data/lbnl-example-2#15450 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#53962
  - http://data.ashrae.org/standard223/data/lbnl-example-2#53962 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#16050
  - http://data.ashrae.org/standard223/data/lbnl-example-2#16050 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#30117
  - http://data.ashrae.org/standard223/data/lbnl-example-2#30117 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#90476
  - http://data.ashrae.org/standard223/data/lbnl-example-2#90476 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#47104
  - http://data.ashrae.org/standard223/data/lbnl-example-2#47104 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#57979
  - http://data.ashrae.org/standard223/data/lbnl-example-2#57979 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#55187
  - http://data.ashrae.org/standard223/data/lbnl-example-2#55187 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#02043
  - http://data.ashrae.org/standard223/data/lbnl-example-2#02043 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#99412
  - http://data.ashrae.org/standard223/data/lbnl-example-2#99412 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#10659
  - http://data.ashrae.org/standard223/data/lbnl-example-2#10659 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#25067
  - http://data.ashrae.org/standard223/data/lbnl-example-2#25067 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#25067 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#70319
  - http://data.ashrae.org/standard223/data/lbnl-example-2#70319 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#11204
  - http://data.ashrae.org/standard223/data/lbnl-example-2#11204 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#23378
  - http://data.ashrae.org/standard223/data/lbnl-example-2#23378 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#19702
  - http://data.ashrae.org/standard223/data/lbnl-example-2#19702 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#38917
  - http://data.ashrae.org/standard223/data/lbnl-example-2#38917 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#27305
  - http://data.ashrae.org/standard223/data/lbnl-example-2#27305 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#40721
  - http://data.ashrae.org/standard223/data/lbnl-example-2#40721 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#58482
  - http://data.ashrae.org/standard223/data/lbnl-example-2#58482 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#28727
  - http://data.ashrae.org/standard223/data/lbnl-example-2#28727 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#32795
  - http://data.ashrae.org/standard223/data/lbnl-example-2#32795 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#67520
  - http://data.ashrae.org/standard223/data/lbnl-example-2#67520 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#88324
  - http://data.ashrae.org/standard223/data/lbnl-example-2#88324 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#22290
  - http://data.ashrae.org/standard223/data/lbnl-example-2#22290 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#69394
  - http://data.ashrae.org/standard223/data/lbnl-example-2#69394 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#89082
  - http://data.ashrae.org/standard223/data/lbnl-example-2#89082 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#30900
  - http://data.ashrae.org/standard223/data/lbnl-example-2#30900 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#85241
  - http://data.ashrae.org/standard223/data/lbnl-example-2#85241 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#02500
  - http://data.ashrae.org/standard223/data/lbnl-example-2#02500 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#42328
  - http://data.ashrae.org/standard223/data/lbnl-example-2#42328 needs between None and 1 instances of http://data.ashrae.org/standard223#ConnectionPoint on path nd13ff611a1e9486cac4ccb4d2602c7a2b505
  - http://data.ashrae.org/standard223/data/lbnl-example-2#42328 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#35320
  - http://data.ashrae.org/standard223/data/lbnl-example-2#35320 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#28695
  - http://data.ashrae.org/standard223/data/lbnl-example-2#28695 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#96327
  - http://data.ashrae.org/standard223/data/lbnl-example-2#96327 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#37652
  - http://data.ashrae.org/standard223/data/lbnl-example-2#37652 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#66870
  - http://data.ashrae.org/standard223/data/lbnl-example-2#66870 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#84250
  - http://data.ashrae.org/standard223/data/lbnl-example-2#84250 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#84250 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#04811
  - http://data.ashrae.org/standard223/data/lbnl-example-2#04811 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#68175
  - http://data.ashrae.org/standard223/data/lbnl-example-2#68175 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#92407
  - http://data.ashrae.org/standard223/data/lbnl-example-2#92407 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#92407 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#07095
  - http://data.ashrae.org/standard223/data/lbnl-example-2#07095 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#91920
  - http://data.ashrae.org/standard223/data/lbnl-example-2#91920 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#96174
  - http://data.ashrae.org/standard223/data/lbnl-example-2#96174 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#03342
  - http://data.ashrae.org/standard223/data/lbnl-example-2#03342 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#32144
  - http://data.ashrae.org/standard223/data/lbnl-example-2#32144 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#54382
  - http://data.ashrae.org/standard223/data/lbnl-example-2#54382 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#71025
  - http://data.ashrae.org/standard223/data/lbnl-example-2#71025 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#71025 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#12539
  - http://data.ashrae.org/standard223/data/lbnl-example-2#12539 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#48176
  - http://data.ashrae.org/standard223/data/lbnl-example-2#48176 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#28411
  - http://data.ashrae.org/standard223/data/lbnl-example-2#28411 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#92954
  - http://data.ashrae.org/standard223/data/lbnl-example-2#92954 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#83796
  - http://data.ashrae.org/standard223/data/lbnl-example-2#83796 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#42182
  - http://data.ashrae.org/standard223/data/lbnl-example-2#42182 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#16382
  - http://data.ashrae.org/standard223/data/lbnl-example-2#16382 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#18055
  - http://data.ashrae.org/standard223/data/lbnl-example-2#18055 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#18055 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#56887
  - http://data.ashrae.org/standard223/data/lbnl-example-2#56887 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#98522
  - http://data.ashrae.org/standard223/data/lbnl-example-2#98522 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#40887
  - http://data.ashrae.org/standard223/data/lbnl-example-2#40887 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#79114
  - http://data.ashrae.org/standard223/data/lbnl-example-2#79114 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#79114 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#12364
  - http://data.ashrae.org/standard223/data/lbnl-example-2#12364 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#10658
  - http://data.ashrae.org/standard223/data/lbnl-example-2#10658 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#10658 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#66736
  - http://data.ashrae.org/standard223/data/lbnl-example-2#66736 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#58341
  - http://data.ashrae.org/standard223/data/lbnl-example-2#58341 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#76440
  - http://data.ashrae.org/standard223/data/lbnl-example-2#76440 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#57804
  - http://data.ashrae.org/standard223/data/lbnl-example-2#57804 needs between None and 1 instances of http://data.ashrae.org/standard223#ConnectionPoint on path nd13ff611a1e9486cac4ccb4d2602c7a2b1279
  - http://data.ashrae.org/standard223/data/lbnl-example-2#57804 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#93766
  - http://data.ashrae.org/standard223/data/lbnl-example-2#93766 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#87645
  - http://data.ashrae.org/standard223/data/lbnl-example-2#87645 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#33657
  - http://data.ashrae.org/standard223/data/lbnl-example-2#33657 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#90570
  - http://data.ashrae.org/standard223/data/lbnl-example-2#90570 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#58448
  - http://data.ashrae.org/standard223/data/lbnl-example-2#58448 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#43263
  - http://data.ashrae.org/standard223/data/lbnl-example-2#43263 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#47249
  - http://data.ashrae.org/standard223/data/lbnl-example-2#47249 needs to be a http://data.ashrae.org/standard223#Substance-Medium
  - http://data.ashrae.org/standard223/data/lbnl-example-2#47249 needs between None and 1 instances of http://data.ashrae.org/standard223#ConnectionPoint on path nd13ff611a1e9486cac4ccb4d2602c7a2b886
http://data.ashrae.org/standard223/data/lbnl-example-2#30993
  - http://data.ashrae.org/standard223/data/lbnl-example-2#30993 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#07591
  - http://data.ashrae.org/standard223/data/lbnl-example-2#07591 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#68166
  - http://data.ashrae.org/standard223/data/lbnl-example-2#68166 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#68166 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#16302
  - http://data.ashrae.org/standard223/data/lbnl-example-2#16302 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#10648
  - http://data.ashrae.org/standard223/data/lbnl-example-2#10648 needs between None and 1 instances of http://data.ashrae.org/standard223#ConnectionPoint on path nd13ff611a1e9486cac4ccb4d2602c7a2b1739
  - http://data.ashrae.org/standard223/data/lbnl-example-2#10648 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#24339
  - http://data.ashrae.org/standard223/data/lbnl-example-2#24339 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#65088
  - http://data.ashrae.org/standard223/data/lbnl-example-2#65088 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#65381
  - http://data.ashrae.org/standard223/data/lbnl-example-2#65381 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#65381 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#49323
  - http://data.ashrae.org/standard223/data/lbnl-example-2#49323 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#32049
  - http://data.ashrae.org/standard223/data/lbnl-example-2#32049 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#93343
  - http://data.ashrae.org/standard223/data/lbnl-example-2#93343 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#64575
  - http://data.ashrae.org/standard223/data/lbnl-example-2#64575 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#47806
  - http://data.ashrae.org/standard223/data/lbnl-example-2#47806 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#47806 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#50235
  - http://data.ashrae.org/standard223/data/lbnl-example-2#50235 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#49150
  - http://data.ashrae.org/standard223/data/lbnl-example-2#49150 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#33208
  - http://data.ashrae.org/standard223/data/lbnl-example-2#33208 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#93889
  - http://data.ashrae.org/standard223/data/lbnl-example-2#93889 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#36823
  - http://data.ashrae.org/standard223/data/lbnl-example-2#36823 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#03999
  - http://data.ashrae.org/standard223/data/lbnl-example-2#03999 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#03999 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#34111
  - http://data.ashrae.org/standard223/data/lbnl-example-2#34111 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#53531
  - http://data.ashrae.org/standard223/data/lbnl-example-2#53531 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#95461
  - http://data.ashrae.org/standard223/data/lbnl-example-2#95461 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#85710
  - http://data.ashrae.org/standard223/data/lbnl-example-2#85710 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#72525
  - http://data.ashrae.org/standard223/data/lbnl-example-2#72525 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#63295
  - http://data.ashrae.org/standard223/data/lbnl-example-2#63295 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#63295 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#52674
  - http://data.ashrae.org/standard223/data/lbnl-example-2#52674 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#12821
  - http://data.ashrae.org/standard223/data/lbnl-example-2#12821 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#85847
  - http://data.ashrae.org/standard223/data/lbnl-example-2#85847 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#07119
  - http://data.ashrae.org/standard223/data/lbnl-example-2#07119 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#76856
  - http://data.ashrae.org/standard223/data/lbnl-example-2#76856 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#25174
  - http://data.ashrae.org/standard223/data/lbnl-example-2#25174 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#23625
  - http://data.ashrae.org/standard223/data/lbnl-example-2#23625 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#54319
  - http://data.ashrae.org/standard223/data/lbnl-example-2#54319 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#97130
  - http://data.ashrae.org/standard223/data/lbnl-example-2#97130 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#77758
  - http://data.ashrae.org/standard223/data/lbnl-example-2#77758 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#69497
  - http://data.ashrae.org/standard223/data/lbnl-example-2#69497 needs between 1 and 1 uses of path http://data.ashrae.org/standard223#hasObservationLocation
http://data.ashrae.org/standard223/data/lbnl-example-2#86189
  - http://data.ashrae.org/standard223/data/lbnl-example-2#86189 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#72199
  - http://data.ashrae.org/standard223/data/lbnl-example-2#72199 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#69135
  - http://data.ashrae.org/standard223/data/lbnl-example-2#69135 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#00459
  - http://data.ashrae.org/standard223/data/lbnl-example-2#00459 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#36713
  - http://data.ashrae.org/standard223/data/lbnl-example-2#36713 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#26283
  - http://data.ashrae.org/standard223/data/lbnl-example-2#26283 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#16070
  - http://data.ashrae.org/standard223/data/lbnl-example-2#16070 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#11590
  - http://data.ashrae.org/standard223/data/lbnl-example-2#11590 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#25284
  - http://data.ashrae.org/standard223/data/lbnl-example-2#25284 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#43692
  - http://data.ashrae.org/standard223/data/lbnl-example-2#43692 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#17687
  - http://data.ashrae.org/standard223/data/lbnl-example-2#17687 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#88217
  - http://data.ashrae.org/standard223/data/lbnl-example-2#88217 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#16934
  - http://data.ashrae.org/standard223/data/lbnl-example-2#16934 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#16405
  - http://data.ashrae.org/standard223/data/lbnl-example-2#16405 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#86658
  - http://data.ashrae.org/standard223/data/lbnl-example-2#86658 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#51907
  - http://data.ashrae.org/standard223/data/lbnl-example-2#51907 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#63046
  - http://data.ashrae.org/standard223/data/lbnl-example-2#63046 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#59359
  - http://data.ashrae.org/standard223/data/lbnl-example-2#59359 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#70321
  - http://data.ashrae.org/standard223/data/lbnl-example-2#70321 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#62608
  - http://data.ashrae.org/standard223/data/lbnl-example-2#62608 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#33614
  - http://data.ashrae.org/standard223/data/lbnl-example-2#33614 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#54553
  - http://data.ashrae.org/standard223/data/lbnl-example-2#54553 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#25887
  - http://data.ashrae.org/standard223/data/lbnl-example-2#25887 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#11126
  - http://data.ashrae.org/standard223/data/lbnl-example-2#11126 needs to be a http://data.ashrae.org/standard223#Substance-Medium
  - http://data.ashrae.org/standard223/data/lbnl-example-2#11126 needs between None and 1 instances of http://data.ashrae.org/standard223#ConnectionPoint on path nd13ff611a1e9486cac4ccb4d2602c7a2b3617
http://data.ashrae.org/standard223/data/lbnl-example-2#31729
  - http://data.ashrae.org/standard223/data/lbnl-example-2#31729 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#87812
  - http://data.ashrae.org/standard223/data/lbnl-example-2#87812 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#31924
  - http://data.ashrae.org/standard223/data/lbnl-example-2#31924 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#81895
  - http://data.ashrae.org/standard223/data/lbnl-example-2#81895 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#45107
  - http://data.ashrae.org/standard223/data/lbnl-example-2#45107 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#38883
  - http://data.ashrae.org/standard223/data/lbnl-example-2#38883 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#76714
  - http://data.ashrae.org/standard223/data/lbnl-example-2#76714 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#89999
  - http://data.ashrae.org/standard223/data/lbnl-example-2#89999 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#17862
  - http://data.ashrae.org/standard223/data/lbnl-example-2#17862 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#76728
  - http://data.ashrae.org/standard223/data/lbnl-example-2#76728 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#40727
  - http://data.ashrae.org/standard223/data/lbnl-example-2#40727 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#45283
  - http://data.ashrae.org/standard223/data/lbnl-example-2#45283 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#19065
  - http://data.ashrae.org/standard223/data/lbnl-example-2#19065 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#08720
  - http://data.ashrae.org/standard223/data/lbnl-example-2#08720 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#53636
  - http://data.ashrae.org/standard223/data/lbnl-example-2#53636 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#36725
  - http://data.ashrae.org/standard223/data/lbnl-example-2#36725 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#36725 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#13364
  - http://data.ashrae.org/standard223/data/lbnl-example-2#13364 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#06816
  - http://data.ashrae.org/standard223/data/lbnl-example-2#06816 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#71145
  - http://data.ashrae.org/standard223/data/lbnl-example-2#71145 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#91822
  - http://data.ashrae.org/standard223/data/lbnl-example-2#91822 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#79219
  - http://data.ashrae.org/standard223/data/lbnl-example-2#79219 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#53787
  - http://data.ashrae.org/standard223/data/lbnl-example-2#53787 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#41865
  - http://data.ashrae.org/standard223/data/lbnl-example-2#41865 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#00687
  - http://data.ashrae.org/standard223/data/lbnl-example-2#00687 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#65196
  - http://data.ashrae.org/standard223/data/lbnl-example-2#65196 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#61966
  - http://data.ashrae.org/standard223/data/lbnl-example-2#61966 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#95914
  - http://data.ashrae.org/standard223/data/lbnl-example-2#95914 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#08870
  - http://data.ashrae.org/standard223/data/lbnl-example-2#08870 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#01697
  - http://data.ashrae.org/standard223/data/lbnl-example-2#01697 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#67453
  - http://data.ashrae.org/standard223/data/lbnl-example-2#67453 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#96390
  - http://data.ashrae.org/standard223/data/lbnl-example-2#96390 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#22928
  - http://data.ashrae.org/standard223/data/lbnl-example-2#22928 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#09371
  - http://data.ashrae.org/standard223/data/lbnl-example-2#09371 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#45908
  - http://data.ashrae.org/standard223/data/lbnl-example-2#45908 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#14968
  - http://data.ashrae.org/standard223/data/lbnl-example-2#14968 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#84065
  - http://data.ashrae.org/standard223/data/lbnl-example-2#84065 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#93088
  - http://data.ashrae.org/standard223/data/lbnl-example-2#93088 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#40641
  - http://data.ashrae.org/standard223/data/lbnl-example-2#40641 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#30170
  - http://data.ashrae.org/standard223/data/lbnl-example-2#30170 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#02440
  - http://data.ashrae.org/standard223/data/lbnl-example-2#02440 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#81543
  - http://data.ashrae.org/standard223/data/lbnl-example-2#81543 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#77736
  - http://data.ashrae.org/standard223/data/lbnl-example-2#77736 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#80160
  - http://data.ashrae.org/standard223/data/lbnl-example-2#80160 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#15051
  - http://data.ashrae.org/standard223/data/lbnl-example-2#15051 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#36341
  - http://data.ashrae.org/standard223/data/lbnl-example-2#36341 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#96546
  - http://data.ashrae.org/standard223/data/lbnl-example-2#96546 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#48919
  - http://data.ashrae.org/standard223/data/lbnl-example-2#48919 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#47100
  - http://data.ashrae.org/standard223/data/lbnl-example-2#47100 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#06861
  - http://data.ashrae.org/standard223/data/lbnl-example-2#06861 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#89481
  - http://data.ashrae.org/standard223/data/lbnl-example-2#89481 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#66752
  - http://data.ashrae.org/standard223/data/lbnl-example-2#66752 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#99057
  - http://data.ashrae.org/standard223/data/lbnl-example-2#99057 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#39217
  - http://data.ashrae.org/standard223/data/lbnl-example-2#39217 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#51721
  - http://data.ashrae.org/standard223/data/lbnl-example-2#51721 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#38087
  - http://data.ashrae.org/standard223/data/lbnl-example-2#38087 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#93389
  - http://data.ashrae.org/standard223/data/lbnl-example-2#93389 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#75833
  - http://data.ashrae.org/standard223/data/lbnl-example-2#75833 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#99527
  - http://data.ashrae.org/standard223/data/lbnl-example-2#99527 needs between None and 1 instances of http://qudt.org/schema/qudt/Unit on path http://qudt.org/schema/qudt/hasUnit
  - http://data.ashrae.org/standard223/data/lbnl-example-2#99527 needs between 1 and 1 instances of http://qudt.org/schema/qudt/QuantityKind on path http://qudt.org/schema/qudt/hasQuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#75519
  - http://data.ashrae.org/standard223/data/lbnl-example-2#75519 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#15362
  - http://data.ashrae.org/standard223/data/lbnl-example-2#15362 needs between 1 and 1 uses of path http://data.ashrae.org/standard223#hasObservationLocation
http://data.ashrae.org/standard223/data/lbnl-example-2#61128
  - http://data.ashrae.org/standard223/data/lbnl-example-2#61128 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#43000
  - http://data.ashrae.org/standard223/data/lbnl-example-2#43000 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#36831
  - http://data.ashrae.org/standard223/data/lbnl-example-2#36831 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#86848
  - http://data.ashrae.org/standard223/data/lbnl-example-2#86848 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#11913
  - http://data.ashrae.org/standard223/data/lbnl-example-2#11913 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#89548
  - http://data.ashrae.org/standard223/data/lbnl-example-2#89548 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#40636
  - http://data.ashrae.org/standard223/data/lbnl-example-2#40636 needs to be a http://data.ashrae.org/standard223#Substance-Medium
  - http://data.ashrae.org/standard223/data/lbnl-example-2#40636 needs between None and 1 instances of http://data.ashrae.org/standard223#ConnectionPoint on path nd13ff611a1e9486cac4ccb4d2602c7a2b1043
http://data.ashrae.org/standard223/data/lbnl-example-2#42612
  - http://data.ashrae.org/standard223/data/lbnl-example-2#42612 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#44510
  - http://data.ashrae.org/standard223/data/lbnl-example-2#44510 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#42481
  - http://data.ashrae.org/standard223/data/lbnl-example-2#42481 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#64940
  - http://data.ashrae.org/standard223/data/lbnl-example-2#64940 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#48815
  - http://data.ashrae.org/standard223/data/lbnl-example-2#48815 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#14639
  - http://data.ashrae.org/standard223/data/lbnl-example-2#14639 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#08315
  - http://data.ashrae.org/standard223/data/lbnl-example-2#08315 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#49432
  - http://data.ashrae.org/standard223/data/lbnl-example-2#49432 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#90835
  - http://data.ashrae.org/standard223/data/lbnl-example-2#90835 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#55213
  - http://data.ashrae.org/standard223/data/lbnl-example-2#55213 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#91585
  - http://data.ashrae.org/standard223/data/lbnl-example-2#91585 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#73149
  - http://data.ashrae.org/standard223/data/lbnl-example-2#73149 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#59800
  - http://data.ashrae.org/standard223/data/lbnl-example-2#59800 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#80723
  - http://data.ashrae.org/standard223/data/lbnl-example-2#80723 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#20866
  - http://data.ashrae.org/standard223/data/lbnl-example-2#20866 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#12353
  - http://data.ashrae.org/standard223/data/lbnl-example-2#12353 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#76342
  - http://data.ashrae.org/standard223/data/lbnl-example-2#76342 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#43351
  - http://data.ashrae.org/standard223/data/lbnl-example-2#43351 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#04041
  - http://data.ashrae.org/standard223/data/lbnl-example-2#04041 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#10177
  - http://data.ashrae.org/standard223/data/lbnl-example-2#10177 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#76054
  - http://data.ashrae.org/standard223/data/lbnl-example-2#76054 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#77887
  - http://data.ashrae.org/standard223/data/lbnl-example-2#77887 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#38300
  - http://data.ashrae.org/standard223/data/lbnl-example-2#38300 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#59993
  - http://data.ashrae.org/standard223/data/lbnl-example-2#59993 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#57526
  - http://data.ashrae.org/standard223/data/lbnl-example-2#57526 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#09384
  - http://data.ashrae.org/standard223/data/lbnl-example-2#09384 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#88796
  - http://data.ashrae.org/standard223/data/lbnl-example-2#88796 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#97029
  - http://data.ashrae.org/standard223/data/lbnl-example-2#97029 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#37548
  - http://data.ashrae.org/standard223/data/lbnl-example-2#37548 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#21343
  - http://data.ashrae.org/standard223/data/lbnl-example-2#21343 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#09278
  - http://data.ashrae.org/standard223/data/lbnl-example-2#09278 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#40617
  - http://data.ashrae.org/standard223/data/lbnl-example-2#40617 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#40072
  - http://data.ashrae.org/standard223/data/lbnl-example-2#40072 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#88574
  - http://data.ashrae.org/standard223/data/lbnl-example-2#88574 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#00496
  - http://data.ashrae.org/standard223/data/lbnl-example-2#00496 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#05342
  - http://data.ashrae.org/standard223/data/lbnl-example-2#05342 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#05342 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#36739
  - http://data.ashrae.org/standard223/data/lbnl-example-2#36739 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#24866
  - http://data.ashrae.org/standard223/data/lbnl-example-2#24866 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#54936
  - http://data.ashrae.org/standard223/data/lbnl-example-2#54936 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#46914
  - http://data.ashrae.org/standard223/data/lbnl-example-2#46914 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#88535
  - http://data.ashrae.org/standard223/data/lbnl-example-2#88535 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#60714
  - http://data.ashrae.org/standard223/data/lbnl-example-2#60714 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#06948
  - http://data.ashrae.org/standard223/data/lbnl-example-2#06948 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#02029
  - http://data.ashrae.org/standard223/data/lbnl-example-2#02029 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#71652
  - http://data.ashrae.org/standard223/data/lbnl-example-2#71652 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#53137
  - http://data.ashrae.org/standard223/data/lbnl-example-2#53137 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#16890
  - http://data.ashrae.org/standard223/data/lbnl-example-2#16890 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#34889
  - http://data.ashrae.org/standard223/data/lbnl-example-2#34889 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#60071
  - http://data.ashrae.org/standard223/data/lbnl-example-2#60071 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#80383
  - http://data.ashrae.org/standard223/data/lbnl-example-2#80383 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#41197
  - http://data.ashrae.org/standard223/data/lbnl-example-2#41197 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#05849
  - http://data.ashrae.org/standard223/data/lbnl-example-2#05849 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#45775
  - http://data.ashrae.org/standard223/data/lbnl-example-2#45775 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#25566
  - http://data.ashrae.org/standard223/data/lbnl-example-2#25566 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#90552
  - http://data.ashrae.org/standard223/data/lbnl-example-2#90552 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#65207
  - http://data.ashrae.org/standard223/data/lbnl-example-2#65207 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#00445
  - http://data.ashrae.org/standard223/data/lbnl-example-2#00445 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#84395
  - http://data.ashrae.org/standard223/data/lbnl-example-2#84395 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#31977
  - http://data.ashrae.org/standard223/data/lbnl-example-2#31977 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#20425
  - http://data.ashrae.org/standard223/data/lbnl-example-2#20425 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#39361
  - http://data.ashrae.org/standard223/data/lbnl-example-2#39361 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#62715
  - http://data.ashrae.org/standard223/data/lbnl-example-2#62715 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#09309
  - http://data.ashrae.org/standard223/data/lbnl-example-2#09309 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#95073
  - http://data.ashrae.org/standard223/data/lbnl-example-2#95073 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#55685
  - http://data.ashrae.org/standard223/data/lbnl-example-2#55685 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#09170
  - http://data.ashrae.org/standard223/data/lbnl-example-2#09170 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#97033
  - http://data.ashrae.org/standard223/data/lbnl-example-2#97033 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#97033 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#67737
  - http://data.ashrae.org/standard223/data/lbnl-example-2#67737 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#82836
  - http://data.ashrae.org/standard223/data/lbnl-example-2#82836 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#12960
  - http://data.ashrae.org/standard223/data/lbnl-example-2#12960 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#23453
  - http://data.ashrae.org/standard223/data/lbnl-example-2#23453 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#32468
  - http://data.ashrae.org/standard223/data/lbnl-example-2#32468 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#22249
  - http://data.ashrae.org/standard223/data/lbnl-example-2#22249 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#03190
  - http://data.ashrae.org/standard223/data/lbnl-example-2#03190 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#43934
  - http://data.ashrae.org/standard223/data/lbnl-example-2#43934 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#45516
  - http://data.ashrae.org/standard223/data/lbnl-example-2#45516 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#52537
  - http://data.ashrae.org/standard223/data/lbnl-example-2#52537 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#78724
  - http://data.ashrae.org/standard223/data/lbnl-example-2#78724 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#47134
  - http://data.ashrae.org/standard223/data/lbnl-example-2#47134 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#70337
  - http://data.ashrae.org/standard223/data/lbnl-example-2#70337 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#75966
  - http://data.ashrae.org/standard223/data/lbnl-example-2#75966 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#75966 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#51842
  - http://data.ashrae.org/standard223/data/lbnl-example-2#51842 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#89063
  - http://data.ashrae.org/standard223/data/lbnl-example-2#89063 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#07755
  - http://data.ashrae.org/standard223/data/lbnl-example-2#07755 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#38721
  - http://data.ashrae.org/standard223/data/lbnl-example-2#38721 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#23308
  - http://data.ashrae.org/standard223/data/lbnl-example-2#23308 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#67974
  - http://data.ashrae.org/standard223/data/lbnl-example-2#67974 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#40562
  - http://data.ashrae.org/standard223/data/lbnl-example-2#40562 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#57735
  - http://data.ashrae.org/standard223/data/lbnl-example-2#57735 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#55013
  - http://data.ashrae.org/standard223/data/lbnl-example-2#55013 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#13281
  - http://data.ashrae.org/standard223/data/lbnl-example-2#13281 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#32100
  - http://data.ashrae.org/standard223/data/lbnl-example-2#32100 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#70445
  - http://data.ashrae.org/standard223/data/lbnl-example-2#70445 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#20371
  - http://data.ashrae.org/standard223/data/lbnl-example-2#20371 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#62740
  - http://data.ashrae.org/standard223/data/lbnl-example-2#62740 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#15991
  - http://data.ashrae.org/standard223/data/lbnl-example-2#15991 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#40053
  - http://data.ashrae.org/standard223/data/lbnl-example-2#40053 needs to be a http://data.ashrae.org/standard223#Substance-Medium
  - http://data.ashrae.org/standard223/data/lbnl-example-2#40053 needs between None and 1 instances of http://data.ashrae.org/standard223#ConnectionPoint on path nd13ff611a1e9486cac4ccb4d2602c7a2b789
http://data.ashrae.org/standard223/data/lbnl-example-2#71903
  - http://data.ashrae.org/standard223/data/lbnl-example-2#71903 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#62284
  - http://data.ashrae.org/standard223/data/lbnl-example-2#62284 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#24336
  - http://data.ashrae.org/standard223/data/lbnl-example-2#24336 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#59512
  - http://data.ashrae.org/standard223/data/lbnl-example-2#59512 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#79346
  - http://data.ashrae.org/standard223/data/lbnl-example-2#79346 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#45172
  - http://data.ashrae.org/standard223/data/lbnl-example-2#45172 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#10261
  - http://data.ashrae.org/standard223/data/lbnl-example-2#10261 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#54602
  - http://data.ashrae.org/standard223/data/lbnl-example-2#54602 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#13246
  - http://data.ashrae.org/standard223/data/lbnl-example-2#13246 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#97697
  - http://data.ashrae.org/standard223/data/lbnl-example-2#97697 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#41388
  - http://data.ashrae.org/standard223/data/lbnl-example-2#41388 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#87432
  - http://data.ashrae.org/standard223/data/lbnl-example-2#87432 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#32816
  - http://data.ashrae.org/standard223/data/lbnl-example-2#32816 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#68832
  - http://data.ashrae.org/standard223/data/lbnl-example-2#68832 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#68422
  - http://data.ashrae.org/standard223/data/lbnl-example-2#68422 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#80730
  - http://data.ashrae.org/standard223/data/lbnl-example-2#80730 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#80730 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#46019
  - http://data.ashrae.org/standard223/data/lbnl-example-2#46019 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#33088
  - http://data.ashrae.org/standard223/data/lbnl-example-2#33088 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#18193
  - http://data.ashrae.org/standard223/data/lbnl-example-2#18193 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#34128
  - http://data.ashrae.org/standard223/data/lbnl-example-2#34128 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#54675
  - http://data.ashrae.org/standard223/data/lbnl-example-2#54675 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#45557
  - http://data.ashrae.org/standard223/data/lbnl-example-2#45557 needs between 1 and 1 uses of path http://data.ashrae.org/standard223#hasObservationLocation
http://data.ashrae.org/standard223/data/lbnl-example-2#50935
  - http://data.ashrae.org/standard223/data/lbnl-example-2#50935 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#50935 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#86539
  - http://data.ashrae.org/standard223/data/lbnl-example-2#86539 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#18358
  - http://data.ashrae.org/standard223/data/lbnl-example-2#18358 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#40793
  - http://data.ashrae.org/standard223/data/lbnl-example-2#40793 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#77406
  - http://data.ashrae.org/standard223/data/lbnl-example-2#77406 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#29612
  - http://data.ashrae.org/standard223/data/lbnl-example-2#29612 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#08470
  - http://data.ashrae.org/standard223/data/lbnl-example-2#08470 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#50994
  - http://data.ashrae.org/standard223/data/lbnl-example-2#50994 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#57854
  - http://data.ashrae.org/standard223/data/lbnl-example-2#57854 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#98452
  - http://data.ashrae.org/standard223/data/lbnl-example-2#98452 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#61821
  - http://data.ashrae.org/standard223/data/lbnl-example-2#61821 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#76264
  - http://data.ashrae.org/standard223/data/lbnl-example-2#76264 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#88895
  - http://data.ashrae.org/standard223/data/lbnl-example-2#88895 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#64731
  - http://data.ashrae.org/standard223/data/lbnl-example-2#64731 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#02218
  - http://data.ashrae.org/standard223/data/lbnl-example-2#02218 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#52424
  - http://data.ashrae.org/standard223/data/lbnl-example-2#52424 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#40314
  - http://data.ashrae.org/standard223/data/lbnl-example-2#40314 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#02583
  - http://data.ashrae.org/standard223/data/lbnl-example-2#02583 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#46353
  - http://data.ashrae.org/standard223/data/lbnl-example-2#46353 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#99477
  - http://data.ashrae.org/standard223/data/lbnl-example-2#99477 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#24636
  - http://data.ashrae.org/standard223/data/lbnl-example-2#24636 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#71687
  - http://data.ashrae.org/standard223/data/lbnl-example-2#71687 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#62945
  - http://data.ashrae.org/standard223/data/lbnl-example-2#62945 needs between 1 and 1 uses of path http://data.ashrae.org/standard223#hasObservationLocation
http://data.ashrae.org/standard223/data/lbnl-example-2#11607
  - http://data.ashrae.org/standard223/data/lbnl-example-2#11607 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#37622
  - http://data.ashrae.org/standard223/data/lbnl-example-2#37622 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#94727
  - http://data.ashrae.org/standard223/data/lbnl-example-2#94727 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#32445
  - http://data.ashrae.org/standard223/data/lbnl-example-2#32445 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#10678
  - http://data.ashrae.org/standard223/data/lbnl-example-2#10678 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#06899
  - http://data.ashrae.org/standard223/data/lbnl-example-2#06899 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#88604
  - http://data.ashrae.org/standard223/data/lbnl-example-2#88604 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#25798
  - http://data.ashrae.org/standard223/data/lbnl-example-2#25798 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#90686
  - http://data.ashrae.org/standard223/data/lbnl-example-2#90686 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#57392
  - http://data.ashrae.org/standard223/data/lbnl-example-2#57392 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#63600
  - http://data.ashrae.org/standard223/data/lbnl-example-2#63600 needs between 1 and 1 uses of path http://data.ashrae.org/standard223#hasObservationLocation
http://data.ashrae.org/standard223/data/lbnl-example-2#58489
  - http://data.ashrae.org/standard223/data/lbnl-example-2#58489 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#58489 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#67696
  - http://data.ashrae.org/standard223/data/lbnl-example-2#67696 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#18032
  - http://data.ashrae.org/standard223/data/lbnl-example-2#18032 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#17729
  - http://data.ashrae.org/standard223/data/lbnl-example-2#17729 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#00543
  - http://data.ashrae.org/standard223/data/lbnl-example-2#00543 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#64279
  - http://data.ashrae.org/standard223/data/lbnl-example-2#64279 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#69089
  - http://data.ashrae.org/standard223/data/lbnl-example-2#69089 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#32847
  - http://data.ashrae.org/standard223/data/lbnl-example-2#32847 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#62233
  - http://data.ashrae.org/standard223/data/lbnl-example-2#62233 needs between None and 1 instances of http://data.ashrae.org/standard223#ConnectionPoint on path nd13ff611a1e9486cac4ccb4d2602c7a2b3016
  - http://data.ashrae.org/standard223/data/lbnl-example-2#62233 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#28044
  - http://data.ashrae.org/standard223/data/lbnl-example-2#28044 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#27792
  - http://data.ashrae.org/standard223/data/lbnl-example-2#27792 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#63747
  - http://data.ashrae.org/standard223/data/lbnl-example-2#63747 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#74580
  - http://data.ashrae.org/standard223/data/lbnl-example-2#74580 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#97948
  - http://data.ashrae.org/standard223/data/lbnl-example-2#97948 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#45401
  - http://data.ashrae.org/standard223/data/lbnl-example-2#45401 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#57775
  - http://data.ashrae.org/standard223/data/lbnl-example-2#57775 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#51809
  - http://data.ashrae.org/standard223/data/lbnl-example-2#51809 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#43202
  - http://data.ashrae.org/standard223/data/lbnl-example-2#43202 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#33269
  - http://data.ashrae.org/standard223/data/lbnl-example-2#33269 needs between 1 and 1 uses of path http://data.ashrae.org/standard223#hasObservationLocation
http://data.ashrae.org/standard223/data/lbnl-example-2#94561
  - http://data.ashrae.org/standard223/data/lbnl-example-2#94561 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#20926
  - http://data.ashrae.org/standard223/data/lbnl-example-2#20926 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#81756
  - http://data.ashrae.org/standard223/data/lbnl-example-2#81756 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#98060
  - http://data.ashrae.org/standard223/data/lbnl-example-2#98060 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#52029
  - http://data.ashrae.org/standard223/data/lbnl-example-2#52029 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#52496
  - http://data.ashrae.org/standard223/data/lbnl-example-2#52496 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#68886
  - http://data.ashrae.org/standard223/data/lbnl-example-2#68886 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#68886 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#38563
  - http://data.ashrae.org/standard223/data/lbnl-example-2#38563 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#34639
  - http://data.ashrae.org/standard223/data/lbnl-example-2#34639 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#59640
  - http://data.ashrae.org/standard223/data/lbnl-example-2#59640 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#92661
  - http://data.ashrae.org/standard223/data/lbnl-example-2#92661 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#14007
  - http://data.ashrae.org/standard223/data/lbnl-example-2#14007 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#49364
  - http://data.ashrae.org/standard223/data/lbnl-example-2#49364 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#18999
  - http://data.ashrae.org/standard223/data/lbnl-example-2#18999 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#50805
  - http://data.ashrae.org/standard223/data/lbnl-example-2#50805 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#60332
  - http://data.ashrae.org/standard223/data/lbnl-example-2#60332 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#86202
  - http://data.ashrae.org/standard223/data/lbnl-example-2#86202 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#88441
  - http://data.ashrae.org/standard223/data/lbnl-example-2#88441 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#31647
  - http://data.ashrae.org/standard223/data/lbnl-example-2#31647 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#26524
  - http://data.ashrae.org/standard223/data/lbnl-example-2#26524 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#84974
  - http://data.ashrae.org/standard223/data/lbnl-example-2#84974 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#94078
  - http://data.ashrae.org/standard223/data/lbnl-example-2#94078 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#21333
  - http://data.ashrae.org/standard223/data/lbnl-example-2#21333 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#31859
  - http://data.ashrae.org/standard223/data/lbnl-example-2#31859 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#26023
  - http://data.ashrae.org/standard223/data/lbnl-example-2#26023 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#93767
  - http://data.ashrae.org/standard223/data/lbnl-example-2#93767 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#26208
  - http://data.ashrae.org/standard223/data/lbnl-example-2#26208 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#17710
  - http://data.ashrae.org/standard223/data/lbnl-example-2#17710 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#97035
  - http://data.ashrae.org/standard223/data/lbnl-example-2#97035 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#15094
  - http://data.ashrae.org/standard223/data/lbnl-example-2#15094 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#40177
  - http://data.ashrae.org/standard223/data/lbnl-example-2#40177 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#14000
  - http://data.ashrae.org/standard223/data/lbnl-example-2#14000 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#57522
  - http://data.ashrae.org/standard223/data/lbnl-example-2#57522 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#57522 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#15956
  - http://data.ashrae.org/standard223/data/lbnl-example-2#15956 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#46809
  - http://data.ashrae.org/standard223/data/lbnl-example-2#46809 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#83757
  - http://data.ashrae.org/standard223/data/lbnl-example-2#83757 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#83500
  - http://data.ashrae.org/standard223/data/lbnl-example-2#83500 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#71075
  - http://data.ashrae.org/standard223/data/lbnl-example-2#71075 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#19941
  - http://data.ashrae.org/standard223/data/lbnl-example-2#19941 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#75183
  - http://data.ashrae.org/standard223/data/lbnl-example-2#75183 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#77489
  - http://data.ashrae.org/standard223/data/lbnl-example-2#77489 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#64302
  - http://data.ashrae.org/standard223/data/lbnl-example-2#64302 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#84896
  - http://data.ashrae.org/standard223/data/lbnl-example-2#84896 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#66490
  - http://data.ashrae.org/standard223/data/lbnl-example-2#66490 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#98836
  - http://data.ashrae.org/standard223/data/lbnl-example-2#98836 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#80519
  - http://data.ashrae.org/standard223/data/lbnl-example-2#80519 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#05076
  - http://data.ashrae.org/standard223/data/lbnl-example-2#05076 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#24574
  - http://data.ashrae.org/standard223/data/lbnl-example-2#24574 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#94772
  - http://data.ashrae.org/standard223/data/lbnl-example-2#94772 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#29249
  - http://data.ashrae.org/standard223/data/lbnl-example-2#29249 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#98135
  - http://data.ashrae.org/standard223/data/lbnl-example-2#98135 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#92921
  - http://data.ashrae.org/standard223/data/lbnl-example-2#92921 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#19364
  - http://data.ashrae.org/standard223/data/lbnl-example-2#19364 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#55416
  - http://data.ashrae.org/standard223/data/lbnl-example-2#55416 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#46039
  - http://data.ashrae.org/standard223/data/lbnl-example-2#46039 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#09793
  - http://data.ashrae.org/standard223/data/lbnl-example-2#09793 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#37579
  - http://data.ashrae.org/standard223/data/lbnl-example-2#37579 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#50178
  - http://data.ashrae.org/standard223/data/lbnl-example-2#50178 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#41716
  - http://data.ashrae.org/standard223/data/lbnl-example-2#41716 needs to be a http://data.ashrae.org/standard223#Substance-Medium
  - http://data.ashrae.org/standard223/data/lbnl-example-2#41716 needs between None and 1 instances of http://data.ashrae.org/standard223#ConnectionPoint on path nd13ff611a1e9486cac4ccb4d2602c7a2b1439
http://data.ashrae.org/standard223/data/lbnl-example-2#65665
  - http://data.ashrae.org/standard223/data/lbnl-example-2#65665 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#46825
  - http://data.ashrae.org/standard223/data/lbnl-example-2#46825 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#58412
  - http://data.ashrae.org/standard223/data/lbnl-example-2#58412 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#16512
  - http://data.ashrae.org/standard223/data/lbnl-example-2#16512 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#14994
  - http://data.ashrae.org/standard223/data/lbnl-example-2#14994 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#99818
  - http://data.ashrae.org/standard223/data/lbnl-example-2#99818 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#45595
  - http://data.ashrae.org/standard223/data/lbnl-example-2#45595 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#52923
  - http://data.ashrae.org/standard223/data/lbnl-example-2#52923 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#16174
  - http://data.ashrae.org/standard223/data/lbnl-example-2#16174 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#90636
  - http://data.ashrae.org/standard223/data/lbnl-example-2#90636 needs between 1 and 1 uses of path http://data.ashrae.org/standard223#hasObservationLocation
http://data.ashrae.org/standard223/data/lbnl-example-2#65261
  - http://data.ashrae.org/standard223/data/lbnl-example-2#65261 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#05910
  - http://data.ashrae.org/standard223/data/lbnl-example-2#05910 needs between None and 1 instances of http://data.ashrae.org/standard223#ConnectionPoint on path nd13ff611a1e9486cac4ccb4d2602c7a2b2910
  - http://data.ashrae.org/standard223/data/lbnl-example-2#05910 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#72100
  - http://data.ashrae.org/standard223/data/lbnl-example-2#72100 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#61786
  - http://data.ashrae.org/standard223/data/lbnl-example-2#61786 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#66888
  - http://data.ashrae.org/standard223/data/lbnl-example-2#66888 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#48946
  - http://data.ashrae.org/standard223/data/lbnl-example-2#48946 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#26091
  - http://data.ashrae.org/standard223/data/lbnl-example-2#26091 needs between None and 1 instances of http://data.ashrae.org/standard223#ConnectionPoint on path nd13ff611a1e9486cac4ccb4d2602c7a2b1273
  - http://data.ashrae.org/standard223/data/lbnl-example-2#26091 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#52024
  - http://data.ashrae.org/standard223/data/lbnl-example-2#52024 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#06081
  - http://data.ashrae.org/standard223/data/lbnl-example-2#06081 needs between None and 1 instances of http://data.ashrae.org/standard223#ConnectionPoint on path nd13ff611a1e9486cac4ccb4d2602c7a2b1287
  - http://data.ashrae.org/standard223/data/lbnl-example-2#06081 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#32258
  - http://data.ashrae.org/standard223/data/lbnl-example-2#32258 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#95013
  - http://data.ashrae.org/standard223/data/lbnl-example-2#95013 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#24806
  - http://data.ashrae.org/standard223/data/lbnl-example-2#24806 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#64179
  - http://data.ashrae.org/standard223/data/lbnl-example-2#64179 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#61357
  - http://data.ashrae.org/standard223/data/lbnl-example-2#61357 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#29115
  - http://data.ashrae.org/standard223/data/lbnl-example-2#29115 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#62481
  - http://data.ashrae.org/standard223/data/lbnl-example-2#62481 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#62481 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#04984
  - http://data.ashrae.org/standard223/data/lbnl-example-2#04984 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#53655
  - http://data.ashrae.org/standard223/data/lbnl-example-2#53655 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#88293
  - http://data.ashrae.org/standard223/data/lbnl-example-2#88293 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#14012
  - http://data.ashrae.org/standard223/data/lbnl-example-2#14012 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#42763
  - http://data.ashrae.org/standard223/data/lbnl-example-2#42763 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#15762
  - http://data.ashrae.org/standard223/data/lbnl-example-2#15762 needs to be a http://data.ashrae.org/standard223#Substance-Medium
  - http://data.ashrae.org/standard223/data/lbnl-example-2#15762 needs between None and 1 instances of http://data.ashrae.org/standard223#ConnectionPoint on path nd13ff611a1e9486cac4ccb4d2602c7a2b1464
http://data.ashrae.org/standard223/data/lbnl-example-2#42074
  - http://data.ashrae.org/standard223/data/lbnl-example-2#42074 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#03036
  - http://data.ashrae.org/standard223/data/lbnl-example-2#03036 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#21597
  - http://data.ashrae.org/standard223/data/lbnl-example-2#21597 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#71928
  - http://data.ashrae.org/standard223/data/lbnl-example-2#71928 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#48697
  - http://data.ashrae.org/standard223/data/lbnl-example-2#48697 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#28452
  - http://data.ashrae.org/standard223/data/lbnl-example-2#28452 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#98301
  - http://data.ashrae.org/standard223/data/lbnl-example-2#98301 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#67277
  - http://data.ashrae.org/standard223/data/lbnl-example-2#67277 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#52164
  - http://data.ashrae.org/standard223/data/lbnl-example-2#52164 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#05175
  - http://data.ashrae.org/standard223/data/lbnl-example-2#05175 needs between 1 and 1 instances of http://data.ashrae.org/standard223#Substance-Medium on path http://data.ashrae.org/standard223#hasMedium
http://data.ashrae.org/standard223/data/lbnl-example-2#97435
  - http://data.ashrae.org/standard223/data/lbnl-example-2#97435 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#49497
  - http://data.ashrae.org/standard223/data/lbnl-example-2#49497 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#55810
  - http://data.ashrae.org/standard223/data/lbnl-example-2#55810 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#48607
  - http://data.ashrae.org/standard223/data/lbnl-example-2#48607 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#29636
  - http://data.ashrae.org/standard223/data/lbnl-example-2#29636 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#20991
  - http://data.ashrae.org/standard223/data/lbnl-example-2#20991 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#15996
  - http://data.ashrae.org/standard223/data/lbnl-example-2#15996 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#98159
  - http://data.ashrae.org/standard223/data/lbnl-example-2#98159 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#87692
  - http://data.ashrae.org/standard223/data/lbnl-example-2#87692 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#35841
  - http://data.ashrae.org/standard223/data/lbnl-example-2#35841 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#59177
  - http://data.ashrae.org/standard223/data/lbnl-example-2#59177 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#49337
  - http://data.ashrae.org/standard223/data/lbnl-example-2#49337 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#69810
  - http://data.ashrae.org/standard223/data/lbnl-example-2#69810 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#21806
  - http://data.ashrae.org/standard223/data/lbnl-example-2#21806 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#44005
  - http://data.ashrae.org/standard223/data/lbnl-example-2#44005 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#83786
  - http://data.ashrae.org/standard223/data/lbnl-example-2#83786 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#55772
  - http://data.ashrae.org/standard223/data/lbnl-example-2#55772 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#45385
  - http://data.ashrae.org/standard223/data/lbnl-example-2#45385 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#21241
  - http://data.ashrae.org/standard223/data/lbnl-example-2#21241 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#20149
  - http://data.ashrae.org/standard223/data/lbnl-example-2#20149 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#25706
  - http://data.ashrae.org/standard223/data/lbnl-example-2#25706 needs between 1 and 1 uses of path http://data.ashrae.org/standard223#hasObservationLocation
http://data.ashrae.org/standard223/data/lbnl-example-2#27895
  - http://data.ashrae.org/standard223/data/lbnl-example-2#27895 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#62031
  - http://data.ashrae.org/standard223/data/lbnl-example-2#62031 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#20563
  - http://data.ashrae.org/standard223/data/lbnl-example-2#20563 needs between None and 1 instances of http://data.ashrae.org/standard223#ConnectionPoint on path nd13ff611a1e9486cac4ccb4d2602c7a2b3802
  - http://data.ashrae.org/standard223/data/lbnl-example-2#20563 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#69319
  - http://data.ashrae.org/standard223/data/lbnl-example-2#69319 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#58533
  - http://data.ashrae.org/standard223/data/lbnl-example-2#58533 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#90868
  - http://data.ashrae.org/standard223/data/lbnl-example-2#90868 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#50858
  - http://data.ashrae.org/standard223/data/lbnl-example-2#50858 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#87318
  - http://data.ashrae.org/standard223/data/lbnl-example-2#87318 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#81189
  - http://data.ashrae.org/standard223/data/lbnl-example-2#81189 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#88730
  - http://data.ashrae.org/standard223/data/lbnl-example-2#88730 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#20749
  - http://data.ashrae.org/standard223/data/lbnl-example-2#20749 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#47461
  - http://data.ashrae.org/standard223/data/lbnl-example-2#47461 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#46331
  - http://data.ashrae.org/standard223/data/lbnl-example-2#46331 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#23233
  - http://data.ashrae.org/standard223/data/lbnl-example-2#23233 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#21481
  - http://data.ashrae.org/standard223/data/lbnl-example-2#21481 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#27032
  - http://data.ashrae.org/standard223/data/lbnl-example-2#27032 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#03652
  - http://data.ashrae.org/standard223/data/lbnl-example-2#03652 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#37705
  - http://data.ashrae.org/standard223/data/lbnl-example-2#37705 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#27088
  - http://data.ashrae.org/standard223/data/lbnl-example-2#27088 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#18925
  - http://data.ashrae.org/standard223/data/lbnl-example-2#18925 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#64177
  - http://data.ashrae.org/standard223/data/lbnl-example-2#64177 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#80488
  - http://data.ashrae.org/standard223/data/lbnl-example-2#80488 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#52638
  - http://data.ashrae.org/standard223/data/lbnl-example-2#52638 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#96135
  - http://data.ashrae.org/standard223/data/lbnl-example-2#96135 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#47494
  - http://data.ashrae.org/standard223/data/lbnl-example-2#47494 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#71533
  - http://data.ashrae.org/standard223/data/lbnl-example-2#71533 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#83506
  - http://data.ashrae.org/standard223/data/lbnl-example-2#83506 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#30613
  - http://data.ashrae.org/standard223/data/lbnl-example-2#30613 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#82891
  - http://data.ashrae.org/standard223/data/lbnl-example-2#82891 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#47474
  - http://data.ashrae.org/standard223/data/lbnl-example-2#47474 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#21109
  - http://data.ashrae.org/standard223/data/lbnl-example-2#21109 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#53775
  - http://data.ashrae.org/standard223/data/lbnl-example-2#53775 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#69502
  - http://data.ashrae.org/standard223/data/lbnl-example-2#69502 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#24801
  - http://data.ashrae.org/standard223/data/lbnl-example-2#24801 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#76425
  - http://data.ashrae.org/standard223/data/lbnl-example-2#76425 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#04784
  - http://data.ashrae.org/standard223/data/lbnl-example-2#04784 needs between None and 1 instances of http://data.ashrae.org/standard223#ConnectionPoint on path nd13ff611a1e9486cac4ccb4d2602c7a2b2021
  - http://data.ashrae.org/standard223/data/lbnl-example-2#04784 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#17966
  - http://data.ashrae.org/standard223/data/lbnl-example-2#17966 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#22077
  - http://data.ashrae.org/standard223/data/lbnl-example-2#22077 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#89594
  - http://data.ashrae.org/standard223/data/lbnl-example-2#89594 needs between 1 and 1 uses of path http://data.ashrae.org/standard223#hasObservationLocation
http://data.ashrae.org/standard223/data/lbnl-example-2#22465
  - http://data.ashrae.org/standard223/data/lbnl-example-2#22465 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#95345
  - http://data.ashrae.org/standard223/data/lbnl-example-2#95345 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#84716
  - http://data.ashrae.org/standard223/data/lbnl-example-2#84716 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#84103
  - http://data.ashrae.org/standard223/data/lbnl-example-2#84103 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#24830
  - http://data.ashrae.org/standard223/data/lbnl-example-2#24830 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#97098
  - http://data.ashrae.org/standard223/data/lbnl-example-2#97098 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#85858
  - http://data.ashrae.org/standard223/data/lbnl-example-2#85858 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#76086
  - http://data.ashrae.org/standard223/data/lbnl-example-2#76086 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#06559
  - http://data.ashrae.org/standard223/data/lbnl-example-2#06559 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#15386
  - http://data.ashrae.org/standard223/data/lbnl-example-2#15386 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#80380
  - http://data.ashrae.org/standard223/data/lbnl-example-2#80380 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#92871
  - http://data.ashrae.org/standard223/data/lbnl-example-2#92871 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#26025
  - http://data.ashrae.org/standard223/data/lbnl-example-2#26025 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#60124
  - http://data.ashrae.org/standard223/data/lbnl-example-2#60124 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#91638
  - http://data.ashrae.org/standard223/data/lbnl-example-2#91638 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#36289
  - http://data.ashrae.org/standard223/data/lbnl-example-2#36289 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#79416
  - http://data.ashrae.org/standard223/data/lbnl-example-2#79416 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#21938
  - http://data.ashrae.org/standard223/data/lbnl-example-2#21938 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#30610
  - http://data.ashrae.org/standard223/data/lbnl-example-2#30610 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#75076
  - http://data.ashrae.org/standard223/data/lbnl-example-2#75076 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#97458
  - http://data.ashrae.org/standard223/data/lbnl-example-2#97458 needs to be a http://data.ashrae.org/standard223#Substance-Medium
  - http://data.ashrae.org/standard223/data/lbnl-example-2#97458 needs between None and 1 instances of http://data.ashrae.org/standard223#ConnectionPoint on path nd13ff611a1e9486cac4ccb4d2602c7a2b2603
http://data.ashrae.org/standard223/data/lbnl-example-2#96385
  - http://data.ashrae.org/standard223/data/lbnl-example-2#96385 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#51259
  - http://data.ashrae.org/standard223/data/lbnl-example-2#51259 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#52038
  - http://data.ashrae.org/standard223/data/lbnl-example-2#52038 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#18220
  - http://data.ashrae.org/standard223/data/lbnl-example-2#18220 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#24631
  - http://data.ashrae.org/standard223/data/lbnl-example-2#24631 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#74168
  - http://data.ashrae.org/standard223/data/lbnl-example-2#74168 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#54550
  - http://data.ashrae.org/standard223/data/lbnl-example-2#54550 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#72498
  - http://data.ashrae.org/standard223/data/lbnl-example-2#72498 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#73848
  - http://data.ashrae.org/standard223/data/lbnl-example-2#73848 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#56530
  - http://data.ashrae.org/standard223/data/lbnl-example-2#56530 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#35334
  - http://data.ashrae.org/standard223/data/lbnl-example-2#35334 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#07190
  - http://data.ashrae.org/standard223/data/lbnl-example-2#07190 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#32630
  - http://data.ashrae.org/standard223/data/lbnl-example-2#32630 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#45108
  - http://data.ashrae.org/standard223/data/lbnl-example-2#45108 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#13434
  - http://data.ashrae.org/standard223/data/lbnl-example-2#13434 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#76105
  - http://data.ashrae.org/standard223/data/lbnl-example-2#76105 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#67286
  - http://data.ashrae.org/standard223/data/lbnl-example-2#67286 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#05982
  - http://data.ashrae.org/standard223/data/lbnl-example-2#05982 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#89815
  - http://data.ashrae.org/standard223/data/lbnl-example-2#89815 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#33880
  - http://data.ashrae.org/standard223/data/lbnl-example-2#33880 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#38901
  - http://data.ashrae.org/standard223/data/lbnl-example-2#38901 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#10224
  - http://data.ashrae.org/standard223/data/lbnl-example-2#10224 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#27647
  - http://data.ashrae.org/standard223/data/lbnl-example-2#27647 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#71501
  - http://data.ashrae.org/standard223/data/lbnl-example-2#71501 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#91015
  - http://data.ashrae.org/standard223/data/lbnl-example-2#91015 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#50126
  - http://data.ashrae.org/standard223/data/lbnl-example-2#50126 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#37517
  - http://data.ashrae.org/standard223/data/lbnl-example-2#37517 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#43071
  - http://data.ashrae.org/standard223/data/lbnl-example-2#43071 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#75571
  - http://data.ashrae.org/standard223/data/lbnl-example-2#75571 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#98153
  - http://data.ashrae.org/standard223/data/lbnl-example-2#98153 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#38616
  - http://data.ashrae.org/standard223/data/lbnl-example-2#38616 needs between 1 and 1 uses of path http://data.ashrae.org/standard223#hasObservationLocation
http://data.ashrae.org/standard223/data/lbnl-example-2#91556
  - http://data.ashrae.org/standard223/data/lbnl-example-2#91556 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#56341
  - http://data.ashrae.org/standard223/data/lbnl-example-2#56341 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#38133
  - http://data.ashrae.org/standard223/data/lbnl-example-2#38133 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#87585
  - http://data.ashrae.org/standard223/data/lbnl-example-2#87585 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#20843
  - http://data.ashrae.org/standard223/data/lbnl-example-2#20843 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#07175
  - http://data.ashrae.org/standard223/data/lbnl-example-2#07175 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#94875
  - http://data.ashrae.org/standard223/data/lbnl-example-2#94875 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#49767
  - http://data.ashrae.org/standard223/data/lbnl-example-2#49767 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#41415
  - http://data.ashrae.org/standard223/data/lbnl-example-2#41415 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#64617
  - http://data.ashrae.org/standard223/data/lbnl-example-2#64617 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#11687
  - http://data.ashrae.org/standard223/data/lbnl-example-2#11687 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#46802
  - http://data.ashrae.org/standard223/data/lbnl-example-2#46802 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#77862
  - http://data.ashrae.org/standard223/data/lbnl-example-2#77862 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#25473
  - http://data.ashrae.org/standard223/data/lbnl-example-2#25473 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#35611
  - http://data.ashrae.org/standard223/data/lbnl-example-2#35611 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#61849
  - http://data.ashrae.org/standard223/data/lbnl-example-2#61849 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#96615
  - http://data.ashrae.org/standard223/data/lbnl-example-2#96615 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#02387
  - http://data.ashrae.org/standard223/data/lbnl-example-2#02387 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#99336
  - http://data.ashrae.org/standard223/data/lbnl-example-2#99336 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#16718
  - http://data.ashrae.org/standard223/data/lbnl-example-2#16718 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#25291
  - http://data.ashrae.org/standard223/data/lbnl-example-2#25291 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#33018
  - http://data.ashrae.org/standard223/data/lbnl-example-2#33018 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#38115
  - http://data.ashrae.org/standard223/data/lbnl-example-2#38115 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#42654
  - http://data.ashrae.org/standard223/data/lbnl-example-2#42654 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#19464
  - http://data.ashrae.org/standard223/data/lbnl-example-2#19464 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#72299
  - http://data.ashrae.org/standard223/data/lbnl-example-2#72299 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#49467
  - http://data.ashrae.org/standard223/data/lbnl-example-2#49467 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#01718
  - http://data.ashrae.org/standard223/data/lbnl-example-2#01718 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#44224
  - http://data.ashrae.org/standard223/data/lbnl-example-2#44224 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#96963
  - http://data.ashrae.org/standard223/data/lbnl-example-2#96963 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#03902
  - http://data.ashrae.org/standard223/data/lbnl-example-2#03902 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#61722
  - http://data.ashrae.org/standard223/data/lbnl-example-2#61722 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#47472
  - http://data.ashrae.org/standard223/data/lbnl-example-2#47472 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#55180
  - http://data.ashrae.org/standard223/data/lbnl-example-2#55180 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#56172
  - http://data.ashrae.org/standard223/data/lbnl-example-2#56172 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#31684
  - http://data.ashrae.org/standard223/data/lbnl-example-2#31684 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#00813
  - http://data.ashrae.org/standard223/data/lbnl-example-2#00813 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#47011
  - http://data.ashrae.org/standard223/data/lbnl-example-2#47011 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#08292
  - http://data.ashrae.org/standard223/data/lbnl-example-2#08292 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#85171
  - http://data.ashrae.org/standard223/data/lbnl-example-2#85171 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#76771
  - http://data.ashrae.org/standard223/data/lbnl-example-2#76771 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#55046
  - http://data.ashrae.org/standard223/data/lbnl-example-2#55046 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#86558
  - http://data.ashrae.org/standard223/data/lbnl-example-2#86558 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#25134
  - http://data.ashrae.org/standard223/data/lbnl-example-2#25134 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#94002
  - http://data.ashrae.org/standard223/data/lbnl-example-2#94002 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#03929
  - http://data.ashrae.org/standard223/data/lbnl-example-2#03929 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#18257
  - http://data.ashrae.org/standard223/data/lbnl-example-2#18257 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#48091
  - http://data.ashrae.org/standard223/data/lbnl-example-2#48091 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#02332
  - http://data.ashrae.org/standard223/data/lbnl-example-2#02332 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#29250
  - http://data.ashrae.org/standard223/data/lbnl-example-2#29250 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#82662
  - http://data.ashrae.org/standard223/data/lbnl-example-2#82662 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#42045
  - http://data.ashrae.org/standard223/data/lbnl-example-2#42045 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#59934
  - http://data.ashrae.org/standard223/data/lbnl-example-2#59934 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#58061
  - http://data.ashrae.org/standard223/data/lbnl-example-2#58061 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#29855
  - http://data.ashrae.org/standard223/data/lbnl-example-2#29855 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#33279
  - http://data.ashrae.org/standard223/data/lbnl-example-2#33279 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#17117
  - http://data.ashrae.org/standard223/data/lbnl-example-2#17117 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#04802
  - http://data.ashrae.org/standard223/data/lbnl-example-2#04802 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#81250
  - http://data.ashrae.org/standard223/data/lbnl-example-2#81250 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#72386
  - http://data.ashrae.org/standard223/data/lbnl-example-2#72386 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#39112
  - http://data.ashrae.org/standard223/data/lbnl-example-2#39112 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#82606
  - http://data.ashrae.org/standard223/data/lbnl-example-2#82606 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#59698
  - http://data.ashrae.org/standard223/data/lbnl-example-2#59698 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#54326
  - http://data.ashrae.org/standard223/data/lbnl-example-2#54326 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#90747
  - http://data.ashrae.org/standard223/data/lbnl-example-2#90747 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#80572
  - http://data.ashrae.org/standard223/data/lbnl-example-2#80572 needs between 1 and 1 uses of path http://data.ashrae.org/standard223#hasObservationLocation
http://data.ashrae.org/standard223/data/lbnl-example-2#79626
  - http://data.ashrae.org/standard223/data/lbnl-example-2#79626 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#12279
  - http://data.ashrae.org/standard223/data/lbnl-example-2#12279 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#85434
  - http://data.ashrae.org/standard223/data/lbnl-example-2#85434 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#90577
  - http://data.ashrae.org/standard223/data/lbnl-example-2#90577 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#10484
  - http://data.ashrae.org/standard223/data/lbnl-example-2#10484 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#92683
  - http://data.ashrae.org/standard223/data/lbnl-example-2#92683 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#52809
  - http://data.ashrae.org/standard223/data/lbnl-example-2#52809 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#44513
  - http://data.ashrae.org/standard223/data/lbnl-example-2#44513 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#92766
  - http://data.ashrae.org/standard223/data/lbnl-example-2#92766 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#08607
  - http://data.ashrae.org/standard223/data/lbnl-example-2#08607 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#56886
  - http://data.ashrae.org/standard223/data/lbnl-example-2#56886 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#30777
  - http://data.ashrae.org/standard223/data/lbnl-example-2#30777 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#73694
  - http://data.ashrae.org/standard223/data/lbnl-example-2#73694 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#52427
  - http://data.ashrae.org/standard223/data/lbnl-example-2#52427 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#40757
  - http://data.ashrae.org/standard223/data/lbnl-example-2#40757 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#27741
  - http://data.ashrae.org/standard223/data/lbnl-example-2#27741 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#49369
  - http://data.ashrae.org/standard223/data/lbnl-example-2#49369 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#02277
  - http://data.ashrae.org/standard223/data/lbnl-example-2#02277 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#43950
  - http://data.ashrae.org/standard223/data/lbnl-example-2#43950 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#58761
  - http://data.ashrae.org/standard223/data/lbnl-example-2#58761 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#06147
  - http://data.ashrae.org/standard223/data/lbnl-example-2#06147 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#57607
  - http://data.ashrae.org/standard223/data/lbnl-example-2#57607 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#60047
  - http://data.ashrae.org/standard223/data/lbnl-example-2#60047 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#81688
  - http://data.ashrae.org/standard223/data/lbnl-example-2#81688 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#67251
  - http://data.ashrae.org/standard223/data/lbnl-example-2#67251 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#72014
  - http://data.ashrae.org/standard223/data/lbnl-example-2#72014 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#27363
  - http://data.ashrae.org/standard223/data/lbnl-example-2#27363 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#03206
  - http://data.ashrae.org/standard223/data/lbnl-example-2#03206 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#00319
  - http://data.ashrae.org/standard223/data/lbnl-example-2#00319 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#74322
  - http://data.ashrae.org/standard223/data/lbnl-example-2#74322 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#52944
  - http://data.ashrae.org/standard223/data/lbnl-example-2#52944 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#95888
  - http://data.ashrae.org/standard223/data/lbnl-example-2#95888 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#18449
  - http://data.ashrae.org/standard223/data/lbnl-example-2#18449 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#26803
  - http://data.ashrae.org/standard223/data/lbnl-example-2#26803 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#71745
  - http://data.ashrae.org/standard223/data/lbnl-example-2#71745 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#89750
  - http://data.ashrae.org/standard223/data/lbnl-example-2#89750 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#55720
  - http://data.ashrae.org/standard223/data/lbnl-example-2#55720 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#65334
  - http://data.ashrae.org/standard223/data/lbnl-example-2#65334 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#70952
  - http://data.ashrae.org/standard223/data/lbnl-example-2#70952 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#52815
  - http://data.ashrae.org/standard223/data/lbnl-example-2#52815 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#30223
  - http://data.ashrae.org/standard223/data/lbnl-example-2#30223 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#55020
  - http://data.ashrae.org/standard223/data/lbnl-example-2#55020 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#07056
  - http://data.ashrae.org/standard223/data/lbnl-example-2#07056 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#05785
  - http://data.ashrae.org/standard223/data/lbnl-example-2#05785 needs between 1 and None instances of http://data.ashrae.org/standard223#OutletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
  - http://data.ashrae.org/standard223/data/lbnl-example-2#05785 needs between 1 and None instances of http://data.ashrae.org/standard223#InletConnectionPoint on path http://data.ashrae.org/standard223#hasConnectionPoint
http://data.ashrae.org/standard223/data/lbnl-example-2#49573
  - http://data.ashrae.org/standard223/data/lbnl-example-2#49573 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#21542
  - http://data.ashrae.org/standard223/data/lbnl-example-2#21542 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#87391
  - http://data.ashrae.org/standard223/data/lbnl-example-2#87391 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#92617
  - http://data.ashrae.org/standard223/data/lbnl-example-2#92617 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#94145
  - http://data.ashrae.org/standard223/data/lbnl-example-2#94145 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#99042
  - http://data.ashrae.org/standard223/data/lbnl-example-2#99042 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#43864
  - http://data.ashrae.org/standard223/data/lbnl-example-2#43864 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#91971
  - http://data.ashrae.org/standard223/data/lbnl-example-2#91971 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#73096
  - http://data.ashrae.org/standard223/data/lbnl-example-2#73096 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#16604
  - http://data.ashrae.org/standard223/data/lbnl-example-2#16604 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#41034
  - http://data.ashrae.org/standard223/data/lbnl-example-2#41034 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#92951
  - http://data.ashrae.org/standard223/data/lbnl-example-2#92951 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#21587
  - http://data.ashrae.org/standard223/data/lbnl-example-2#21587 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#68532
  - http://data.ashrae.org/standard223/data/lbnl-example-2#68532 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#06683
  - http://data.ashrae.org/standard223/data/lbnl-example-2#06683 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#86381
  - http://data.ashrae.org/standard223/data/lbnl-example-2#86381 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#60982
  - http://data.ashrae.org/standard223/data/lbnl-example-2#60982 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#73016
  - http://data.ashrae.org/standard223/data/lbnl-example-2#73016 needs between 1 and 1 uses of path http://data.ashrae.org/standard223#hasObservationLocation
http://data.ashrae.org/standard223/data/lbnl-example-2#13564
  - http://data.ashrae.org/standard223/data/lbnl-example-2#13564 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#84297
  - http://data.ashrae.org/standard223/data/lbnl-example-2#84297 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#03307
  - http://data.ashrae.org/standard223/data/lbnl-example-2#03307 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#03631
  - http://data.ashrae.org/standard223/data/lbnl-example-2#03631 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#32620
  - http://data.ashrae.org/standard223/data/lbnl-example-2#32620 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#41417
  - http://data.ashrae.org/standard223/data/lbnl-example-2#41417 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#95629
  - http://data.ashrae.org/standard223/data/lbnl-example-2#95629 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#67299
  - http://data.ashrae.org/standard223/data/lbnl-example-2#67299 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#57007
  - http://data.ashrae.org/standard223/data/lbnl-example-2#57007 needs between 1 and 1 uses of path http://data.ashrae.org/standard223#hasObservationLocation
http://data.ashrae.org/standard223/data/lbnl-example-2#92273
  - http://data.ashrae.org/standard223/data/lbnl-example-2#92273 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#73917
  - http://data.ashrae.org/standard223/data/lbnl-example-2#73917 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#92103
  - http://data.ashrae.org/standard223/data/lbnl-example-2#92103 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#69442
  - http://data.ashrae.org/standard223/data/lbnl-example-2#69442 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#61169
  - http://data.ashrae.org/standard223/data/lbnl-example-2#61169 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#86634
  - http://data.ashrae.org/standard223/data/lbnl-example-2#86634 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#57180
  - http://data.ashrae.org/standard223/data/lbnl-example-2#57180 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#41978
  - http://data.ashrae.org/standard223/data/lbnl-example-2#41978 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#11777
  - http://data.ashrae.org/standard223/data/lbnl-example-2#11777 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#39524
  - http://data.ashrae.org/standard223/data/lbnl-example-2#39524 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#79224
  - http://data.ashrae.org/standard223/data/lbnl-example-2#79224 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#21752
  - http://data.ashrae.org/standard223/data/lbnl-example-2#21752 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#03374
  - http://data.ashrae.org/standard223/data/lbnl-example-2#03374 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#46033
  - http://data.ashrae.org/standard223/data/lbnl-example-2#46033 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#58810
  - http://data.ashrae.org/standard223/data/lbnl-example-2#58810 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#03867
  - http://data.ashrae.org/standard223/data/lbnl-example-2#03867 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#26555
  - http://data.ashrae.org/standard223/data/lbnl-example-2#26555 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#80306
  - http://data.ashrae.org/standard223/data/lbnl-example-2#80306 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#52572
  - http://data.ashrae.org/standard223/data/lbnl-example-2#52572 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#30397
  - http://data.ashrae.org/standard223/data/lbnl-example-2#30397 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#91161
  - http://data.ashrae.org/standard223/data/lbnl-example-2#91161 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#39127
  - http://data.ashrae.org/standard223/data/lbnl-example-2#39127 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#74179
  - http://data.ashrae.org/standard223/data/lbnl-example-2#74179 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#15209
  - http://data.ashrae.org/standard223/data/lbnl-example-2#15209 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#61573
  - http://data.ashrae.org/standard223/data/lbnl-example-2#61573 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#04028
  - http://data.ashrae.org/standard223/data/lbnl-example-2#04028 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#08140
  - http://data.ashrae.org/standard223/data/lbnl-example-2#08140 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#11860
  - http://data.ashrae.org/standard223/data/lbnl-example-2#11860 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#70442
  - http://data.ashrae.org/standard223/data/lbnl-example-2#70442 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#00022
  - http://data.ashrae.org/standard223/data/lbnl-example-2#00022 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#75587
  - http://data.ashrae.org/standard223/data/lbnl-example-2#75587 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#15408
  - http://data.ashrae.org/standard223/data/lbnl-example-2#15408 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#98327
  - http://data.ashrae.org/standard223/data/lbnl-example-2#98327 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#56041
  - http://data.ashrae.org/standard223/data/lbnl-example-2#56041 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#02161
  - http://data.ashrae.org/standard223/data/lbnl-example-2#02161 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#41699
  - http://data.ashrae.org/standard223/data/lbnl-example-2#41699 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#44875
  - http://data.ashrae.org/standard223/data/lbnl-example-2#44875 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#04947
  - http://data.ashrae.org/standard223/data/lbnl-example-2#04947 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#34767
  - http://data.ashrae.org/standard223/data/lbnl-example-2#34767 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#73143
  - http://data.ashrae.org/standard223/data/lbnl-example-2#73143 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#47815
  - http://data.ashrae.org/standard223/data/lbnl-example-2#47815 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#08265
  - http://data.ashrae.org/standard223/data/lbnl-example-2#08265 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#42536
  - http://data.ashrae.org/standard223/data/lbnl-example-2#42536 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#88980
  - http://data.ashrae.org/standard223/data/lbnl-example-2#88980 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#59984
  - http://data.ashrae.org/standard223/data/lbnl-example-2#59984 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#48870
  - http://data.ashrae.org/standard223/data/lbnl-example-2#48870 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#63455
  - http://data.ashrae.org/standard223/data/lbnl-example-2#63455 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#75363
  - http://data.ashrae.org/standard223/data/lbnl-example-2#75363 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#29207
  - http://data.ashrae.org/standard223/data/lbnl-example-2#29207 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#83945
  - http://data.ashrae.org/standard223/data/lbnl-example-2#83945 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#25111
  - http://data.ashrae.org/standard223/data/lbnl-example-2#25111 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#32852
  - http://data.ashrae.org/standard223/data/lbnl-example-2#32852 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#29935
  - http://data.ashrae.org/standard223/data/lbnl-example-2#29935 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#95216
  - http://data.ashrae.org/standard223/data/lbnl-example-2#95216 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#56375
  - http://data.ashrae.org/standard223/data/lbnl-example-2#56375 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#20184
  - http://data.ashrae.org/standard223/data/lbnl-example-2#20184 needs to be a http://qudt.org/schema/qudt/Unit
http://data.ashrae.org/standard223/data/lbnl-example-2#32220
  - http://data.ashrae.org/standard223/data/lbnl-example-2#32220 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#82709
  - http://data.ashrae.org/standard223/data/lbnl-example-2#82709 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#64552
  - http://data.ashrae.org/standard223/data/lbnl-example-2#64552 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#30133
  - http://data.ashrae.org/standard223/data/lbnl-example-2#30133 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://data.ashrae.org/standard223/data/lbnl-example-2#33010
  - http://data.ashrae.org/standard223/data/lbnl-example-2#33010 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#31093
  - http://data.ashrae.org/standard223/data/lbnl-example-2#31093 needs to be a http://data.ashrae.org/standard223#Substance-Medium
http://data.ashrae.org/standard223/data/lbnl-example-2#16279
  - http://data.ashrae.org/standard223/data/lbnl-example-2#16279 needs to be a http://data.ashrae.org/standard223#Substance-Medium