Warning

This model has not been updated since the last revision of the 223P ontology, and it may not pass validation. 223P was last updated on 2024-12-19 09:48:17. The model file was last updated on 2024-09-14 12:12:25

PNNL Example Building 3 Model 2#

Exammple Building 3 is a real-world medium-sized office building. It is approximately 67,000 square feet in size, contains 2 floors, 27 space types, and 469 rooms. Labels have been anonymized, and are not interpretable. 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. The lighting system primariliy uses fluorescent luminaires and zone-based lighting controllers that communicate with user interface devices and wireless gatetways over DALI networks. The gateways collect occupancy and light sensor data over an ISM-band wireless network.

Example Building 3 Model 2 is provided by Pacific Northwest National Laboratory. See LBNL Example Building 3 model 1 for a different modeling approach for the same building.

Contents#

This model contains a complete representation of the building architecture and electrical/lighting system, and a partial representation of the lighting control system.

In addition to the s223 ontology, the model uses the Real Estate Core ontology to describe space types. The Real Estate Core ontology is extended by defining 2 subclasses for rec:Office.

recx:OpenOffice rdfs:subClassOf rec:Office;
  rdfs:label "Open Office".
recx:PrivateOffice rdfs:subClassOf rec:Office;
  rdfs:label "Private Office".

Source#

The model was created from souce data consisting of a Revit building information model (BIM) exported via a Speckle interface.

Speckle view of rooms and lighting fixtures#

image

Model instance data have a prefix that is resolvable to a Speckle URL.

@prefix bdg3: <http://speckle.xyz/streams/bf7685a6aa/objects/>

For example, the following luminaire resolves to http://speckle.xyz/streams/bf7685a6aa/objects/978e64f766e711a6cc73f3a4d4c0a3e9 :

bdg3:978e64f766e711a6cc73f3a4d4c0a3e9 a s223:Luminaire

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:pnnl-bdg3-2")
model.graph.parse("https://models.open223.info/pnnl-bdg3-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 dcterms: <http://purl.org/dc/terms/> .
@prefix ns1: <http://qudt.org/schema/qudt/> .
@prefix ns2: <http://data.ashrae.org/standard223#> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

[] a sh:ValidationReport ;
    sh:conforms false ;
    sh:result [ a sh:ValidationResult ;
            sh:focusNode <http://qudt.org/vocab/quantitykind/Slowing-DownArea> ;
            sh:resultMessage "Value must be an instance of ns1:Unit" ;
            sh:resultPath ns1:applicableUnit ;
            sh:resultSeverity sh:Violation ;
            sh:sourceConstraintComponent sh:ClassConstraintComponent ;
            sh:sourceShape ns1:QuantityKind-applicableUnit ;
            sh:value <http://qudt.org/vocab/unit/KiloMIL_Circ> ],
        [ a sh:ValidationResult ;
            sh:focusNode <http://qudt.org/vocab/quantitykind/SectionModulus> ;
            sh:resultMessage "Property may only have 1 value, but found 2" ;
            sh:resultPath dcterms:d
http://qudt.org/vocab/quantitykind/BetaDisintegrationEnergy
  - http://qudt.org/vocab/unit/PicoJ on http://qudt.org/vocab/quantitykind/BetaDisintegrationEnergy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/THERM_US on http://qudt.org/vocab/quantitykind/BetaDisintegrationEnergy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/NanoJ on http://qudt.org/vocab/quantitykind/BetaDisintegrationEnergy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/THERM_EC on http://qudt.org/vocab/quantitykind/BetaDisintegrationEnergy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/BetaDisintegrationEnergy expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/b4f132fba9abdd9e93f08d03cb72ba63
  - http://speckle.xyz/streams/bf7685a6aa/objects/6522948c17f68892a20ab290338e3478 on http://speckle.xyz/streams/bf7685a6aa/objects/b4f132fba9abdd9e93f08d03cb72ba63 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/6522948c17f68892a20ab290338e3478 on http://speckle.xyz/streams/bf7685a6aa/objects/b4f132fba9abdd9e93f08d03cb72ba63 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/VaporPermeability
  - http://qudt.org/vocab/unit/PERM_Metric_23DEG_C on http://qudt.org/vocab/quantitykind/VaporPermeability needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloGM-PER-PA-SEC-M on http://qudt.org/vocab/quantitykind/VaporPermeability needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PERM_Metric_0DEG_C on http://qudt.org/vocab/quantitykind/VaporPermeability needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/VaporPermeability expected at most 1 uses of path qudt:plainTextDescription
  - http://qudt.org/vocab/quantitykind/VaporPermeability expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/unit/GigaOHM
  - http://qudt.org/vocab/unit/GigaOHM expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/GigaOHM expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac
  - http://speckle.xyz/streams/bf7685a6aa/objects/c8d74312f7bce1c9b6478e66d4f19320 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/17592c23e3930128143ddd679cd6a0d0 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/868c1e93f5a58548b63254651d2bea10 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e9490e3512dab7db58f40a947313427f on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/489334ec2ac2a1a03ce346106f6040dd on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/bfcc2b802b338cb0cbaefad6542c58d7 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/a1b0abf6dd519084fca5274740cfb753 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/0ad95ab1c7f34686f7ac100a0f473d42 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/8e77b914648ba752ac9b7c04c1ab161e on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/9afce26e156ee27c0851a8c7906ff506 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/3efdbbd7d157786885a7c74d641c8fae on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/d65f8c8c63863a9955cad6647fa559f4 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/99404186dbba0f4f7f1398f8aa74f39f on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/3efdbbd7d157786885a7c74d641c8fae on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/230bee4acdd75163083829e8ab8a39f2 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/c2c965eb3fae861fbf679d2fd79cae7a on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/8e77b914648ba752ac9b7c04c1ab161e on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/a1d67b4208f6eed0293c478ac7f2db72 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/874a3138d2a825dffee742833b559af8 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e9490e3512dab7db58f40a947313427f on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/5c9925a4674bb4a61b33bb0452c6deaf on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/52d7bafa36957b9e565938403801ab84 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/d48d37e3edb4c6def09923403014eb03 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/38b821c823fa96dd85042fa050adfcd0 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/598a0c5bed585c4e7fdfeb688cc62eb2 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/5556cde6660a613e241f1da37e548290 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/666041a31abcd611d10724fa62536d0b on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/2e7fcf08c8c16097c4fb8b7074f6b8a3 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/28aef50ead306cc9aaa610ad0b1fe1f6 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/c1e7bac9cc9cff56ce6fff37c81afd27 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/88e5f0e92bf4bbc79c68bfdbe2675e55 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/65d20ea93432ed9190f94c4508d4d1b3 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/5c9925a4674bb4a61b33bb0452c6deaf on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/1dc2c8fcc6faad709669a1da5c22f1fb on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/adf053d1dc959c596d6baa749cea6879 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/ce1738a180c1ee8473a14a728d2fec4b on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/671f0fd33000e3c39075ec98e1126a0a on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/0590d70d00595729c6d35b1234977419 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/f9f9f58777812d5fea59aef9b267ba4e on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/442b75f265dad85708d17330be21561c on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/97d7a767c870fdff1a209b9445a9e911 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/f7c769a50d39f020556ab74d468269a2 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/ce3f60d6e3b49ebc1f1e6990046a5617 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/30fb4b69fa549ef9a7e18ead4885dec5 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/86794e87250ef6ac1ca88b1e608e64b4 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/22ee737a989391acee4ea60354e91210 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/166e27749553cf3219b95effaa60229f on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/f425076ef1bc756a05acbca60a39c18d on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/0152b9161ed0a0d6e3ae6919ab77ab11 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/2bab3a834da573d903244a9902f78aa1 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/a2275be1b771646099111ea05863ea68 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/3bba482343b8d72c580af14e0b0e05df on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/9bbb96d450ec2617aa02cc6f1b800bba on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/f543cf8563e2505d81f5e76e2be01e05 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/475d9640e0e1761de64f8d863e5d5a79 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/0ad95ab1c7f34686f7ac100a0f473d42 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/598a0c5bed585c4e7fdfeb688cc62eb2 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/de6a9e0a58ee766f3a43d50370ea19de on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/f5d08d08b8a951b4e8c6f58253819260 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e5eb69c71be84f5da9e07df2de08c8eb on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/f543cf8563e2505d81f5e76e2be01e05 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/8492684344e3fa16fe12d0303f24fe0d on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/2bab3a834da573d903244a9902f78aa1 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e5eb69c71be84f5da9e07df2de08c8eb on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/f73afc48debde36cdd78d51a0b31c30a on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/f425076ef1bc756a05acbca60a39c18d on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/868c1e93f5a58548b63254651d2bea10 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/8d3ab9635d58bfdfc81c3f647c553b97 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/d29b46cf61566e12ce91906d0ff88789 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/65f08905dad9fad24ddbf157762f65af on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e8e61103cdf42e0fd7b5f6b6301376d0 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/c004d7eef81cf6ab6b6ddf38b1cbabc1 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/39585c6ef6b03b8dbb18fb8a3bed20a3 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/d29b46cf61566e12ce91906d0ff88789 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/60dec90ea4a69243d04d1865db4ab294 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/089b7b828f28a846fcbcbd103c8492e5 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e81a465e50845b69c15fe22a744fc9df on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/acb6542f18bd3dc78a9dcd9b4ad32d71 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/9a31f4bc3b0b7b0d9e646386a04f1dd7 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e97571e2dfc45c32f85efb64c6ccba64 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/d10364e92e51783f043254a82d39aa37 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/a27a92ffec8feef42fdacc61025a95d6 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/d48d37e3edb4c6def09923403014eb03 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/decfcfb9b61288ea8bb8b586936e4e71 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/436cbdf042b2430d478faaa32f8345b5 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/098d381126c26c79190f714830a34e51 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/f81349f450082607823b374cbf6090c1 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/f73afc48debde36cdd78d51a0b31c30a on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/489334ec2ac2a1a03ce346106f6040dd on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/38de361c40151688ec4354659cc9e855 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/bfcc2b802b338cb0cbaefad6542c58d7 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/f9f9f58777812d5fea59aef9b267ba4e on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/a90357aede518899ef1628d9ac8c23f7 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/1a6afbdfd275e54fbec0848e9cc9a48d on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/475d9640e0e1761de64f8d863e5d5a79 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/f6d5b4ca6cd4e394b60620e0abbab45f on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/692b74cce4df1fc8676e483160064c85 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/4e0cc1fec29ebf21cd3b0b42531f704e on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/96b50d6b8d4e936c2c04a6876aa61c37 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/3bba482343b8d72c580af14e0b0e05df on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/7b2c9e560d7ad3bbb5ccd360227389ab on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e81a465e50845b69c15fe22a744fc9df on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/a2275be1b771646099111ea05863ea68 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/874a3138d2a825dffee742833b559af8 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/d77f0206f793d366dcf43a6875c39716 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/06c67bfcd6d2f5b575f38dba0f51b672 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/0dbe61414366819b7df5eff0ff4290d0 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/f1fa1d87c09023b9c95ee3622445ae59 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/f81349f450082607823b374cbf6090c1 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/88e5f0e92bf4bbc79c68bfdbe2675e55 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/dda6fc2cd9f746d9e9297e0859f5eb4d on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/288eb5e729bd3a5f915b25b9695e2397 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/a5893cbf3605b39a09225a1ca64b0b2e on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/ca6cec87b2cfc139e5610127872951ea on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/f6d5b4ca6cd4e394b60620e0abbab45f on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e9670962d6933d8e0a96caf59912d990 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/65d20ea93432ed9190f94c4508d4d1b3 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/28aef50ead306cc9aaa610ad0b1fe1f6 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/166e27749553cf3219b95effaa60229f on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/30fb4b69fa549ef9a7e18ead4885dec5 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/d1d7be0d0eb1a25441be555456d8728d on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/9bbb96d450ec2617aa02cc6f1b800bba on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/9895428471df191215db83d9f8082645 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/7dbc8030bcb7a9e9a7a560eec36e9290 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/688eea56b7b78e0f7c7b90dced966926 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/4889cd9870fe6a53e7dd4c43f0048a0a on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e2c2fcb66699bae88ba79c422b644168 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/077fed24ea7f83e4fab775c9a2571143 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/52d7bafa36957b9e565938403801ab84 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/1aa18520ad959a6b477ce9a6cd61c432 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/be8ada1cbd31aa6dbf6fccb3495a0ef3 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/a425da88edbb46d1210f95207abcb30a on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/2119b9678ef6ebb538a9e7cbcf2370fa on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/bb735c1fd5e7bce4e542eb2535083e45 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/c11557e21bacf2f498a7839086c087a0 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e8908b5eec592c1e9e520605ad787a0c on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/c26c629052aceea470811580bb1ab29f on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/38b821c823fa96dd85042fa050adfcd0 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/97d7a767c870fdff1a209b9445a9e911 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/06c67bfcd6d2f5b575f38dba0f51b672 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/ce1738a180c1ee8473a14a728d2fec4b on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/78b0d278cde75c79f13d638e01c2c702 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/66cce2bdb57b61f2d10f6cee8c508243 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/f1fa1d87c09023b9c95ee3622445ae59 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/60dec90ea4a69243d04d1865db4ab294 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/303a333ea3391daa29509be9eb9bb187 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/2119b9678ef6ebb538a9e7cbcf2370fa on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/f7c769a50d39f020556ab74d468269a2 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/9a31f4bc3b0b7b0d9e646386a04f1dd7 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/688b34664f1f51ab620458521e56a4b6 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e8e61103cdf42e0fd7b5f6b6301376d0 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/38de361c40151688ec4354659cc9e855 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/9857c2e4ec6cf0ebcb9e452e1ad1fa77 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/c59d0357cccce2c360fa88610cfb9dc0 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/be8ada1cbd31aa6dbf6fccb3495a0ef3 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/a27a92ffec8feef42fdacc61025a95d6 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/1a6afbdfd275e54fbec0848e9cc9a48d on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e2c2fcb66699bae88ba79c422b644168 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/a1b0abf6dd519084fca5274740cfb753 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e97571e2dfc45c32f85efb64c6ccba64 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/66cce2bdb57b61f2d10f6cee8c508243 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/230bee4acdd75163083829e8ab8a39f2 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/442b75f265dad85708d17330be21561c on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/23ab52de81ba42f888479330edb7ce76 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/86794e87250ef6ac1ca88b1e608e64b4 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/a1d67b4208f6eed0293c478ac7f2db72 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/99404186dbba0f4f7f1398f8aa74f39f on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/098d381126c26c79190f714830a34e51 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/c8fb46fc939728e45252377481a55e6a on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/9895428471df191215db83d9f8082645 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/815aa4f3a6e9b6bd3d666fe7d5662428 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/39585c6ef6b03b8dbb18fb8a3bed20a3 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/077fed24ea7f83e4fab775c9a2571143 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e7c9e2f9a7a0a501d31eab5423876669 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/acb6542f18bd3dc78a9dcd9b4ad32d71 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/66a3014cb513eb02828ffb12c7f7ef5b on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/815aa4f3a6e9b6bd3d666fe7d5662428 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/d1d7be0d0eb1a25441be555456d8728d on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/7dbc8030bcb7a9e9a7a560eec36e9290 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/a90357aede518899ef1628d9ac8c23f7 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/44f7d7dae3b62130ad8fda3f589fc508 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/9afce26e156ee27c0851a8c7906ff506 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/bb735c1fd5e7bce4e542eb2535083e45 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/4e0cc1fec29ebf21cd3b0b42531f704e on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/57b18a74ff93e5a9428e838f72c71067 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/4889cd9870fe6a53e7dd4c43f0048a0a on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/adf053d1dc959c596d6baa749cea6879 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/78b0d278cde75c79f13d638e01c2c702 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/17592c23e3930128143ddd679cd6a0d0 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/decfcfb9b61288ea8bb8b586936e4e71 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/ca6cec87b2cfc139e5610127872951ea on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/9857c2e4ec6cf0ebcb9e452e1ad1fa77 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/c1e7bac9cc9cff56ce6fff37c81afd27 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/8d3ab9635d58bfdfc81c3f647c553b97 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/44f7d7dae3b62130ad8fda3f589fc508 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/688b34664f1f51ab620458521e56a4b6 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/0152b9161ed0a0d6e3ae6919ab77ab11 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/c8d74312f7bce1c9b6478e66d4f19320 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/a5893cbf3605b39a09225a1ca64b0b2e on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/18f8a94e26f42bba94e987e597ddfd5d on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/288eb5e729bd3a5f915b25b9695e2397 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/65f08905dad9fad24ddbf157762f65af on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/c004d7eef81cf6ab6b6ddf38b1cbabc1 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e8908b5eec592c1e9e520605ad787a0c on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/66a3014cb513eb02828ffb12c7f7ef5b on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/d65f8c8c63863a9955cad6647fa559f4 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/2574b16b5e9d5e0bea710d1ca119a45a on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/fd13fab9dd5bf7fb5f34f8a47903f3c4 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/c59d0357cccce2c360fa88610cfb9dc0 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/0c99cbe31ea235d05bdcd5ce3a0ab2af on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/5556cde6660a613e241f1da37e548290 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/666041a31abcd611d10724fa62536d0b on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/c2c965eb3fae861fbf679d2fd79cae7a on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/22ee737a989391acee4ea60354e91210 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/28299383e0df00b91df539a74c7815c2 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/96b50d6b8d4e936c2c04a6876aa61c37 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/c8fb46fc939728e45252377481a55e6a on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/c11557e21bacf2f498a7839086c087a0 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/c26c629052aceea470811580bb1ab29f on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/8492684344e3fa16fe12d0303f24fe0d on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/28299383e0df00b91df539a74c7815c2 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/688eea56b7b78e0f7c7b90dced966926 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/23ab52de81ba42f888479330edb7ce76 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/7b2c9e560d7ad3bbb5ccd360227389ab on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/089b7b828f28a846fcbcbd103c8492e5 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/d10364e92e51783f043254a82d39aa37 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/f5d08d08b8a951b4e8c6f58253819260 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/a425da88edbb46d1210f95207abcb30a on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/436cbdf042b2430d478faaa32f8345b5 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/2574b16b5e9d5e0bea710d1ca119a45a on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/0c99cbe31ea235d05bdcd5ce3a0ab2af on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/2e7fcf08c8c16097c4fb8b7074f6b8a3 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/692b74cce4df1fc8676e483160064c85 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/d77f0206f793d366dcf43a6875c39716 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/0dbe61414366819b7df5eff0ff4290d0 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/18f8a94e26f42bba94e987e597ddfd5d on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/fd13fab9dd5bf7fb5f34f8a47903f3c4 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/de6a9e0a58ee766f3a43d50370ea19de on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/1aa18520ad959a6b477ce9a6cd61c432 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/671f0fd33000e3c39075ec98e1126a0a on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e7c9e2f9a7a0a501d31eab5423876669 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/0590d70d00595729c6d35b1234977419 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e9670962d6933d8e0a96caf59912d990 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/ce3f60d6e3b49ebc1f1e6990046a5617 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/dda6fc2cd9f746d9e9297e0859f5eb4d on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/303a333ea3391daa29509be9eb9bb187 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/57b18a74ff93e5a9428e838f72c71067 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/1dc2c8fcc6faad709669a1da5c22f1fb on http://speckle.xyz/streams/bf7685a6aa/objects/c2a281dbb365e205175d77ff574b4dac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/0a0a3cff079bda7051ef5e68d9494306
  - http://speckle.xyz/streams/bf7685a6aa/objects/f031db8cf74c1d34f7ec9caaa44e707f on http://speckle.xyz/streams/bf7685a6aa/objects/0a0a3cff079bda7051ef5e68d9494306 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/f031db8cf74c1d34f7ec9caaa44e707f on http://speckle.xyz/streams/bf7685a6aa/objects/0a0a3cff079bda7051ef5e68d9494306 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/LevelWidth
  - http://qudt.org/vocab/unit/NanoJ on http://qudt.org/vocab/quantitykind/LevelWidth needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PicoJ on http://qudt.org/vocab/quantitykind/LevelWidth needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/LevelWidth expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/Kerma
  - http://qudt.org/vocab/unit/KiloGRAY on http://qudt.org/vocab/quantitykind/Kerma needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CentiGRAY on http://qudt.org/vocab/quantitykind/Kerma needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Kerma expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/MegaGRAY on http://qudt.org/vocab/quantitykind/Kerma needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/028099b073d8078d687a8bc43af359c3
  - http://speckle.xyz/streams/bf7685a6aa/objects/77fa201d44b529fd0ae42b20ba8ba809 on http://speckle.xyz/streams/bf7685a6aa/objects/028099b073d8078d687a8bc43af359c3 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/77fa201d44b529fd0ae42b20ba8ba809 on http://speckle.xyz/streams/bf7685a6aa/objects/028099b073d8078d687a8bc43af359c3 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9
  - http://speckle.xyz/streams/bf7685a6aa/objects/2ae3884269b0a46e5ece05ce9e1fcd71 on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/8e754b8c808cf1a1e48137195659f8c8 on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e192c1307d2ac8dcde3ff49ce414db81 on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/bd4c1bbaf855ba85dd10beedc3c5f7f4 on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/c2fc93ee9dec1445af89da62458be10d on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/18357be2061a0be61152934dd62335e9 on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/5aa8dbce5ed730aeaaab18a2c23b2dae on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/0849cbae1dcd58718497524998b3bd30 on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/6b7f1aad6288ea44a0b709fbf06a8918 on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/61392c60c3f0f6583028d86c3528cd5c on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/afd2940fe9aa7135187ec2abaaef0157 on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/87f74a2a608ccd6932697eb7aea3ec7c on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/62014ffc2035e78fa2838efe58021617 on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/793ac5107a19df09a832f066266912e8 on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/659672eeff56fe3536315764b764a663 on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/416e54a4b145034d01f2f05617c72569 on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/ea809d7a6106eaba6d818bfdb3e3e5b9 on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/0d3bf549d1c8d3a7f42c473f8fa81827 on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/d5b1769b748423fb98cace29a0366946 on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/af1446d067d1a6d619cec36730b3234c on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/768970d137816ceece03741af232ae99 on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/b12ac1bee6f170f908d300fa71c95111 on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/18dcb5c6b06a1df3084d52f7b75783a1 on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/9235406fdde87cb2ee62f34297961438 on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/c1f8ba2020eb6468b1d37e4445924aa6 on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/2c18eee18f19e067d7eba1b6152c5610 on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/f031db8cf74c1d34f7ec9caaa44e707f on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/570de36b94b8ce5c1670646dcd7526e1 on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/18dcb5c6b06a1df3084d52f7b75783a1 on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/03183bd47ce710193f9d15449df4add8 on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/12a37af4b50e5c925cc2fe8c5cfd161a on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/38fc1c83ce7cd22674c69fd719e87f00 on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/9909d4e8918567000c9be885ac99b3cd on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/b1704240e49d5b4aa831d684c64ab3e7 on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/416e54a4b145034d01f2f05617c72569 on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/6522948c17f68892a20ab290338e3478 on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/77fa201d44b529fd0ae42b20ba8ba809 on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/0d245daa39fba4d252d07553fdb4c419 on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/326fd9e15b12400fd6b47bf26d8fbf84 on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/4450fafa9b35f62c2043d9df9a7f700d on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/60c0e7e594f49058fd28aebc9177ded9 on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/5113048d9de5edce9a56ff05c5feb804 on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e192c1307d2ac8dcde3ff49ce414db81 on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/d912bfa2c63c5be2c0557c9a5ac0045b on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e9d3c9ff9450f7b762dcae8badb9365d on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/f3ec1e36a99896dc93fec2e9644475bf on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/9909d4e8918567000c9be885ac99b3cd on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e70d7bc92fc874a812626d682a29b370 on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/6b7f1aad6288ea44a0b709fbf06a8918 on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/0d8c716bf524666d44c38328fe3f5865 on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/60c0e7e594f49058fd28aebc9177ded9 on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/d5b1769b748423fb98cace29a0366946 on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e9d3c9ff9450f7b762dcae8badb9365d on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/90503bd239890ecb4ef6f29e5898c47b on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/d912bfa2c63c5be2c0557c9a5ac0045b on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/768970d137816ceece03741af232ae99 on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/f3ec1e36a99896dc93fec2e9644475bf on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/18357be2061a0be61152934dd62335e9 on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/15b9f1bbc651a81dea26684ad543f70a on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/a08393e06078ad931cc1683da8363cb4 on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/82270a0b3589a9ebc714fbf580619e80 on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/6522948c17f68892a20ab290338e3478 on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/659672eeff56fe3536315764b764a663 on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/62014ffc2035e78fa2838efe58021617 on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/afd2940fe9aa7135187ec2abaaef0157 on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/03183bd47ce710193f9d15449df4add8 on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/42b77602b43873e4fbc17acb6b3b7f34 on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e13dd4b578872dbd32e09626f5d25240 on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/5751a7a8490e489a1a00976905f9b01b on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/9d0351d65cbbdcd5c9dfed6220ed3795 on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/dfc0c3833a46266c71575787aff0f20d on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/6e02e6432b5c2bd4b3c9f66e71ca8f1a on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/4ba074e46be9bb3f56b99137981fb313 on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/12a37af4b50e5c925cc2fe8c5cfd161a on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/9235406fdde87cb2ee62f34297961438 on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/c2fc93ee9dec1445af89da62458be10d on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/2ae3884269b0a46e5ece05ce9e1fcd71 on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/77fa201d44b529fd0ae42b20ba8ba809 on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/38fc1c83ce7cd22674c69fd719e87f00 on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/90503bd239890ecb4ef6f29e5898c47b on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/11e2de971443671ebd78fe480e1cd147 on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/8e754b8c808cf1a1e48137195659f8c8 on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/15b9f1bbc651a81dea26684ad543f70a on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/42b77602b43873e4fbc17acb6b3b7f34 on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/d8233308d858417f63d96f5f694e9538 on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/c5380b973ef73d9425d8fd919e1a7538 on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/0e5bab348c0d7a43d3197d71b2ecdff0 on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/ea1260ec254fcbc4b0630875ec6ed737 on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/ea1260ec254fcbc4b0630875ec6ed737 on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/326fd9e15b12400fd6b47bf26d8fbf84 on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/2c18eee18f19e067d7eba1b6152c5610 on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/f031db8cf74c1d34f7ec9caaa44e707f on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/0d245daa39fba4d252d07553fdb4c419 on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/d8233308d858417f63d96f5f694e9538 on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/9d0351d65cbbdcd5c9dfed6220ed3795 on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/0d3bf549d1c8d3a7f42c473f8fa81827 on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/4ba074e46be9bb3f56b99137981fb313 on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/82270a0b3589a9ebc714fbf580619e80 on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/11e2de971443671ebd78fe480e1cd147 on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/7027106b86bbf1624aeecea353bf4412 on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/5113048d9de5edce9a56ff05c5feb804 on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/6e02e6432b5c2bd4b3c9f66e71ca8f1a on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/b1704240e49d5b4aa831d684c64ab3e7 on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/16c0ff093fe0cf359342709f754806e1 on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/74116e0c46d445a4c9ac39c7f1b75206 on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/74116e0c46d445a4c9ac39c7f1b75206 on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e13dd4b578872dbd32e09626f5d25240 on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/8290128282ec5e0854b6b095c1cfbe9b on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/aa3aa38ee5b10e40c9ede870225fd503 on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/16c0ff093fe0cf359342709f754806e1 on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/4450fafa9b35f62c2043d9df9a7f700d on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/87f74a2a608ccd6932697eb7aea3ec7c on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/af1446d067d1a6d619cec36730b3234c on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e70d7bc92fc874a812626d682a29b370 on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/1a82242a9320f719b8162c37bd9c580e on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/5aa8dbce5ed730aeaaab18a2c23b2dae on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/aa3aa38ee5b10e40c9ede870225fd503 on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/c1f8ba2020eb6468b1d37e4445924aa6 on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/8290128282ec5e0854b6b095c1cfbe9b on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/570de36b94b8ce5c1670646dcd7526e1 on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/9146000a517bc8f7060b1fe8d939338d on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/673296ef20285eecee055d8eeed2acd0 on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/7027106b86bbf1624aeecea353bf4412 on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/673296ef20285eecee055d8eeed2acd0 on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/0d8c716bf524666d44c38328fe3f5865 on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/a08393e06078ad931cc1683da8363cb4 on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/0849cbae1dcd58718497524998b3bd30 on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/1a82242a9320f719b8162c37bd9c580e on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/5751a7a8490e489a1a00976905f9b01b on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/9146000a517bc8f7060b1fe8d939338d on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/ea809d7a6106eaba6d818bfdb3e3e5b9 on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/b12ac1bee6f170f908d300fa71c95111 on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/c5380b973ef73d9425d8fd919e1a7538 on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/793ac5107a19df09a832f066266912e8 on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/bd4c1bbaf855ba85dd10beedc3c5f7f4 on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/0e5bab348c0d7a43d3197d71b2ecdff0 on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/dfc0c3833a46266c71575787aff0f20d on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/61392c60c3f0f6583028d86c3528cd5c on http://speckle.xyz/streams/bf7685a6aa/objects/21fab698938f1728205c2ace5adf07b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/MomentOfInertia
  - http://qudt.org/vocab/quantitykind/MomentOfInertia expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/StressIntensityFactor
  - http://qudt.org/vocab/quantitykind/StressIntensityFactor expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/PA-M0dot5 on http://qudt.org/vocab/quantitykind/StressIntensityFactor needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MegaPA-M0dot5 on http://qudt.org/vocab/quantitykind/StressIntensityFactor needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/constant/Value_KelvinElectronVoltRelationship
  - http://qudt.org/vocab/constant/Value_KelvinElectronVoltRelationship expected at most 1 uses of path qudt:standardUncertainty
http://speckle.xyz/streams/bf7685a6aa/objects/03b0dfa48986a1b54e4b0eb755a3782e
  - http://speckle.xyz/streams/bf7685a6aa/objects/28aef50ead306cc9aaa610ad0b1fe1f6 on http://speckle.xyz/streams/bf7685a6aa/objects/03b0dfa48986a1b54e4b0eb755a3782e needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/28aef50ead306cc9aaa610ad0b1fe1f6 on http://speckle.xyz/streams/bf7685a6aa/objects/03b0dfa48986a1b54e4b0eb755a3782e needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/DiffusionLength
  - http://qudt.org/vocab/unit/GA_Charriere on http://qudt.org/vocab/quantitykind/DiffusionLength needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CHAIN_US on http://qudt.org/vocab/quantitykind/DiffusionLength needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/ZOLL on http://qudt.org/vocab/quantitykind/DiffusionLength needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/DiffusionLength expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/GibbsEnergy
  - http://qudt.org/vocab/unit/THERM_EC on http://qudt.org/vocab/quantitykind/GibbsEnergy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/NanoJ on http://qudt.org/vocab/quantitykind/GibbsEnergy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/THERM_US on http://qudt.org/vocab/quantitykind/GibbsEnergy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/GibbsEnergy expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/quantitykind/GibbsEnergy expected at most 1 uses of path qudt:plainTextDescription
  - http://qudt.org/vocab/unit/PicoJ on http://qudt.org/vocab/quantitykind/GibbsEnergy needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/PropellantMass
  - http://qudt.org/vocab/unit/PFUND on http://qudt.org/vocab/quantitykind/PropellantMass needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/TON on http://qudt.org/vocab/quantitykind/PropellantMass needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MOMME_Textile on http://qudt.org/vocab/quantitykind/PropellantMass needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MOMME_Pearl on http://qudt.org/vocab/quantitykind/PropellantMass needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MegaTON on http://qudt.org/vocab/quantitykind/PropellantMass needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MegaTONNE on http://qudt.org/vocab/quantitykind/PropellantMass needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/WaterVaporDiffusionCoefficient
  - http://qudt.org/vocab/unit/KiloGM-PER-PA-SEC-M on http://qudt.org/vocab/quantitykind/WaterVaporDiffusionCoefficient needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/Power
  - http://qudt.org/vocab/unit/J-PER-DAY on http://qudt.org/vocab/quantitykind/Power needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloJ-PER-MIN on http://qudt.org/vocab/quantitykind/Power needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GigaJ-PER-SEC on http://qudt.org/vocab/quantitykind/Power needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PicoJ-PER-SEC on http://qudt.org/vocab/quantitykind/Power needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/TeraW-HR-PER-YR on http://qudt.org/vocab/quantitykind/Power needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PetaW on http://qudt.org/vocab/quantitykind/Power needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/NanoJ-PER-SEC on http://qudt.org/vocab/quantitykind/Power needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MicroJ-PER-SEC on http://qudt.org/vocab/quantitykind/Power needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/TeraJ-PER-SEC on http://qudt.org/vocab/quantitykind/Power needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloJ-PER-DAY on http://qudt.org/vocab/quantitykind/Power needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloJ-PER-SEC on http://qudt.org/vocab/quantitykind/Power needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/J-PER-MIN on http://qudt.org/vocab/quantitykind/Power needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliJ-PER-SEC on http://qudt.org/vocab/quantitykind/Power needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PetaJ-PER-SEC on http://qudt.org/vocab/quantitykind/Power needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PFERDESTAERKE on http://qudt.org/vocab/quantitykind/Power needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/ExaW on http://qudt.org/vocab/quantitykind/Power needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Power expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/ExaJ-PER-SEC on http://qudt.org/vocab/quantitykind/Power needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloJ-PER-HR on http://qudt.org/vocab/quantitykind/Power needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/TransmissionRatioBetweenRotationAndTranslation
  - http://qudt.org/vocab/quantitykind/TransmissionRatioBetweenRotationAndTranslation expected at most 1 uses of path qudt:plainTextDescription
http://speckle.xyz/streams/bf7685a6aa/objects/ae0baf903facf69dcd20672e2e86d974
  - http://speckle.xyz/streams/bf7685a6aa/objects/2bab3a834da573d903244a9902f78aa1 on http://speckle.xyz/streams/bf7685a6aa/objects/ae0baf903facf69dcd20672e2e86d974 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/2bab3a834da573d903244a9902f78aa1 on http://speckle.xyz/streams/bf7685a6aa/objects/ae0baf903facf69dcd20672e2e86d974 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/PlanckForce
  - http://qudt.org/vocab/unit/PlanckForce expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/PlanckForce expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/PayloadRatio
  - http://qudt.org/vocab/unit/PPT on http://qudt.org/vocab/quantitykind/PayloadRatio needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PPQ on http://qudt.org/vocab/quantitykind/PayloadRatio needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/PayloadRatio expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/Spin
  - http://qudt.org/vocab/quantitykind/Spin expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/OlfactoryThreshold
  - http://qudt.org/vocab/quantitykind/OlfactoryThreshold expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/PREDICTED-MASS
  - http://qudt.org/vocab/unit/MegaTONNE on http://qudt.org/vocab/quantitykind/PREDICTED-MASS needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MOMME_Pearl on http://qudt.org/vocab/quantitykind/PREDICTED-MASS needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PFUND on http://qudt.org/vocab/quantitykind/PREDICTED-MASS needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/TON on http://qudt.org/vocab/quantitykind/PREDICTED-MASS needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/PREDICTED-MASS expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/MOMME_Textile on http://qudt.org/vocab/quantitykind/PREDICTED-MASS needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MegaTON on http://qudt.org/vocab/quantitykind/PREDICTED-MASS needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/HeatFluxDensity
  - http://qudt.org/vocab/unit/BTU_TH-PER-FT2-HR on http://qudt.org/vocab/quantitykind/HeatFluxDensity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/BTU_IT-PER-IN2-SEC on http://qudt.org/vocab/quantitykind/HeatFluxDensity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CAL_TH-PER-CentiM2-MIN on http://qudt.org/vocab/quantitykind/HeatFluxDensity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CAL_TH-PER-CentiM2-SEC on http://qudt.org/vocab/quantitykind/HeatFluxDensity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/BTU_IT-PER-FT2-HR on http://qudt.org/vocab/quantitykind/HeatFluxDensity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/BTU_TH-PER-FT2-SEC on http://qudt.org/vocab/quantitykind/HeatFluxDensity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/NanoW-PER-M2 on http://qudt.org/vocab/quantitykind/HeatFluxDensity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/M-PA-PER-SEC on http://qudt.org/vocab/quantitykind/HeatFluxDensity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/BTU_TH-PER-FT2-MIN on http://qudt.org/vocab/quantitykind/HeatFluxDensity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/BTU_IT-PER-FT2-SEC on http://qudt.org/vocab/quantitykind/HeatFluxDensity needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/SpecificThrust
  - http://qudt.org/vocab/quantitykind/SpecificThrust expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/unit/KiloV-A_Reactive-HR
  - http://qudt.org/vocab/unit/KiloV-A_Reactive-HR expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/KiloV-A_Reactive-HR expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/Unknown
  - http://qudt.org/vocab/unit/PERCENT-SEC-PER-YD3 on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/FT3-PER-PSI on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/N-M-PER-W0dot5 on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/L-PER-MIN-K on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/LB-PER-PSI on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliL-PER-SEC-BAR on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/LB-SEC-PER-IN3-GAL_US on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/ONE on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloGM-PER-PA on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloMOL-PER-M3-K on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/FT-PER-SEC-DEG_F on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/SEC-PER-FT2 on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloOHM-PER-K on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/TONNE-PER-DAY-BAR on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CentiM3-PER-MIN-BAR on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CentiM3-PER-BAR on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/LB-MIN-PER-FT6 on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/TONNE-PER-MIN-BAR on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MOL-PER-M3-K on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PERCENT-SEC-PER-IN3 on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GM-HR-PER-L2 on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PERCENT-PER-DEGREE on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/LB-PER-FT-LB_F-SEC on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliA-PER-BAR on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliA-PER-LB_F-IN2 on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GM-SEC-PER-M3-L on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliGM-PER-DAY-K on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GM-PER-L-MilliPA-SEC on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliGM-MIN-PER-M3-CentiM3 on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/TON_Metric-PER-SEC-K on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/LB-HR-PER-FT3-GAL_UK on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/L-PER-DAY-K on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloGM-PER-SEC-BAR on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/ST-PER-K on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/LB-HR-PER-FT3-GAL_US on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/BARN-PER-SR-EV on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/LB-SEC-PER-FT3-GAL_UK on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GM-PER-DAY-K on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/OZ-MIN-PER-IN3-YD3 on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/TONNE-PER-HR-BAR on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CentiM-PER-SEC-BAR on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/DeciB-MilliW-PER-MegaHZ on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/OZ-MIN-PER-IN6 on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PERCENT-MIN-PER-YD3 on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/OZ-MIN-PER-IN3-GAL_US on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CentiPOISE-PER-K on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/DEG_C-PER-BAR on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PERCENT-PER-MilliPA-SEC on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliGM-HR-PER-M3-CentiM3 on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloGM-PER-DAY-K on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/M2-PER-HA-YR on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GM-MIN-PER-L-CentiM3 on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliGM-PER-L-CentiPOISE on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/M-SEC on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/OZ-SEC-PER-IN3-GAL_US on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PERCENT-MIN-PER-FT3 on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/LB-PER-HR-DEG_F on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GM-PER-CentiM3-K on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliK-PER-BAR on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PERCENT-MIN-PER-L on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloGM-PER-MIN-K on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/LB-SEC-PER-GAL_UK2 on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/LB-SEC-PER-GAL_US-FT3 on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PERCENT-PER-V on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/TON_SHORT-PER-HR-PSI on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/M-PER-BAR on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/TON_Metric-PER-SEC-BAR on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/TON_Metric-PER-HR-BAR on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MOL-PER-L-BAR on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/C-M2-PER-KiloGM on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliGM-HR-PER-M3-L on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PERCENT-PER-CentiPOISE on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GM-PER-SEC-K on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliGM-HR-PER-L2 on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliGM-HR-PER-L-M3 on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/OZ-HR-PER-IN3-GAL_UK on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PER-RAD on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/LB-HR-PER-GAL_US2 on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/LB-FT2-PER-GAL_US-LB_F-SEC on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GM-MIN-PER-M3-CentiM3 on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/LB-HR-PER-IN3-GAL_UK on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GM-PER-MilliL-K on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/DeciB-MilliW on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloGM-PER-SEC-K on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/FT-SEC-PER-GAL_US on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/Megahertz-KiloM on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PER-SEC-SR-M2 on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GM-SEC-PER-L-CentiM3 on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/M3-PER-PA on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/DEG_F-PER-BAR on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PERCENT-SEC-PER-FT3 on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/TON_Metric-PER-MIN-K on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PER-PERCENT on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliPA-SEC-PER-K on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/K-PER-BAR on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliGM-PER-SEC-BAR on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/L-PER-SEC-K on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/LB-HR-PER-GAL_UK-YD3 on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliOHM-PER-K on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/TONNE-PER-HR-K on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/A-HR-PER-DEG_C on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/LB-SEC-PER-GAL_US-YD3 on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliGM-PER-L-MilliPA-SEC on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/LB-HR-PER-IN3-GAL_US on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloM-PER-SEC-BAR on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/K-PER-PA on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/M-SEC2 on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GM-PER-M3-PA-SEC on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/LB-SEC-PER-FT3-IN3 on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/M-PER-PA on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GM-PER-M3-CentiPOISE on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/TON_Metric-PER-K on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/LB-HR-PER-GAL_UK2 on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GM-HR-PER-L-CentiM3 on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MicroGM-PER-M3-K on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/TONNE-PER-K on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/L-PER-HR-BAR on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/M3-PER-HR-K on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/M-PER-SEC-BAR on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliA-PER-L-MIN on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/LB-SEC-PER-IN3-YD3 on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MOL-PER-L-K on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/LB-HR-PER-FT3-IN3 on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/TON_Metric-PER-DAY-BAR on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/OZ-SEC-PER-IN3-GAL_UK on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GM-MIN-PER-L2 on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliGM-MIN-PER-L-CentiM3 on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PERCENT-SEC-PER-GAL_UK on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliOHM-PER-BAR on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliGM-MIN-PER-M6 on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloGM-PER-BAR on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/TON_SHORT-PER-PSI on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PERCENT-PER-DecaCount on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/M2-PER-SEC-PA on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/TONNE-PER-DAY-K on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/W-PER-SR-M2 on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/OZ-FT-HR-PER-IN3-LB on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliGM-PER-DAY-BAR on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliGM-SEC-PER-L-CentiM3 on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/M3-PER-SEC-PA on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/M-PER-SEC-K on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GM-PER-K on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GM-PER-M3-MilliPA-SEC on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/M3-PER-SEC-K on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliGM-PER-HR-BAR on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/M-PER-SEC-PA on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloOHM-PER-BAR on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/TONNE-PER-SEC-BAR on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/LB-MIN-PER-GAL_UK2 on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/LB-HR-PER-GAL_US-YD3 on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliGM-PER-MIN-K on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PERCENT-HR-PER-YD3 on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PERCENT-PER-OHM on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/OHM-PER-K on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/LB-HR-PER-GAL_US-FT3 on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliGM-SEC-PER-M6 on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PERCENT-PER-PA-SEC on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/OZ-HR-PER-IN6 on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MOL-PER-KiloGM-K on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MicroV-A_Reactive-PER-K on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliL-PER-DAY-K on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PERCENT-MIN-PER-GAL_US on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/FT-SEC-PER-IN3 on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/OZ-FT-SEC-PER-IN3-LB on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PERCENT-PER-PERCENT on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/LB-MIN-PER-FT3-GAL_UK on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GM-MIN-PER-M6 on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/LB-IN2-PER-GAL_US-LB_F-SEC on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliM-PER-BAR on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/LB-SEC-PER-GAL_US2 on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PERCENT-PER-KiloCount on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloGM-PER-L-K on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GM-HR-PER-L-M3 on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GM-HR-PER-M6 on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MOL-PER-M3-PA on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GM-PER-M3-K on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MOL-PER-M3-BAR on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/LB-MIN-PER-GAL_US-FT3 on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloGM-PER-HR-K on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GM-HR-PER-M3-CentiM3 on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PERCENT-SEC-PER-M3 on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/POISE-PER-K on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PERCENT-FT-HR-PER-LB on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/M3-PER-DAY-K on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PERCENT-PER-DEG on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GM-PER-BAR on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/TONNE-PER-BAR on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliV-A_Reactive-PER-K on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PERCENT-PER-10KiloCount on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/ST-PER-PA on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/L-PER-MIN-BAR on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliA-IN2-PER-LB_F on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/YD3-PER-PSI on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/LB-PER-SEC-DEG_F on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloGM-PER-M3-K on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/TON_SHORT-PER-DEG_F on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GM-PER-L-POISE on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/OZ-SEC-PER-IN3-FT3 on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/LB-IN2-PER-GAL_UK-LB_F-SEC on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/M2-PER-SEC-K on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/M3-PER-DAY-BAR on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliGM-SEC-PER-L-M3 on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/TON_Metric-PER-HR-K on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/LB-MIN-PER-GAL_UK-YD3 on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PERCENT-MIN-PER-M3 on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GM-PER-L-K on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliGM-PER-K on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PA-SEC-PER-K on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/TON_Metric-PER-BAR on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PERCENT-HR-PER-FT3 on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/A-SEC2 on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GM-SEC-PER-L2 on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/LB-MIN-PER-GAL_US-YD3 on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/M3-PER-HR-BAR on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloMOL-PER-M3-BAR on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PERCENT-HR-PER-CentiM3 on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/SPIN_QUANTUM_NUMBER on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PERCENT-PER-DecaKiloCount on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GM-MIN-PER-M3-L on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PERCENT-SEC-PER-CentiM3 on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliGM-PER-SEC-K on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliGM-MIN-PER-M3-L on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliGM-PER-M3-MilliPA-SEC on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/OZ-HR-PER-IN3-YD3 on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/BARN-PER-SR on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliGM-PER-M3-PA-SEC on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GM-PER-DAY-BAR on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/LB-SEC-PER-GAL_UK-FT3 on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliGM-MIN-PER-L2 on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/V-PER-V on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/LB-PER-DEG_F on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/FT-HR-PER-GAL_UK on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PERCENT-PER-HectoKiloCount on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/LB-IN2-PER-IN3-LB_F-SEC on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliGM-PER-M3-K on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliGM-PER-M3-CentiPOISE on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/LB-PER-FT3-DEG_F on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/LB-SEC-PER-GAL_UK-YD3 on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/OZ-SEC-PER-IN3-YD3 on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/LB-PER-IN3-DEG_F on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliL-PER-MIN-BAR on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/TONNE-PER-SEC-K on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloV-A_Reactive-PER-K on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PERCENT-FT-SEC-PER-LB on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloGM-PER-DeciM3-K on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliGM-PER-HR-K on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloGM-PER-DAY-BAR on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliV-PER-V on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/A-PER-PA on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/LB-HR-PER-FT3-YD3 on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/LB-MIN-PER-GAL_UK-FT3 on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/AWG on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/TONNE-PER-M3-K on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/LB-SEC-PER-FT6 on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PERCENT-SEC-PER-GAL_US on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/LB-MIN-PER-IN3-GAL_UK on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloGM-PER-CentiM3-K on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliL-PER-BAR on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/ST-PER-BAR on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PERCENT-MIN-PER-IN3 on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliL-PER-DAY-BAR on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/M3-PER-SEC-BAR on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/LB-MIN-PER-GAL_UK-IN3 on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/LB-MIN-PER-FT3-YD3 on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliGM-PER-L-PA-SEC on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/LB-MIN-PER-IN3-FT3 on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliGM-PER-MIN-BAR on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/LB-SEC-PER-FT3-YD3 on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CentiM-PER-SEC-K on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/LB-HR-PER-GAL_US-IN3 on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CentiM-PER-BAR on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/LB-SEC-PER-IN3-FT3 on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/LB-HR-PER-IN3-YD3 on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GM-SEC-PER-M6 on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/LB-FT2-PER-GAL_UK-LB_F-SEC on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/OZ-HR-PER-IN3-FT3 on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PERCENT-MIN-PER-GAL_UK on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliGM-SEC-PER-L2 on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/L-PER-DAY-BAR on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/FT-PER-SEC-PSI on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliGM-MIN-PER-L-M3 on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MegaOHM-PER-K on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GM-PER-HZ on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/A-PER-A-HR on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/LB-MIN-PER-IN3-YD3 on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PERCENT-HR-PER-M3 on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/LB-PER-MIN-DEG_F on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloGM-PER-HR-BAR on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/FT-HR-PER-IN3 on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliGM-PER-L-POISE on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/OZ-HR-PER-IN3-GAL_US on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliGM-SEC-PER-M3-CentiM3 on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/M3-PER-MIN-K on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloGM-PER-SEC-PA on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/LB-SEC-PER-IN3-GAL_UK on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/LB-SEC-PER-GAL_US-IN3 on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/YD-PER-PSI on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PERCENT-HR-PER-IN3 on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/A2-SEC on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GM-PER-MIN-BAR on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/LB-HR-PER-FT6 on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/OZ-SEC-PER-IN6 on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/TONNE-PER-MIN-K on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliL-PER-SEC-K on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/L-PER-BAR on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MegaOHM-PER-BAR on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GM-PER-HR-BAR on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PER-KiloGM-SEC on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/OZ-MIN-PER-IN3-GAL_UK on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/IN-PER-SEC-PSI on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GM-SEC-PER-M3-CentiM3 on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/LB-SEC-PER-FT3-GAL_US on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/L-PER-SEC-BAR on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GM-PER-L-CentiPOISE on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/LB-SEC-PER-IN6 on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PERCENT-HR-PER-GAL_US on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/W-HR-PER-L on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/BARN-PER-EV on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/OZ-MIN-PER-IN3-FT3 on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GM-HR-PER-M3-L on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GM-PER-M3-POISE on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GM-PER-DeciM3-K on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CentiM3-PER-SEC-K on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CentiM3-PER-HR-BAR on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GM-PER-MIN-K on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliL-PER-HR-K on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/FT-PER-PSI on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliGM-PER-M3-POISE on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/FT-HR-PER-GAL_US on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/M3-PER-BAR on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GM-SEC-PER-L-M3 on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/LB-MIN-PER-FT3-IN3 on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PERCENT-HR-PER-GAL_UK on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/M3-PER-MIN-BAR on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/OHM-PER-BAR on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/LB-HR-PER-IN6 on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CentiM3-PER-HR-K on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GM-PER-L-PA-SEC on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/LB-IN2-PER-FT3-LB_F-SEC on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/M2-PER-SEC-BAR on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/TON_SHORT-PER-HR-DEG_F on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloGM-PER-MIN-BAR on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/HR-PER-FT2 on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/IN-PER-PSI on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/LB-FT2-PER-IN3-LB_F-SEC on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/TON_Metric-PER-M3-K on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GM-PER-SEC-BAR on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/LB-MIN-PER-IN6 on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/SON on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/L-PER-HR-K on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/LB-SEC-PER-GAL_UK-IN3 on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/DeciB-W on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliL-PER-HR-BAR on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/V-PER-L-MIN on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GM-PER-HR-K on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PERCENT-PER-100KiloCount on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CentiM3-PER-DAY-BAR on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/LB-HR-PER-GAL_UK-FT3 on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GM-MIN-PER-L-M3 on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/LB-MIN-PER-IN3-GAL_US on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/LB-MIN-PER-FT3-GAL_US on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/OZ-FT2-PER-IN3-LB_F-SEC on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PERCENT-PER-POISE on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CentiM3-PER-MIN-K on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PicoA-PER-HectoPA on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/OZ-IN2-PER-IN3-LB_F-SEC on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/LB-MIN-PER-GAL_US2 on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/LB-MIN-PER-GAL_US-IN3 on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliGM-HR-PER-M6 on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/TON_Metric-PER-DAY-K on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CentiM3-PER-DAY-K on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliL-PER-MIN-K on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/IN-PER-SEC-DEG_F on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliGM-PER-BAR on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliGM-HR-PER-L-CentiM3 on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/V-A_Reactive-PER-K on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PERCENT-MIN-PER-CentiM3 on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/LB-HR-PER-GAL_UK-IN3 on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PERCENT-SEC-PER-L on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/LB-HR-PER-IN3-FT3 on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PERCENT-HR-PER-L on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloGM-PER-K on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/FT-SEC-PER-GAL_UK on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliGM-SEC-PER-M3-L on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/NP-PER-SEC on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CentiM3-PER-SEC-BAR on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/TON_Metric-PER-MIN-BAR on http://qudt.org/vocab/quantitykind/Unknown needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/dimensionvector/A-1E1L0I0M0H0T1D0
  - http://qudt.org/vocab/dimensionvector/A-1E1L0I0M0H0T1D0 expected at most 1 uses of path qudt:latexDefinition
http://speckle.xyz/streams/bf7685a6aa/objects/e9da84da11d478edd99928bd8b536830
  - http://speckle.xyz/streams/bf7685a6aa/objects/dfc0c3833a46266c71575787aff0f20d on http://speckle.xyz/streams/bf7685a6aa/objects/e9da84da11d478edd99928bd8b536830 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/dfc0c3833a46266c71575787aff0f20d on http://speckle.xyz/streams/bf7685a6aa/objects/e9da84da11d478edd99928bd8b536830 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/MegaHZ-PER-T
  - http://qudt.org/vocab/unit/MegaHZ-PER-T expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MegaHZ-PER-T expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/GM-PER-CentiM2-YR
  - http://qudt.org/vocab/unit/GM-PER-CentiM2-YR expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/GM-PER-CentiM2-YR expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/CoherenceLength
  - http://qudt.org/vocab/unit/CHAIN_US on http://qudt.org/vocab/quantitykind/CoherenceLength needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/ZOLL on http://qudt.org/vocab/quantitykind/CoherenceLength needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/CoherenceLength expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/GA_Charriere on http://qudt.org/vocab/quantitykind/CoherenceLength needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/f660c4d3b7afd3534760bc9da70e1cf7
  - http://speckle.xyz/streams/bf7685a6aa/objects/74116e0c46d445a4c9ac39c7f1b75206 on http://speckle.xyz/streams/bf7685a6aa/objects/f660c4d3b7afd3534760bc9da70e1cf7 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/74116e0c46d445a4c9ac39c7f1b75206 on http://speckle.xyz/streams/bf7685a6aa/objects/f660c4d3b7afd3534760bc9da70e1cf7 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/MaximumBeta-ParticleEnergy
  - http://qudt.org/vocab/unit/THERM_US on http://qudt.org/vocab/quantitykind/MaximumBeta-ParticleEnergy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PicoJ on http://qudt.org/vocab/quantitykind/MaximumBeta-ParticleEnergy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/MaximumBeta-ParticleEnergy expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/NanoJ on http://qudt.org/vocab/quantitykind/MaximumBeta-ParticleEnergy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/THERM_EC on http://qudt.org/vocab/quantitykind/MaximumBeta-ParticleEnergy needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/constant/Value_ProtonRmsChargeRadius
  - http://qudt.org/vocab/constant/Value_ProtonRmsChargeRadius expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/quantitykind/WebTimeAverageThrust
  - http://qudt.org/vocab/unit/KiloGM-M-PER-SEC2 on http://qudt.org/vocab/quantitykind/WebTimeAverageThrust needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/P on http://qudt.org/vocab/quantitykind/WebTimeAverageThrust needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/POND on http://qudt.org/vocab/quantitykind/WebTimeAverageThrust needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/ThermodynamicEnergy
  - http://qudt.org/vocab/unit/THERM_US on http://qudt.org/vocab/quantitykind/ThermodynamicEnergy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/THERM_EC on http://qudt.org/vocab/quantitykind/ThermodynamicEnergy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PicoJ on http://qudt.org/vocab/quantitykind/ThermodynamicEnergy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/NanoJ on http://qudt.org/vocab/quantitykind/ThermodynamicEnergy needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/d7c20501155359af271866d277ccb41f
  - http://speckle.xyz/streams/bf7685a6aa/objects/9a31f4bc3b0b7b0d9e646386a04f1dd7 on http://speckle.xyz/streams/bf7685a6aa/objects/d7c20501155359af271866d277ccb41f needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/9a31f4bc3b0b7b0d9e646386a04f1dd7 on http://speckle.xyz/streams/bf7685a6aa/objects/d7c20501155359af271866d277ccb41f needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/CrossSectionalArea
  - http://qudt.org/vocab/unit/MI_US2 on http://qudt.org/vocab/quantitykind/CrossSectionalArea needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloMIL_Circ on http://qudt.org/vocab/quantitykind/CrossSectionalArea needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloM2 on http://qudt.org/vocab/quantitykind/CrossSectionalArea needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/0fe9ee0c774054998e4b3af70273316d
  - http://speckle.xyz/streams/bf7685a6aa/objects/303a333ea3391daa29509be9eb9bb187 on http://speckle.xyz/streams/bf7685a6aa/objects/0fe9ee0c774054998e4b3af70273316d needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/303a333ea3391daa29509be9eb9bb187 on http://speckle.xyz/streams/bf7685a6aa/objects/0fe9ee0c774054998e4b3af70273316d needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/4eb3f6fca69724f2459c74283242ccef
  - http://speckle.xyz/streams/bf7685a6aa/objects/16c0ff093fe0cf359342709f754806e1 on http://speckle.xyz/streams/bf7685a6aa/objects/4eb3f6fca69724f2459c74283242ccef needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/16c0ff093fe0cf359342709f754806e1 on http://speckle.xyz/streams/bf7685a6aa/objects/4eb3f6fca69724f2459c74283242ccef needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/BBL_UK_PET-PER-DAY
  - http://qudt.org/vocab/unit/BBL_UK_PET-PER-DAY expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/BBL_UK_PET-PER-DAY expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/Time
  - http://qudt.org/vocab/unit/MegaSEC on http://qudt.org/vocab/quantitykind/Time needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/POISE-PER-PA on http://qudt.org/vocab/quantitykind/Time needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/AttoSEC on http://qudt.org/vocab/quantitykind/Time needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/FemtoSEC on http://qudt.org/vocab/quantitykind/Time needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/YR_Metrology on http://qudt.org/vocab/quantitykind/Time needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Time expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/DeciSEC on http://qudt.org/vocab/quantitykind/Time needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/ThermalConductivity
  - http://qudt.org/vocab/unit/KiloW-PER-M-DEG_C on http://qudt.org/vocab/quantitykind/ThermalConductivity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/ThermalConductivity expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/KiloW-PER-M-K on http://qudt.org/vocab/quantitykind/ThermalConductivity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/W-PER-M-DEG_C on http://qudt.org/vocab/quantitykind/ThermalConductivity needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/MassRatioOfWaterToDryMatter
  - http://qudt.org/vocab/quantitykind/MassRatioOfWaterToDryMatter expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/quantitykind/MassRatioOfWaterToDryMatter expected at most 1 uses of path qudt:plainTextDescription
http://qudt.org/vocab/quantitykind/TrafficIntensity
  - http://qudt.org/vocab/quantitykind/TrafficIntensity expected at most 1 uses of path qudt:plainTextDescription
http://speckle.xyz/streams/bf7685a6aa/objects/da717485ca6538ba4c89c231c795a327
  - http://speckle.xyz/streams/bf7685a6aa/objects/0d245daa39fba4d252d07553fdb4c419 on http://speckle.xyz/streams/bf7685a6aa/objects/da717485ca6538ba4c89c231c795a327 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/0d245daa39fba4d252d07553fdb4c419 on http://speckle.xyz/streams/bf7685a6aa/objects/da717485ca6538ba4c89c231c795a327 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/SoundPower
  - http://qudt.org/vocab/unit/NanoJ-PER-SEC on http://qudt.org/vocab/quantitykind/SoundPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloJ-PER-DAY on http://qudt.org/vocab/quantitykind/SoundPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GigaJ-PER-SEC on http://qudt.org/vocab/quantitykind/SoundPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/TeraW-HR-PER-YR on http://qudt.org/vocab/quantitykind/SoundPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloJ-PER-SEC on http://qudt.org/vocab/quantitykind/SoundPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MicroJ-PER-SEC on http://qudt.org/vocab/quantitykind/SoundPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PFERDESTAERKE on http://qudt.org/vocab/quantitykind/SoundPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/ExaW on http://qudt.org/vocab/quantitykind/SoundPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/ExaJ-PER-SEC on http://qudt.org/vocab/quantitykind/SoundPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/J-PER-MIN on http://qudt.org/vocab/quantitykind/SoundPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/TeraJ-PER-SEC on http://qudt.org/vocab/quantitykind/SoundPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PicoJ-PER-SEC on http://qudt.org/vocab/quantitykind/SoundPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloJ-PER-MIN on http://qudt.org/vocab/quantitykind/SoundPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PetaJ-PER-SEC on http://qudt.org/vocab/quantitykind/SoundPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PetaW on http://qudt.org/vocab/quantitykind/SoundPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/J-PER-DAY on http://qudt.org/vocab/quantitykind/SoundPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloJ-PER-HR on http://qudt.org/vocab/quantitykind/SoundPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliJ-PER-SEC on http://qudt.org/vocab/quantitykind/SoundPower needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/IonicStrength
  - http://qudt.org/vocab/quantitykind/IonicStrength expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/MOL_LB-PER-LB on http://qudt.org/vocab/quantitykind/IonicStrength needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/07cf64156991da24a85ea4f7462d4f9d
  - http://speckle.xyz/streams/bf7685a6aa/objects/2bab3a834da573d903244a9902f78aa1 on http://speckle.xyz/streams/bf7685a6aa/objects/07cf64156991da24a85ea4f7462d4f9d needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/2bab3a834da573d903244a9902f78aa1 on http://speckle.xyz/streams/bf7685a6aa/objects/07cf64156991da24a85ea4f7462d4f9d needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/AreaBitDensity
  - http://qudt.org/vocab/unit/TebiBIT-PER-M2 on http://qudt.org/vocab/quantitykind/AreaBitDensity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MebiBIT-PER-M2 on http://qudt.org/vocab/quantitykind/AreaBitDensity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/BIT-PER-M2 on http://qudt.org/vocab/quantitykind/AreaBitDensity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PebiBIT-PER-M2 on http://qudt.org/vocab/quantitykind/AreaBitDensity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GibiBIT-PER-M2 on http://qudt.org/vocab/quantitykind/AreaBitDensity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/ExbiBIT-PER-M2 on http://qudt.org/vocab/quantitykind/AreaBitDensity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KibiBIT-PER-M2 on http://qudt.org/vocab/quantitykind/AreaBitDensity needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/PressureGradient
  - http://qudt.org/vocab/unit/TORR-PER-M on http://qudt.org/vocab/quantitykind/PressureGradient needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PSI-PER-IN on http://qudt.org/vocab/quantitykind/PressureGradient needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/HectoPA-PER-M on http://qudt.org/vocab/quantitykind/PressureGradient needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/PressureGradient expected at most 1 uses of path qudt:plainTextDescription
  - http://qudt.org/vocab/unit/ATM_T-PER-M on http://qudt.org/vocab/quantitykind/PressureGradient needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloPA-PER-M on http://qudt.org/vocab/quantitykind/PressureGradient needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliPA-PER-M on http://qudt.org/vocab/quantitykind/PressureGradient needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/ATM-PER-M on http://qudt.org/vocab/quantitykind/PressureGradient needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/unit/FemtoGM-PER-KiloGM
  - http://qudt.org/vocab/unit/FemtoGM-PER-KiloGM expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/FemtoGM-PER-KiloGM expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T0D0
  - http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T0D0 expected at most 1 uses of path qudt:latexDefinition
http://qudt.org/vocab/dimensionvector/A0E0L-2I0M-1H0T2D0
  - http://qudt.org/vocab/dimensionvector/A0E0L-2I0M-1H0T2D0 expected at most 1 uses of path qudt:latexDefinition
http://speckle.xyz/streams/bf7685a6aa/objects/db62ed5ad542fabc0b28c379452feb6a
  - http://speckle.xyz/streams/bf7685a6aa/objects/decfcfb9b61288ea8bb8b586936e4e71 on http://speckle.xyz/streams/bf7685a6aa/objects/db62ed5ad542fabc0b28c379452feb6a needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/decfcfb9b61288ea8bb8b586936e4e71 on http://speckle.xyz/streams/bf7685a6aa/objects/db62ed5ad542fabc0b28c379452feb6a needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/KermaRate
  - http://qudt.org/vocab/unit/MicroSV-PER-SEC on http://qudt.org/vocab/quantitykind/KermaRate needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MicroGRAY-PER-SEC on http://qudt.org/vocab/quantitykind/KermaRate needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/NanoGRAY-PER-MIN on http://qudt.org/vocab/quantitykind/KermaRate needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MicroGRAY-PER-HR on http://qudt.org/vocab/quantitykind/KermaRate needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/NanoSV-PER-HR on http://qudt.org/vocab/quantitykind/KermaRate needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliSV-PER-MIN on http://qudt.org/vocab/quantitykind/KermaRate needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GRAY-PER-MIN on http://qudt.org/vocab/quantitykind/KermaRate needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/SV-PER-HR on http://qudt.org/vocab/quantitykind/KermaRate needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/REM-PER-SEC on http://qudt.org/vocab/quantitykind/KermaRate needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/NanoGRAY-PER-HR on http://qudt.org/vocab/quantitykind/KermaRate needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/SV-PER-MIN on http://qudt.org/vocab/quantitykind/KermaRate needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/SV-PER-SEC on http://qudt.org/vocab/quantitykind/KermaRate needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/KermaRate expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/MilliGRAY-PER-MIN on http://qudt.org/vocab/quantitykind/KermaRate needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/NanoGRAY-PER-SEC on http://qudt.org/vocab/quantitykind/KermaRate needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/NanoSV-PER-MIN on http://qudt.org/vocab/quantitykind/KermaRate needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliGRAY-PER-HR on http://qudt.org/vocab/quantitykind/KermaRate needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GRAY-PER-HR on http://qudt.org/vocab/quantitykind/KermaRate needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MicroSV-PER-MIN on http://qudt.org/vocab/quantitykind/KermaRate needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliSV-PER-SEC on http://qudt.org/vocab/quantitykind/KermaRate needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/NanoSV-PER-SEC on http://qudt.org/vocab/quantitykind/KermaRate needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MicroGRAY-PER-MIN on http://qudt.org/vocab/quantitykind/KermaRate needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliSV-PER-HR on http://qudt.org/vocab/quantitykind/KermaRate needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliGRAY-PER-SEC on http://qudt.org/vocab/quantitykind/KermaRate needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/Resistivity
  - http://qudt.org/vocab/unit/MilliOHM-M on http://qudt.org/vocab/quantitykind/Resistivity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/NanoOHM-M on http://qudt.org/vocab/quantitykind/Resistivity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloOHM-M on http://qudt.org/vocab/quantitykind/Resistivity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Resistivity expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/MicroOHM-M on http://qudt.org/vocab/quantitykind/Resistivity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MegaOHM-KiloM on http://qudt.org/vocab/quantitykind/Resistivity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GigaOHM-M on http://qudt.org/vocab/quantitykind/Resistivity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/OHM-CentiM on http://qudt.org/vocab/quantitykind/Resistivity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/OHM-KiloM on http://qudt.org/vocab/quantitykind/Resistivity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MegaOHM-M on http://qudt.org/vocab/quantitykind/Resistivity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/OHM_CIRC-MIL-PER-FT on http://qudt.org/vocab/quantitykind/Resistivity needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/AngularMomentum
  - http://qudt.org/vocab/quantitykind/AngularMomentum expected at most 1 uses of path qudt:plainTextDescription
  - http://qudt.org/vocab/quantitykind/AngularMomentum expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/fb131d2a0625dca28f22af1d0984b7e0
  - http://speckle.xyz/streams/bf7685a6aa/objects/5aa8dbce5ed730aeaaab18a2c23b2dae on http://speckle.xyz/streams/bf7685a6aa/objects/fb131d2a0625dca28f22af1d0984b7e0 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/5aa8dbce5ed730aeaaab18a2c23b2dae on http://speckle.xyz/streams/bf7685a6aa/objects/fb131d2a0625dca28f22af1d0984b7e0 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/CONTRACT-END-ITEM-SPECIFICATION-MASS
  - http://qudt.org/vocab/unit/MOMME_Textile on http://qudt.org/vocab/quantitykind/CONTRACT-END-ITEM-SPECIFICATION-MASS needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MegaTONNE on http://qudt.org/vocab/quantitykind/CONTRACT-END-ITEM-SPECIFICATION-MASS needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MOMME_Pearl on http://qudt.org/vocab/quantitykind/CONTRACT-END-ITEM-SPECIFICATION-MASS needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/CONTRACT-END-ITEM-SPECIFICATION-MASS expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/PFUND on http://qudt.org/vocab/quantitykind/CONTRACT-END-ITEM-SPECIFICATION-MASS needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/TON on http://qudt.org/vocab/quantitykind/CONTRACT-END-ITEM-SPECIFICATION-MASS needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MegaTON on http://qudt.org/vocab/quantitykind/CONTRACT-END-ITEM-SPECIFICATION-MASS needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/MassFractionOfDryMatter
  - http://qudt.org/vocab/quantitykind/MassFractionOfDryMatter expected at most 1 uses of path qudt:plainTextDescription
  - http://qudt.org/vocab/quantitykind/MassFractionOfDryMatter expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/VerticalVelocity
  - http://qudt.org/vocab/unit/YD-PER-SEC on http://qudt.org/vocab/quantitykind/VerticalVelocity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/YD-PER-HR on http://qudt.org/vocab/quantitykind/VerticalVelocity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/IN-PER-YR on http://qudt.org/vocab/quantitykind/VerticalVelocity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MicroM-PER-MIN on http://qudt.org/vocab/quantitykind/VerticalVelocity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/YD-PER-MIN on http://qudt.org/vocab/quantitykind/VerticalVelocity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MicroM-PER-SEC on http://qudt.org/vocab/quantitykind/VerticalVelocity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/VerticalVelocity expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/CarrierLifetime
  - http://qudt.org/vocab/unit/YR_Metrology on http://qudt.org/vocab/quantitykind/CarrierLifetime needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/AttoSEC on http://qudt.org/vocab/quantitykind/CarrierLifetime needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/POISE-PER-PA on http://qudt.org/vocab/quantitykind/CarrierLifetime needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/FemtoSEC on http://qudt.org/vocab/quantitykind/CarrierLifetime needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/DeciSEC on http://qudt.org/vocab/quantitykind/CarrierLifetime needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MegaSEC on http://qudt.org/vocab/quantitykind/CarrierLifetime needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/CarrierLifetime expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/unit/MilliL-PER-KiloGM
  - http://qudt.org/vocab/unit/MilliL-PER-KiloGM expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MilliL-PER-KiloGM expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/ThermalEnergy
  - http://qudt.org/vocab/unit/BTU_39DEG_F on http://qudt.org/vocab/quantitykind/ThermalEnergy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CAL_20DEG_C on http://qudt.org/vocab/quantitykind/ThermalEnergy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PicoJ on http://qudt.org/vocab/quantitykind/ThermalEnergy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/THERM_EC on http://qudt.org/vocab/quantitykind/ThermalEnergy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/BTU_60DEG_F on http://qudt.org/vocab/quantitykind/ThermalEnergy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/BTU_59DEG_F on http://qudt.org/vocab/quantitykind/ThermalEnergy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/ThermalEnergy expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/THERM_US on http://qudt.org/vocab/quantitykind/ThermalEnergy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/NanoJ on http://qudt.org/vocab/quantitykind/ThermalEnergy needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/4a3cbab1b7c7950185a8319920321826
  - http://speckle.xyz/streams/bf7685a6aa/objects/c8fb46fc939728e45252377481a55e6a on http://speckle.xyz/streams/bf7685a6aa/objects/4a3cbab1b7c7950185a8319920321826 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/c8fb46fc939728e45252377481a55e6a on http://speckle.xyz/streams/bf7685a6aa/objects/4a3cbab1b7c7950185a8319920321826 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/4272bae55e719381ba877e9775011cf6
  - http://speckle.xyz/streams/bf7685a6aa/objects/0152b9161ed0a0d6e3ae6919ab77ab11 on http://speckle.xyz/streams/bf7685a6aa/objects/4272bae55e719381ba877e9775011cf6 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/0152b9161ed0a0d6e3ae6919ab77ab11 on http://speckle.xyz/streams/bf7685a6aa/objects/4272bae55e719381ba877e9775011cf6 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/ce5bc6be6162e76a2db02023f49e7164
  - http://speckle.xyz/streams/bf7685a6aa/objects/e13dd4b578872dbd32e09626f5d25240 on http://speckle.xyz/streams/bf7685a6aa/objects/ce5bc6be6162e76a2db02023f49e7164 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e13dd4b578872dbd32e09626f5d25240 on http://speckle.xyz/streams/bf7685a6aa/objects/ce5bc6be6162e76a2db02023f49e7164 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/MilliL-PER-HR
  - http://qudt.org/vocab/unit/MilliL-PER-HR expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MilliL-PER-HR expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/dimensionvector/A0E0L-2I1M0H0T0D0
  - http://qudt.org/vocab/dimensionvector/A0E0L-2I1M0H0T0D0 expected at most 1 uses of path qudt:latexDefinition
http://qudt.org/vocab/quantitykind/ElectricFieldStrength
  - http://qudt.org/vocab/quantitykind/ElectricFieldStrength expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/unit/BARN
  - http://qudt.org/vocab/unit/BARN expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/BARN expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/RESERVE-MASS
  - http://qudt.org/vocab/quantitykind/RESERVE-MASS expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/MegaTONNE on http://qudt.org/vocab/quantitykind/RESERVE-MASS needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/TON on http://qudt.org/vocab/quantitykind/RESERVE-MASS needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MOMME_Pearl on http://qudt.org/vocab/quantitykind/RESERVE-MASS needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MegaTON on http://qudt.org/vocab/quantitykind/RESERVE-MASS needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PFUND on http://qudt.org/vocab/quantitykind/RESERVE-MASS needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MOMME_Textile on http://qudt.org/vocab/quantitykind/RESERVE-MASS needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/unit/GigaBIT-PER-SEC
  - http://qudt.org/vocab/unit/GigaBIT-PER-SEC expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/GigaBIT-PER-SEC expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H1T0D0
  - http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H1T0D0 expected at most 1 uses of path qudt:latexDefinition
http://qudt.org/vocab/constant/Value_KilogramAtomicMassUnitRelationship
  - http://qudt.org/vocab/constant/Value_KilogramAtomicMassUnitRelationship expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/quantitykind/LinearStiffness
  - http://qudt.org/vocab/unit/MegaN-M-PER-M2 on http://qudt.org/vocab/quantitykind/LinearStiffness needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/LB_F-PER-YD on http://qudt.org/vocab/quantitykind/LinearStiffness needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GigaN-M-PER-M2 on http://qudt.org/vocab/quantitykind/LinearStiffness needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PDL-PER-IN on http://qudt.org/vocab/quantitykind/LinearStiffness needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/LinearStiffness expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/CentiN-M-PER-M2 on http://qudt.org/vocab/quantitykind/LinearStiffness needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliN-M-PER-M2 on http://qudt.org/vocab/quantitykind/LinearStiffness needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/NanoN-M-PER-M2 on http://qudt.org/vocab/quantitykind/LinearStiffness needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MicroN-M-PER-M2 on http://qudt.org/vocab/quantitykind/LinearStiffness needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloN-PER-M on http://qudt.org/vocab/quantitykind/LinearStiffness needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloN-M-PER-M2 on http://qudt.org/vocab/quantitykind/LinearStiffness needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/RadiantExposure
  - http://qudt.org/vocab/unit/MilliN-M-PER-M2 on http://qudt.org/vocab/quantitykind/RadiantExposure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/NanoN-M-PER-M2 on http://qudt.org/vocab/quantitykind/RadiantExposure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliJ-PER-M2 on http://qudt.org/vocab/quantitykind/RadiantExposure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/RadiantExposure expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/ERG-PER-CentiM2 on http://qudt.org/vocab/quantitykind/RadiantExposure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GigaN-M-PER-M2 on http://qudt.org/vocab/quantitykind/RadiantExposure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MegaN-M-PER-M2 on http://qudt.org/vocab/quantitykind/RadiantExposure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloN-M-PER-M2 on http://qudt.org/vocab/quantitykind/RadiantExposure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MicroN-M-PER-M2 on http://qudt.org/vocab/quantitykind/RadiantExposure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/LANGLEY on http://qudt.org/vocab/quantitykind/RadiantExposure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CentiN-M-PER-M2 on http://qudt.org/vocab/quantitykind/RadiantExposure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/BTU_TH-PER-FT2 on http://qudt.org/vocab/quantitykind/RadiantExposure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CAL_TH-PER-CentiM2 on http://qudt.org/vocab/quantitykind/RadiantExposure needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/1ba16a4d2c4b0ab27c50f3a38c920ebd
  - http://speckle.xyz/streams/bf7685a6aa/objects/416e54a4b145034d01f2f05617c72569 on http://speckle.xyz/streams/bf7685a6aa/objects/1ba16a4d2c4b0ab27c50f3a38c920ebd needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/416e54a4b145034d01f2f05617c72569 on http://speckle.xyz/streams/bf7685a6aa/objects/1ba16a4d2c4b0ab27c50f3a38c920ebd needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/SpeedOfSound
  - http://qudt.org/vocab/unit/IN-PER-YR on http://qudt.org/vocab/quantitykind/SpeedOfSound needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/YD-PER-HR on http://qudt.org/vocab/quantitykind/SpeedOfSound needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MicroM-PER-SEC on http://qudt.org/vocab/quantitykind/SpeedOfSound needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/YD-PER-MIN on http://qudt.org/vocab/quantitykind/SpeedOfSound needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/YD-PER-SEC on http://qudt.org/vocab/quantitykind/SpeedOfSound needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/SpeedOfSound expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/MicroM-PER-MIN on http://qudt.org/vocab/quantitykind/SpeedOfSound needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/NormalStress
  - http://qudt.org/vocab/unit/CentiM_H20_4DEG_C on http://qudt.org/vocab/quantitykind/NormalStress needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/IN_HG_60DEG_F on http://qudt.org/vocab/quantitykind/NormalStress needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CentiM_HG_0DEG_C on http://qudt.org/vocab/quantitykind/NormalStress needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CentiM_H2O_4DEG_C on http://qudt.org/vocab/quantitykind/NormalStress needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/IN_H2O_39dot2DEG_F on http://qudt.org/vocab/quantitykind/NormalStress needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/NormalStress expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/FT_H2O_39dot2DEG_F on http://qudt.org/vocab/quantitykind/NormalStress needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/M_H2O on http://qudt.org/vocab/quantitykind/NormalStress needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/IN_HG_32DEG_F on http://qudt.org/vocab/quantitykind/NormalStress needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/IN_H2O_60DEG_F on http://qudt.org/vocab/quantitykind/NormalStress needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PDL-PER-IN2 on http://qudt.org/vocab/quantitykind/NormalStress needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloN-PER-M2 on http://qudt.org/vocab/quantitykind/NormalStress needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/Lethargy
  - http://qudt.org/vocab/quantitykind/Lethargy expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/FirstMomentOfArea
  - http://qudt.org/vocab/unit/MI_UK3 on http://qudt.org/vocab/quantitykind/FirstMomentOfArea needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloCubicFT on http://qudt.org/vocab/quantitykind/FirstMomentOfArea needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/AC-FT_US on http://qudt.org/vocab/quantitykind/FirstMomentOfArea needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/FirstMomentOfArea expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/TON_SHIPPING_UK on http://qudt.org/vocab/quantitykind/FirstMomentOfArea needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/NT on http://qudt.org/vocab/quantitykind/FirstMomentOfArea needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/TON_Register on http://qudt.org/vocab/quantitykind/FirstMomentOfArea needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/11dd1c128767b4bcc563f5aead6f686b
  - http://speckle.xyz/streams/bf7685a6aa/objects/c1e7bac9cc9cff56ce6fff37c81afd27 on http://speckle.xyz/streams/bf7685a6aa/objects/11dd1c128767b4bcc563f5aead6f686b needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/c1e7bac9cc9cff56ce6fff37c81afd27 on http://speckle.xyz/streams/bf7685a6aa/objects/11dd1c128767b4bcc563f5aead6f686b needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/SpecificHeatCapacity
  - http://qudt.org/vocab/quantitykind/SpecificHeatCapacity expected at most 1 uses of path qudt:plainTextDescription
  - http://qudt.org/vocab/quantitykind/SpecificHeatCapacity expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/M2-PER-SEC2-K on http://qudt.org/vocab/quantitykind/SpecificHeatCapacity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/J-PER-GM-DEG_C on http://qudt.org/vocab/quantitykind/SpecificHeatCapacity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/J-PER-KiloGM-DEG_C on http://qudt.org/vocab/quantitykind/SpecificHeatCapacity needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/321a24d597c0dec04aa7e8738123a829
  - http://speckle.xyz/streams/bf7685a6aa/objects/f81349f450082607823b374cbf6090c1 on http://speckle.xyz/streams/bf7685a6aa/objects/321a24d597c0dec04aa7e8738123a829 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/f81349f450082607823b374cbf6090c1 on http://speckle.xyz/streams/bf7685a6aa/objects/321a24d597c0dec04aa7e8738123a829 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/CostPerUnitEnergy
  - http://qudt.org/vocab/unit/EUR-PER-W-SEC on http://qudt.org/vocab/quantitykind/CostPerUnitEnergy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/EUR-PER-W-HR on http://qudt.org/vocab/quantitykind/CostPerUnitEnergy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/EUR-PER-KiloW-HR on http://qudt.org/vocab/quantitykind/CostPerUnitEnergy needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/TouchThresholds
  - http://qudt.org/vocab/quantitykind/TouchThresholds expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/constant/Value_BohrMagneton
  - http://qudt.org/vocab/constant/Value_BohrMagneton expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/unit/PlanckDensity
  - http://qudt.org/vocab/unit/PlanckDensity expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/SuperconductorEnergyGap
  - http://qudt.org/vocab/unit/THERM_EC on http://qudt.org/vocab/quantitykind/SuperconductorEnergyGap needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/NanoJ on http://qudt.org/vocab/quantitykind/SuperconductorEnergyGap needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/THERM_US on http://qudt.org/vocab/quantitykind/SuperconductorEnergyGap needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/SuperconductorEnergyGap expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/PicoJ on http://qudt.org/vocab/quantitykind/SuperconductorEnergyGap needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/constant/Value_HertzJouleRelationship
  - http://qudt.org/vocab/constant/Value_HertzJouleRelationship expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/constant/Value_BohrMagnetonInEVPerT
  - http://qudt.org/vocab/constant/Value_BohrMagnetonInEVPerT expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/quantitykind/AmountOfSubstance
  - http://qudt.org/vocab/unit/MOL_LB on http://qudt.org/vocab/quantitykind/AmountOfSubstance needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/SCM on http://qudt.org/vocab/quantitykind/AmountOfSubstance needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/SCF on http://qudt.org/vocab/quantitykind/AmountOfSubstance needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/AmountOfSubstance expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/Equivalent_Mass
  - http://qudt.org/vocab/unit/PFUND on http://qudt.org/vocab/quantitykind/Equivalent_Mass needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MegaTON on http://qudt.org/vocab/quantitykind/Equivalent_Mass needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/TON on http://qudt.org/vocab/quantitykind/Equivalent_Mass needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MOMME_Pearl on http://qudt.org/vocab/quantitykind/Equivalent_Mass needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MegaTONNE on http://qudt.org/vocab/quantitykind/Equivalent_Mass needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MOMME_Textile on http://qudt.org/vocab/quantitykind/Equivalent_Mass needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/unit/NanoW
  - http://qudt.org/vocab/unit/NanoW expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/NanoW expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/constant/Value_AtomicUnitOfElectricPotential
  - http://qudt.org/vocab/constant/Value_AtomicUnitOfElectricPotential expected at most 1 uses of path qudt:standardUncertainty
http://speckle.xyz/streams/bf7685a6aa/objects/65bb1836a2a6d3f478dece207a1fadd2
  - http://speckle.xyz/streams/bf7685a6aa/objects/c1f8ba2020eb6468b1d37e4445924aa6 on http://speckle.xyz/streams/bf7685a6aa/objects/65bb1836a2a6d3f478dece207a1fadd2 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/c1f8ba2020eb6468b1d37e4445924aa6 on http://speckle.xyz/streams/bf7685a6aa/objects/65bb1836a2a6d3f478dece207a1fadd2 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/FahrenheitTemperature
  - http://qudt.org/vocab/quantitykind/FahrenheitTemperature expected at most 1 uses of path qudt:plainTextDescription
http://qudt.org/vocab/quantitykind/Mass
  - http://qudt.org/vocab/quantitykind/Mass expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/MegaTON on http://qudt.org/vocab/quantitykind/Mass needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MegaTONNE on http://qudt.org/vocab/quantitykind/Mass needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PFUND on http://qudt.org/vocab/quantitykind/Mass needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MOMME_Pearl on http://qudt.org/vocab/quantitykind/Mass needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MOMME_Textile on http://qudt.org/vocab/quantitykind/Mass needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/TON on http://qudt.org/vocab/quantitykind/Mass needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/RadiusOfCurvature
  - http://qudt.org/vocab/unit/GA_Charriere on http://qudt.org/vocab/quantitykind/RadiusOfCurvature needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CHAIN_US on http://qudt.org/vocab/quantitykind/RadiusOfCurvature needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/ZOLL on http://qudt.org/vocab/quantitykind/RadiusOfCurvature needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/RadiusOfCurvature expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/constant/Value_NaturalUnitOfMomentum
  - http://qudt.org/vocab/constant/Value_NaturalUnitOfMomentum expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/quantitykind/SurfaceDensity
  - http://qudt.org/vocab/unit/MicroGM-PER-IN2 on http://qudt.org/vocab/quantitykind/SurfaceDensity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/LB-PER-YD2 on http://qudt.org/vocab/quantitykind/SurfaceDensity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/OZ-PER-IN2 on http://qudt.org/vocab/quantitykind/SurfaceDensity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GM-PER-MilliM2 on http://qudt.org/vocab/quantitykind/SurfaceDensity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/SurfaceDensity expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/unit/PlanckLength
  - http://qudt.org/vocab/unit/PlanckLength expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/PlanckLength expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/constant/Value_NeutronProtonMassRatio
  - http://qudt.org/vocab/constant/Value_NeutronProtonMassRatio expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/quantitykind/ApparentPower
  - http://qudt.org/vocab/unit/TeraV-A on http://qudt.org/vocab/quantitykind/ApparentPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/NanoV-A on http://qudt.org/vocab/quantitykind/ApparentPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MicroV-A on http://qudt.org/vocab/quantitykind/ApparentPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GigaV-A on http://qudt.org/vocab/quantitykind/ApparentPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PicoV-A on http://qudt.org/vocab/quantitykind/ApparentPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliV-A on http://qudt.org/vocab/quantitykind/ApparentPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/ExaV-A on http://qudt.org/vocab/quantitykind/ApparentPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PetaV-A on http://qudt.org/vocab/quantitykind/ApparentPower needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/Thickness
  - http://qudt.org/vocab/unit/CHAIN_US on http://qudt.org/vocab/quantitykind/Thickness needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/ZOLL on http://qudt.org/vocab/quantitykind/Thickness needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Thickness expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/GA_Charriere on http://qudt.org/vocab/quantitykind/Thickness needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/unit/ATM
  - http://qudt.org/vocab/unit/ATM expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/ATM expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/2aab2c215ca050f6ddaeaa85466bdadf
  - http://speckle.xyz/streams/bf7685a6aa/objects/e9670962d6933d8e0a96caf59912d990 on http://speckle.xyz/streams/bf7685a6aa/objects/2aab2c215ca050f6ddaeaa85466bdadf needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e9670962d6933d8e0a96caf59912d990 on http://speckle.xyz/streams/bf7685a6aa/objects/2aab2c215ca050f6ddaeaa85466bdadf needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/Heat
  - http://qudt.org/vocab/unit/CAL_20DEG_C on http://qudt.org/vocab/quantitykind/Heat needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/BTU_60DEG_F on http://qudt.org/vocab/quantitykind/Heat needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/THERM_EC on http://qudt.org/vocab/quantitykind/Heat needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Heat expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/BTU_39DEG_F on http://qudt.org/vocab/quantitykind/Heat needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/NanoJ on http://qudt.org/vocab/quantitykind/Heat needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/BTU_59DEG_F on http://qudt.org/vocab/quantitykind/Heat needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PicoJ on http://qudt.org/vocab/quantitykind/Heat needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/THERM_US on http://qudt.org/vocab/quantitykind/Heat needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/ColdReceptorThreshold
  - http://qudt.org/vocab/quantitykind/ColdReceptorThreshold expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/Adaptation
  - http://qudt.org/vocab/unit/FemtoSEC on http://qudt.org/vocab/quantitykind/Adaptation needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/DeciSEC on http://qudt.org/vocab/quantitykind/Adaptation needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/AttoSEC on http://qudt.org/vocab/quantitykind/Adaptation needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/YR_Metrology on http://qudt.org/vocab/quantitykind/Adaptation needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Adaptation expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/POISE-PER-PA on http://qudt.org/vocab/quantitykind/Adaptation needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MegaSEC on http://qudt.org/vocab/quantitykind/Adaptation needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/constant/Value_TauMassInAtomicMassUnit
  - http://qudt.org/vocab/constant/Value_TauMassInAtomicMassUnit expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/quantitykind/FundamentalReciprocalLatticeVector
  - http://qudt.org/vocab/quantitykind/FundamentalReciprocalLatticeVector expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/PartialPressure
  - http://qudt.org/vocab/unit/IN_H2O_39dot2DEG_F on http://qudt.org/vocab/quantitykind/PartialPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/FT_H2O_39dot2DEG_F on http://qudt.org/vocab/quantitykind/PartialPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CentiM_H20_4DEG_C on http://qudt.org/vocab/quantitykind/PartialPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/IN_H2O_60DEG_F on http://qudt.org/vocab/quantitykind/PartialPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloN-PER-M2 on http://qudt.org/vocab/quantitykind/PartialPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/IN_HG_32DEG_F on http://qudt.org/vocab/quantitykind/PartialPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CentiM_H2O_4DEG_C on http://qudt.org/vocab/quantitykind/PartialPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CentiM_HG_0DEG_C on http://qudt.org/vocab/quantitykind/PartialPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/IN_HG_60DEG_F on http://qudt.org/vocab/quantitykind/PartialPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/M_H2O on http://qudt.org/vocab/quantitykind/PartialPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PDL-PER-IN2 on http://qudt.org/vocab/quantitykind/PartialPressure needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/LinearDensity
  - http://qudt.org/vocab/quantitykind/LinearDensity expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/aef5c81a26707e9acddc322ae3de2122
  - http://speckle.xyz/streams/bf7685a6aa/objects/b1704240e49d5b4aa831d684c64ab3e7 on http://speckle.xyz/streams/bf7685a6aa/objects/aef5c81a26707e9acddc322ae3de2122 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/b1704240e49d5b4aa831d684c64ab3e7 on http://speckle.xyz/streams/bf7685a6aa/objects/aef5c81a26707e9acddc322ae3de2122 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/ac2360d13eb96e16e692c9191d7d32f8
  - http://speckle.xyz/streams/bf7685a6aa/objects/ce3f60d6e3b49ebc1f1e6990046a5617 on http://speckle.xyz/streams/bf7685a6aa/objects/ac2360d13eb96e16e692c9191d7d32f8 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/ce3f60d6e3b49ebc1f1e6990046a5617 on http://speckle.xyz/streams/bf7685a6aa/objects/ac2360d13eb96e16e692c9191d7d32f8 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/LinearForce
  - http://qudt.org/vocab/unit/GigaN-M-PER-M2 on http://qudt.org/vocab/quantitykind/LinearForce needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/LinearForce expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/PDL-PER-IN on http://qudt.org/vocab/quantitykind/LinearForce needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MegaN-M-PER-M2 on http://qudt.org/vocab/quantitykind/LinearForce needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/NanoN-M-PER-M2 on http://qudt.org/vocab/quantitykind/LinearForce needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliN-M-PER-M2 on http://qudt.org/vocab/quantitykind/LinearForce needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CentiN-M-PER-M2 on http://qudt.org/vocab/quantitykind/LinearForce needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloN-M-PER-M2 on http://qudt.org/vocab/quantitykind/LinearForce needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloN-PER-M on http://qudt.org/vocab/quantitykind/LinearForce needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/LB_F-PER-YD on http://qudt.org/vocab/quantitykind/LinearForce needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MicroN-M-PER-M2 on http://qudt.org/vocab/quantitykind/LinearForce needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/MagnetomotiveForce
  - http://qudt.org/vocab/unit/FemtoA on http://qudt.org/vocab/quantitykind/MagnetomotiveForce needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/AttoA on http://qudt.org/vocab/quantitykind/MagnetomotiveForce needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PetaA on http://qudt.org/vocab/quantitykind/MagnetomotiveForce needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/TeraA on http://qudt.org/vocab/quantitykind/MagnetomotiveForce needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GigaA on http://qudt.org/vocab/quantitykind/MagnetomotiveForce needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/unit/CAL_IT-PER-GM
  - http://qudt.org/vocab/unit/CAL_IT-PER-GM expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/unit/ERG-PER-SEC
  - http://qudt.org/vocab/unit/ERG-PER-SEC expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/ERG-PER-SEC expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/RotationalStiffness
  - http://qudt.org/vocab/unit/N-M-PER-MIN_Angle on http://qudt.org/vocab/quantitykind/RotationalStiffness needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/RotationalStiffness expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/N-M-PER-DEG on http://qudt.org/vocab/quantitykind/RotationalStiffness needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/N-M-PER-ARCMIN on http://qudt.org/vocab/quantitykind/RotationalStiffness needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/9c9eea5d73cad3545dc4ffd418c6f1f1
  - http://speckle.xyz/streams/bf7685a6aa/objects/e5eb69c71be84f5da9e07df2de08c8eb on http://speckle.xyz/streams/bf7685a6aa/objects/9c9eea5d73cad3545dc4ffd418c6f1f1 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e5eb69c71be84f5da9e07df2de08c8eb on http://speckle.xyz/streams/bf7685a6aa/objects/9c9eea5d73cad3545dc4ffd418c6f1f1 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/ShearStrain
  - http://qudt.org/vocab/unit/PPQ on http://qudt.org/vocab/quantitykind/ShearStrain needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/ShearStrain expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/PPT on http://qudt.org/vocab/quantitykind/ShearStrain needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/61f42049c6a7877062af73e583a72059
  - http://speckle.xyz/streams/bf7685a6aa/objects/b1704240e49d5b4aa831d684c64ab3e7 on http://speckle.xyz/streams/bf7685a6aa/objects/61f42049c6a7877062af73e583a72059 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/b1704240e49d5b4aa831d684c64ab3e7 on http://speckle.xyz/streams/bf7685a6aa/objects/61f42049c6a7877062af73e583a72059 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/Displacement
  - http://qudt.org/vocab/quantitykind/Displacement expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/GA_Charriere on http://qudt.org/vocab/quantitykind/Displacement needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/ZOLL on http://qudt.org/vocab/quantitykind/Displacement needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CHAIN_US on http://qudt.org/vocab/quantitykind/Displacement needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/ElectromotiveForce
  - http://qudt.org/vocab/unit/NanoV on http://qudt.org/vocab/quantitykind/ElectromotiveForce needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GigaV on http://qudt.org/vocab/quantitykind/ElectromotiveForce needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/ElectromotiveForce expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/TeraV on http://qudt.org/vocab/quantitykind/ElectromotiveForce needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/FemtoV on http://qudt.org/vocab/quantitykind/ElectromotiveForce needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PicoV on http://qudt.org/vocab/quantitykind/ElectromotiveForce needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/35797ba06b73351ea771b51dbfee6699
  - http://speckle.xyz/streams/bf7685a6aa/objects/5aa8dbce5ed730aeaaab18a2c23b2dae on http://speckle.xyz/streams/bf7685a6aa/objects/35797ba06b73351ea771b51dbfee6699 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/5aa8dbce5ed730aeaaab18a2c23b2dae on http://speckle.xyz/streams/bf7685a6aa/objects/35797ba06b73351ea771b51dbfee6699 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/dimensionvector/A0E1L0I0M0H0T0D0
  - http://qudt.org/vocab/dimensionvector/A0E1L0I0M0H0T0D0 expected at most 1 uses of path qudt:latexDefinition
http://qudt.org/vocab/unit/MilliL-PER-M3
  - http://qudt.org/vocab/unit/MilliL-PER-M3 expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MilliL-PER-M3 expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/TimeRelatedLogarithmicRatio
  - http://qudt.org/vocab/quantitykind/TimeRelatedLogarithmicRatio expected at most 1 uses of path qudt:plainTextDescription
http://qudt.org/vocab/quantitykind/MechanicalTension
  - http://qudt.org/vocab/quantitykind/MechanicalTension expected at most 1 uses of path qudt:plainTextDescription
  - http://qudt.org/vocab/unit/IN_HG_32DEG_F on http://qudt.org/vocab/quantitykind/MechanicalTension needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CentiM_H2O_4DEG_C on http://qudt.org/vocab/quantitykind/MechanicalTension needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/IN_HG_60DEG_F on http://qudt.org/vocab/quantitykind/MechanicalTension needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloN-PER-M2 on http://qudt.org/vocab/quantitykind/MechanicalTension needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/IN_H2O_60DEG_F on http://qudt.org/vocab/quantitykind/MechanicalTension needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/IN_H2O_39dot2DEG_F on http://qudt.org/vocab/quantitykind/MechanicalTension needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CentiM_HG_0DEG_C on http://qudt.org/vocab/quantitykind/MechanicalTension needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/M_H2O on http://qudt.org/vocab/quantitykind/MechanicalTension needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PDL-PER-IN2 on http://qudt.org/vocab/quantitykind/MechanicalTension needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/FT_H2O_39dot2DEG_F on http://qudt.org/vocab/quantitykind/MechanicalTension needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/4b2b2092a91a6eb0637ebc65297c81b6
  - http://speckle.xyz/streams/bf7685a6aa/objects/a08393e06078ad931cc1683da8363cb4 on http://speckle.xyz/streams/bf7685a6aa/objects/4b2b2092a91a6eb0637ebc65297c81b6 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/a08393e06078ad931cc1683da8363cb4 on http://speckle.xyz/streams/bf7685a6aa/objects/4b2b2092a91a6eb0637ebc65297c81b6 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/constant/Value_ElectronGyromagneticRatio
  - http://qudt.org/vocab/constant/Value_ElectronGyromagneticRatio expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/unit/CentiM
  - http://qudt.org/vocab/unit/CentiM expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/AccelerationOfGravity
  - http://qudt.org/vocab/quantitykind/AccelerationOfGravity expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/MilliM-PER-SEC2 on http://qudt.org/vocab/quantitykind/AccelerationOfGravity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MI_US-PER-SEC2 on http://qudt.org/vocab/quantitykind/AccelerationOfGravity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloM-PER-SEC2 on http://qudt.org/vocab/quantitykind/AccelerationOfGravity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/YD-PER-SEC2 on http://qudt.org/vocab/quantitykind/AccelerationOfGravity needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/unit/PetaJ
  - http://qudt.org/vocab/unit/PetaJ expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/PetaJ expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/13639ba14de82d229cfa1e28a88199c9
  - http://speckle.xyz/streams/bf7685a6aa/objects/61392c60c3f0f6583028d86c3528cd5c on http://speckle.xyz/streams/bf7685a6aa/objects/13639ba14de82d229cfa1e28a88199c9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/61392c60c3f0f6583028d86c3528cd5c on http://speckle.xyz/streams/bf7685a6aa/objects/13639ba14de82d229cfa1e28a88199c9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/dimensionvector/A0E0L-1I0M0H-1T-2D0
  - http://qudt.org/vocab/dimensionvector/A0E0L-1I0M0H-1T-2D0 expected at most 1 uses of path qudt:latexDefinition
http://speckle.xyz/streams/bf7685a6aa/objects/478cfd5cc4e2af47eac992eaa89a8e44
  - http://speckle.xyz/streams/bf7685a6aa/objects/39585c6ef6b03b8dbb18fb8a3bed20a3 on http://speckle.xyz/streams/bf7685a6aa/objects/478cfd5cc4e2af47eac992eaa89a8e44 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/39585c6ef6b03b8dbb18fb8a3bed20a3 on http://speckle.xyz/streams/bf7685a6aa/objects/478cfd5cc4e2af47eac992eaa89a8e44 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/KiloGM-PER-CentiM3
  - http://qudt.org/vocab/unit/KiloGM-PER-CentiM3 expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/KiloGM-PER-CentiM3 expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/63663a14d227dbc8d89ec2f04d8e69c2
  - http://speckle.xyz/streams/bf7685a6aa/objects/f031db8cf74c1d34f7ec9caaa44e707f on http://speckle.xyz/streams/bf7685a6aa/objects/63663a14d227dbc8d89ec2f04d8e69c2 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/f031db8cf74c1d34f7ec9caaa44e707f on http://speckle.xyz/streams/bf7685a6aa/objects/63663a14d227dbc8d89ec2f04d8e69c2 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/ElectromagneticWavePhaseSpeed
  - http://qudt.org/vocab/quantitykind/ElectromagneticWavePhaseSpeed expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/IN-PER-YR on http://qudt.org/vocab/quantitykind/ElectromagneticWavePhaseSpeed needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MicroM-PER-MIN on http://qudt.org/vocab/quantitykind/ElectromagneticWavePhaseSpeed needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/YD-PER-MIN on http://qudt.org/vocab/quantitykind/ElectromagneticWavePhaseSpeed needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/YD-PER-HR on http://qudt.org/vocab/quantitykind/ElectromagneticWavePhaseSpeed needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/YD-PER-SEC on http://qudt.org/vocab/quantitykind/ElectromagneticWavePhaseSpeed needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MicroM-PER-SEC on http://qudt.org/vocab/quantitykind/ElectromagneticWavePhaseSpeed needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H-1T-3D0
  - http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H-1T-3D0 expected at most 1 uses of path qudt:latexDefinition
http://speckle.xyz/streams/bf7685a6aa/objects/1cbd14bea9df9ccc57b8ff479075083e
  - http://speckle.xyz/streams/bf7685a6aa/objects/3efdbbd7d157786885a7c74d641c8fae on http://speckle.xyz/streams/bf7685a6aa/objects/1cbd14bea9df9ccc57b8ff479075083e needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/3efdbbd7d157786885a7c74d641c8fae on http://speckle.xyz/streams/bf7685a6aa/objects/1cbd14bea9df9ccc57b8ff479075083e needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/SpecificHelmholtzEnergy
  - http://qudt.org/vocab/unit/W-HR-PER-KiloGM on http://qudt.org/vocab/quantitykind/SpecificHelmholtzEnergy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/SpecificHelmholtzEnergy expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/AtomicCharge
  - http://qudt.org/vocab/quantitykind/AtomicCharge expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/MilliA-SEC on http://qudt.org/vocab/quantitykind/AtomicCharge needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloJ-PER-KiloV on http://qudt.org/vocab/quantitykind/AtomicCharge needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/VaporPressure
  - http://qudt.org/vocab/unit/PDL-PER-IN2 on http://qudt.org/vocab/quantitykind/VaporPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/IN_HG_32DEG_F on http://qudt.org/vocab/quantitykind/VaporPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/IN_H2O_39dot2DEG_F on http://qudt.org/vocab/quantitykind/VaporPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/IN_H2O_60DEG_F on http://qudt.org/vocab/quantitykind/VaporPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/FT_H2O_39dot2DEG_F on http://qudt.org/vocab/quantitykind/VaporPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/M_H2O on http://qudt.org/vocab/quantitykind/VaporPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/IN_HG_60DEG_F on http://qudt.org/vocab/quantitykind/VaporPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CentiM_H2O_4DEG_C on http://qudt.org/vocab/quantitykind/VaporPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CentiM_HG_0DEG_C on http://qudt.org/vocab/quantitykind/VaporPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CentiM_H20_4DEG_C on http://qudt.org/vocab/quantitykind/VaporPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/VaporPressure expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/CurrentLinkage
  - http://qudt.org/vocab/unit/PetaA on http://qudt.org/vocab/quantitykind/CurrentLinkage needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/CurrentLinkage expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/AttoA on http://qudt.org/vocab/quantitykind/CurrentLinkage needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/FemtoA on http://qudt.org/vocab/quantitykind/CurrentLinkage needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GigaA on http://qudt.org/vocab/quantitykind/CurrentLinkage needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/TeraA on http://qudt.org/vocab/quantitykind/CurrentLinkage needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/TrueExhaustVelocity
  - http://qudt.org/vocab/unit/YD-PER-SEC on http://qudt.org/vocab/quantitykind/TrueExhaustVelocity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/IN-PER-YR on http://qudt.org/vocab/quantitykind/TrueExhaustVelocity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MicroM-PER-MIN on http://qudt.org/vocab/quantitykind/TrueExhaustVelocity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/YD-PER-HR on http://qudt.org/vocab/quantitykind/TrueExhaustVelocity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/YD-PER-MIN on http://qudt.org/vocab/quantitykind/TrueExhaustVelocity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MicroM-PER-SEC on http://qudt.org/vocab/quantitykind/TrueExhaustVelocity needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/986551a00158b37db7462c903481a712
  - http://speckle.xyz/streams/bf7685a6aa/objects/17592c23e3930128143ddd679cd6a0d0 on http://speckle.xyz/streams/bf7685a6aa/objects/986551a00158b37db7462c903481a712 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/17592c23e3930128143ddd679cd6a0d0 on http://speckle.xyz/streams/bf7685a6aa/objects/986551a00158b37db7462c903481a712 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/bb6b5255c7198ac96f8efccd9b1f4626
  - http://speckle.xyz/streams/bf7685a6aa/objects/03183bd47ce710193f9d15449df4add8 on http://speckle.xyz/streams/bf7685a6aa/objects/bb6b5255c7198ac96f8efccd9b1f4626 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/03183bd47ce710193f9d15449df4add8 on http://speckle.xyz/streams/bf7685a6aa/objects/bb6b5255c7198ac96f8efccd9b1f4626 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/dimensionvector/A0E0L4I0M1H0T-3D-1
  - http://qudt.org/vocab/dimensionvector/A0E0L4I0M1H0T-3D-1 expected at most 1 uses of path qudt:latexDefinition
http://qudt.org/vocab/unit/NUM-PER-KiloM2
  - http://qudt.org/vocab/unit/NUM-PER-KiloM2 expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/NUM-PER-KiloM2 expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/94cb310af5b15f989aa5f07f2f391c8b
  - http://speckle.xyz/streams/bf7685a6aa/objects/c1e7bac9cc9cff56ce6fff37c81afd27 on http://speckle.xyz/streams/bf7685a6aa/objects/94cb310af5b15f989aa5f07f2f391c8b needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/c1e7bac9cc9cff56ce6fff37c81afd27 on http://speckle.xyz/streams/bf7685a6aa/objects/94cb310af5b15f989aa5f07f2f391c8b needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/ApogeeRadius
  - http://qudt.org/vocab/unit/ZOLL on http://qudt.org/vocab/quantitykind/ApogeeRadius needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CHAIN_US on http://qudt.org/vocab/quantitykind/ApogeeRadius needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GA_Charriere on http://qudt.org/vocab/quantitykind/ApogeeRadius needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/ApogeeRadius expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/ClosestApproachRadius
  - http://qudt.org/vocab/unit/CHAIN_US on http://qudt.org/vocab/quantitykind/ClosestApproachRadius needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/ZOLL on http://qudt.org/vocab/quantitykind/ClosestApproachRadius needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GA_Charriere on http://qudt.org/vocab/quantitykind/ClosestApproachRadius needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/unit/CentiM-PER-HR
  - http://qudt.org/vocab/unit/CentiM-PER-HR expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/CentiM-PER-HR expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/constant/Value_KilogramInverseMeterRelationship
  - http://qudt.org/vocab/constant/Value_KilogramInverseMeterRelationship expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/quantitykind/CostPerUnitPower
  - http://qudt.org/vocab/unit/EUR-PER-KiloW on http://qudt.org/vocab/quantitykind/CostPerUnitPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/EUR-PER-W on http://qudt.org/vocab/quantitykind/CostPerUnitPower needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/54ca9893a59cc85dc5d5f93240b370cc
  - http://speckle.xyz/streams/bf7685a6aa/objects/0d245daa39fba4d252d07553fdb4c419 on http://speckle.xyz/streams/bf7685a6aa/objects/54ca9893a59cc85dc5d5f93240b370cc needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/0d245daa39fba4d252d07553fdb4c419 on http://speckle.xyz/streams/bf7685a6aa/objects/54ca9893a59cc85dc5d5f93240b370cc needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/MegaW-HR
  - http://qudt.org/vocab/unit/MegaW-HR expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MegaW-HR expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/NozzleThroatPressure
  - http://qudt.org/vocab/unit/IN_HG_60DEG_F on http://qudt.org/vocab/quantitykind/NozzleThroatPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CentiM_H2O_4DEG_C on http://qudt.org/vocab/quantitykind/NozzleThroatPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/FT_H2O_39dot2DEG_F on http://qudt.org/vocab/quantitykind/NozzleThroatPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PDL-PER-IN2 on http://qudt.org/vocab/quantitykind/NozzleThroatPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CentiM_H20_4DEG_C on http://qudt.org/vocab/quantitykind/NozzleThroatPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/M_H2O on http://qudt.org/vocab/quantitykind/NozzleThroatPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/IN_HG_32DEG_F on http://qudt.org/vocab/quantitykind/NozzleThroatPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/IN_H2O_39dot2DEG_F on http://qudt.org/vocab/quantitykind/NozzleThroatPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/IN_H2O_60DEG_F on http://qudt.org/vocab/quantitykind/NozzleThroatPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloN-PER-M2 on http://qudt.org/vocab/quantitykind/NozzleThroatPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CentiM_HG_0DEG_C on http://qudt.org/vocab/quantitykind/NozzleThroatPressure needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/dimensionvector/A0E0L-2I1M-1H0T3D0
  - http://qudt.org/vocab/dimensionvector/A0E0L-2I1M-1H0T3D0 expected at most 1 uses of path qudt:latexDefinition
http://qudt.org/vocab/quantitykind/RelativeMassDefect
  - http://qudt.org/vocab/unit/PPQ on http://qudt.org/vocab/quantitykind/RelativeMassDefect needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/RelativeMassDefect expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/PPT on http://qudt.org/vocab/quantitykind/RelativeMassDefect needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/MigrationArea
  - http://qudt.org/vocab/unit/KiloMIL_Circ on http://qudt.org/vocab/quantitykind/MigrationArea needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloM2 on http://qudt.org/vocab/quantitykind/MigrationArea needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MI_US2 on http://qudt.org/vocab/quantitykind/MigrationArea needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/MigrationArea expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/StaticPressure
  - http://qudt.org/vocab/unit/FT_H2O_39dot2DEG_F on http://qudt.org/vocab/quantitykind/StaticPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CentiM_H2O_4DEG_C on http://qudt.org/vocab/quantitykind/StaticPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PDL-PER-IN2 on http://qudt.org/vocab/quantitykind/StaticPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/IN_H2O_39dot2DEG_F on http://qudt.org/vocab/quantitykind/StaticPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/IN_H2O_60DEG_F on http://qudt.org/vocab/quantitykind/StaticPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/M_H2O on http://qudt.org/vocab/quantitykind/StaticPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/IN_HG_32DEG_F on http://qudt.org/vocab/quantitykind/StaticPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloN-PER-M2 on http://qudt.org/vocab/quantitykind/StaticPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CentiM_H20_4DEG_C on http://qudt.org/vocab/quantitykind/StaticPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CentiM_HG_0DEG_C on http://qudt.org/vocab/quantitykind/StaticPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/IN_HG_60DEG_F on http://qudt.org/vocab/quantitykind/StaticPressure needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/constant/JosephsonConstant
  - http://qudt.org/vocab/constant/JosephsonConstant expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/constant/JosephsonConstant expected at most 1 uses of path qudt:plainTextDescription
http://qudt.org/vocab/quantitykind/DensityOfStates
  - http://qudt.org/vocab/quantitykind/DensityOfStates expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/WebTimeAveragePressure
  - http://qudt.org/vocab/unit/KiloN-PER-M2 on http://qudt.org/vocab/quantitykind/WebTimeAveragePressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/IN_H2O_60DEG_F on http://qudt.org/vocab/quantitykind/WebTimeAveragePressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/M_H2O on http://qudt.org/vocab/quantitykind/WebTimeAveragePressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CentiM_H20_4DEG_C on http://qudt.org/vocab/quantitykind/WebTimeAveragePressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/IN_HG_32DEG_F on http://qudt.org/vocab/quantitykind/WebTimeAveragePressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CentiM_H2O_4DEG_C on http://qudt.org/vocab/quantitykind/WebTimeAveragePressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PDL-PER-IN2 on http://qudt.org/vocab/quantitykind/WebTimeAveragePressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/IN_HG_60DEG_F on http://qudt.org/vocab/quantitykind/WebTimeAveragePressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/FT_H2O_39dot2DEG_F on http://qudt.org/vocab/quantitykind/WebTimeAveragePressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CentiM_HG_0DEG_C on http://qudt.org/vocab/quantitykind/WebTimeAveragePressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/IN_H2O_39dot2DEG_F on http://qudt.org/vocab/quantitykind/WebTimeAveragePressure needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/9e129a8ccfb7715303b5b5b24ac3a17d
  - http://speckle.xyz/streams/bf7685a6aa/objects/2574b16b5e9d5e0bea710d1ca119a45a on http://speckle.xyz/streams/bf7685a6aa/objects/9e129a8ccfb7715303b5b5b24ac3a17d needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/2574b16b5e9d5e0bea710d1ca119a45a on http://speckle.xyz/streams/bf7685a6aa/objects/9e129a8ccfb7715303b5b5b24ac3a17d needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/MegaW
  - http://qudt.org/vocab/unit/MegaW expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MegaW expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/21d00992e7188cce84419f2e5e829a67
  - http://speckle.xyz/streams/bf7685a6aa/objects/8e754b8c808cf1a1e48137195659f8c8 on http://speckle.xyz/streams/bf7685a6aa/objects/21d00992e7188cce84419f2e5e829a67 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/8e754b8c808cf1a1e48137195659f8c8 on http://speckle.xyz/streams/bf7685a6aa/objects/21d00992e7188cce84419f2e5e829a67 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/CenterOfGravity_X
  - http://qudt.org/vocab/unit/GA_Charriere on http://qudt.org/vocab/quantitykind/CenterOfGravity_X needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CHAIN_US on http://qudt.org/vocab/quantitykind/CenterOfGravity_X needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/ZOLL on http://qudt.org/vocab/quantitykind/CenterOfGravity_X needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/SpecificActivity
  - http://qudt.org/vocab/unit/KiloBQ-PER-KiloGM on http://qudt.org/vocab/quantitykind/SpecificActivity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CI-PER-KiloGM on http://qudt.org/vocab/quantitykind/SpecificActivity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/SpecificActivity expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/MegaBQ-PER-KiloGM on http://qudt.org/vocab/quantitykind/SpecificActivity needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/MaximumExpectedOperatingPressure
  - http://qudt.org/vocab/unit/IN_HG_32DEG_F on http://qudt.org/vocab/quantitykind/MaximumExpectedOperatingPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/M_H2O on http://qudt.org/vocab/quantitykind/MaximumExpectedOperatingPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PDL-PER-IN2 on http://qudt.org/vocab/quantitykind/MaximumExpectedOperatingPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CentiM_H2O_4DEG_C on http://qudt.org/vocab/quantitykind/MaximumExpectedOperatingPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/IN_HG_60DEG_F on http://qudt.org/vocab/quantitykind/MaximumExpectedOperatingPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CentiM_HG_0DEG_C on http://qudt.org/vocab/quantitykind/MaximumExpectedOperatingPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CentiM_H20_4DEG_C on http://qudt.org/vocab/quantitykind/MaximumExpectedOperatingPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloN-PER-M2 on http://qudt.org/vocab/quantitykind/MaximumExpectedOperatingPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/IN_H2O_60DEG_F on http://qudt.org/vocab/quantitykind/MaximumExpectedOperatingPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/IN_H2O_39dot2DEG_F on http://qudt.org/vocab/quantitykind/MaximumExpectedOperatingPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/FT_H2O_39dot2DEG_F on http://qudt.org/vocab/quantitykind/MaximumExpectedOperatingPressure needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/FermiEnergy
  - http://qudt.org/vocab/unit/NanoJ on http://qudt.org/vocab/quantitykind/FermiEnergy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/THERM_US on http://qudt.org/vocab/quantitykind/FermiEnergy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/FermiEnergy expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/PicoJ on http://qudt.org/vocab/quantitykind/FermiEnergy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/THERM_EC on http://qudt.org/vocab/quantitykind/FermiEnergy needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/SoundPressureLevel
  - http://qudt.org/vocab/unit/DeciB_Z on http://qudt.org/vocab/quantitykind/SoundPressureLevel needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/DeciB_ISO on http://qudt.org/vocab/quantitykind/SoundPressureLevel needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PHON on http://qudt.org/vocab/quantitykind/SoundPressureLevel needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/DeciB_A on http://qudt.org/vocab/quantitykind/SoundPressureLevel needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/SoundIntensity
  - http://qudt.org/vocab/unit/BTU_TH-PER-FT2-SEC on http://qudt.org/vocab/quantitykind/SoundIntensity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CAL_TH-PER-CentiM2-SEC on http://qudt.org/vocab/quantitykind/SoundIntensity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/BTU_TH-PER-FT2-MIN on http://qudt.org/vocab/quantitykind/SoundIntensity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CAL_TH-PER-CentiM2-MIN on http://qudt.org/vocab/quantitykind/SoundIntensity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/BTU_IT-PER-FT2-SEC on http://qudt.org/vocab/quantitykind/SoundIntensity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/BTU_IT-PER-FT2-HR on http://qudt.org/vocab/quantitykind/SoundIntensity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/M-PA-PER-SEC on http://qudt.org/vocab/quantitykind/SoundIntensity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/BTU_TH-PER-FT2-HR on http://qudt.org/vocab/quantitykind/SoundIntensity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/BTU_IT-PER-IN2-SEC on http://qudt.org/vocab/quantitykind/SoundIntensity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/SoundIntensity expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/NanoW-PER-M2 on http://qudt.org/vocab/quantitykind/SoundIntensity needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/ShearStress
  - http://qudt.org/vocab/unit/IN_H2O_60DEG_F on http://qudt.org/vocab/quantitykind/ShearStress needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloN-PER-M2 on http://qudt.org/vocab/quantitykind/ShearStress needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/IN_HG_32DEG_F on http://qudt.org/vocab/quantitykind/ShearStress needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/IN_HG_60DEG_F on http://qudt.org/vocab/quantitykind/ShearStress needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CentiM_H2O_4DEG_C on http://qudt.org/vocab/quantitykind/ShearStress needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/M_H2O on http://qudt.org/vocab/quantitykind/ShearStress needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PDL-PER-IN2 on http://qudt.org/vocab/quantitykind/ShearStress needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CentiM_H20_4DEG_C on http://qudt.org/vocab/quantitykind/ShearStress needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/FT_H2O_39dot2DEG_F on http://qudt.org/vocab/quantitykind/ShearStress needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CentiM_HG_0DEG_C on http://qudt.org/vocab/quantitykind/ShearStress needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/IN_H2O_39dot2DEG_F on http://qudt.org/vocab/quantitykind/ShearStress needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/ShearStress expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/MassicHeatCapacity
  - http://qudt.org/vocab/quantitykind/MassicHeatCapacity expected at most 1 uses of path qudt:plainTextDescription
  - http://qudt.org/vocab/unit/KiloCAL_IT-PER-GM-K on http://qudt.org/vocab/quantitykind/MassicHeatCapacity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/BTU_TH-PER-LB-DEG_R on http://qudt.org/vocab/quantitykind/MassicHeatCapacity needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/LinearBitDensity
  - http://qudt.org/vocab/unit/KibiBIT-PER-M on http://qudt.org/vocab/quantitykind/LinearBitDensity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/ExbiBIT-PER-M on http://qudt.org/vocab/quantitykind/LinearBitDensity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PebiBIT-PER-M on http://qudt.org/vocab/quantitykind/LinearBitDensity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/TebiBIT-PER-M on http://qudt.org/vocab/quantitykind/LinearBitDensity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GibiBIT-PER-M on http://qudt.org/vocab/quantitykind/LinearBitDensity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/ExaBIT-PER-M on http://qudt.org/vocab/quantitykind/LinearBitDensity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MebiBIT-PER-M on http://qudt.org/vocab/quantitykind/LinearBitDensity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/BIT-PER-M on http://qudt.org/vocab/quantitykind/LinearBitDensity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GigaBIT-PER-M on http://qudt.org/vocab/quantitykind/LinearBitDensity needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/MassicPower
  - http://qudt.org/vocab/unit/MicroSV-PER-MIN on http://qudt.org/vocab/quantitykind/MassicPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/NanoSV-PER-HR on http://qudt.org/vocab/quantitykind/MassicPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/NanoGRAY-PER-MIN on http://qudt.org/vocab/quantitykind/MassicPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliGRAY-PER-HR on http://qudt.org/vocab/quantitykind/MassicPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliSV-PER-SEC on http://qudt.org/vocab/quantitykind/MassicPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/SV-PER-MIN on http://qudt.org/vocab/quantitykind/MassicPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/MassicPower expected at most 1 uses of path qudt:plainTextDescription
  - http://qudt.org/vocab/unit/MilliGRAY-PER-SEC on http://qudt.org/vocab/quantitykind/MassicPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GRAY-PER-MIN on http://qudt.org/vocab/quantitykind/MassicPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MicroGRAY-PER-HR on http://qudt.org/vocab/quantitykind/MassicPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliGRAY-PER-MIN on http://qudt.org/vocab/quantitykind/MassicPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/NanoGRAY-PER-HR on http://qudt.org/vocab/quantitykind/MassicPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MicroGRAY-PER-SEC on http://qudt.org/vocab/quantitykind/MassicPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MicroSV-PER-SEC on http://qudt.org/vocab/quantitykind/MassicPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliSV-PER-MIN on http://qudt.org/vocab/quantitykind/MassicPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/REM-PER-SEC on http://qudt.org/vocab/quantitykind/MassicPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/NanoSV-PER-MIN on http://qudt.org/vocab/quantitykind/MassicPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/SV-PER-SEC on http://qudt.org/vocab/quantitykind/MassicPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MicroGRAY-PER-MIN on http://qudt.org/vocab/quantitykind/MassicPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GRAY-PER-HR on http://qudt.org/vocab/quantitykind/MassicPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliSV-PER-HR on http://qudt.org/vocab/quantitykind/MassicPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/NanoSV-PER-SEC on http://qudt.org/vocab/quantitykind/MassicPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/NanoGRAY-PER-SEC on http://qudt.org/vocab/quantitykind/MassicPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/SV-PER-HR on http://qudt.org/vocab/quantitykind/MassicPower needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/BurnTime
  - http://qudt.org/vocab/unit/YR_Metrology on http://qudt.org/vocab/quantitykind/BurnTime needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/POISE-PER-PA on http://qudt.org/vocab/quantitykind/BurnTime needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/DeciSEC on http://qudt.org/vocab/quantitykind/BurnTime needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/AttoSEC on http://qudt.org/vocab/quantitykind/BurnTime needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/FemtoSEC on http://qudt.org/vocab/quantitykind/BurnTime needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MegaSEC on http://qudt.org/vocab/quantitykind/BurnTime needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/AbsorbedDoseRate
  - http://qudt.org/vocab/unit/NanoSV-PER-SEC on http://qudt.org/vocab/quantitykind/AbsorbedDoseRate needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/NanoGRAY-PER-SEC on http://qudt.org/vocab/quantitykind/AbsorbedDoseRate needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/SV-PER-HR on http://qudt.org/vocab/quantitykind/AbsorbedDoseRate needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MicroSV-PER-MIN on http://qudt.org/vocab/quantitykind/AbsorbedDoseRate needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/AbsorbedDoseRate expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/MilliGRAY-PER-SEC on http://qudt.org/vocab/quantitykind/AbsorbedDoseRate needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliGRAY-PER-MIN on http://qudt.org/vocab/quantitykind/AbsorbedDoseRate needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/SV-PER-SEC on http://qudt.org/vocab/quantitykind/AbsorbedDoseRate needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliSV-PER-MIN on http://qudt.org/vocab/quantitykind/AbsorbedDoseRate needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/NanoSV-PER-HR on http://qudt.org/vocab/quantitykind/AbsorbedDoseRate needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliSV-PER-HR on http://qudt.org/vocab/quantitykind/AbsorbedDoseRate needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/NanoSV-PER-MIN on http://qudt.org/vocab/quantitykind/AbsorbedDoseRate needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MicroSV-PER-SEC on http://qudt.org/vocab/quantitykind/AbsorbedDoseRate needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/REM-PER-SEC on http://qudt.org/vocab/quantitykind/AbsorbedDoseRate needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MicroGRAY-PER-HR on http://qudt.org/vocab/quantitykind/AbsorbedDoseRate needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/NanoGRAY-PER-MIN on http://qudt.org/vocab/quantitykind/AbsorbedDoseRate needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliGRAY-PER-HR on http://qudt.org/vocab/quantitykind/AbsorbedDoseRate needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/SV-PER-MIN on http://qudt.org/vocab/quantitykind/AbsorbedDoseRate needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/NanoGRAY-PER-HR on http://qudt.org/vocab/quantitykind/AbsorbedDoseRate needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MicroGRAY-PER-SEC on http://qudt.org/vocab/quantitykind/AbsorbedDoseRate needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MicroGRAY-PER-MIN on http://qudt.org/vocab/quantitykind/AbsorbedDoseRate needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliSV-PER-SEC on http://qudt.org/vocab/quantitykind/AbsorbedDoseRate needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GRAY-PER-MIN on http://qudt.org/vocab/quantitykind/AbsorbedDoseRate needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GRAY-PER-HR on http://qudt.org/vocab/quantitykind/AbsorbedDoseRate needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/b32244da846b3dd8df2965b29667afc1
  - http://speckle.xyz/streams/bf7685a6aa/objects/570de36b94b8ce5c1670646dcd7526e1 on http://speckle.xyz/streams/bf7685a6aa/objects/b32244da846b3dd8df2965b29667afc1 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/570de36b94b8ce5c1670646dcd7526e1 on http://speckle.xyz/streams/bf7685a6aa/objects/b32244da846b3dd8df2965b29667afc1 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/AmbientPressure
  - http://qudt.org/vocab/unit/CentiM_H2O_4DEG_C on http://qudt.org/vocab/quantitykind/AmbientPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/IN_H2O_60DEG_F on http://qudt.org/vocab/quantitykind/AmbientPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PDL-PER-IN2 on http://qudt.org/vocab/quantitykind/AmbientPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/M_H2O on http://qudt.org/vocab/quantitykind/AmbientPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/IN_H2O_39dot2DEG_F on http://qudt.org/vocab/quantitykind/AmbientPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/IN_HG_60DEG_F on http://qudt.org/vocab/quantitykind/AmbientPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloN-PER-M2 on http://qudt.org/vocab/quantitykind/AmbientPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CentiM_H20_4DEG_C on http://qudt.org/vocab/quantitykind/AmbientPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/FT_H2O_39dot2DEG_F on http://qudt.org/vocab/quantitykind/AmbientPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/IN_HG_32DEG_F on http://qudt.org/vocab/quantitykind/AmbientPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CentiM_HG_0DEG_C on http://qudt.org/vocab/quantitykind/AmbientPressure needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/93902b45ecda28d69a100bff250b66b4
  - http://speckle.xyz/streams/bf7685a6aa/objects/288eb5e729bd3a5f915b25b9695e2397 on http://speckle.xyz/streams/bf7685a6aa/objects/93902b45ecda28d69a100bff250b66b4 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/288eb5e729bd3a5f915b25b9695e2397 on http://speckle.xyz/streams/bf7685a6aa/objects/93902b45ecda28d69a100bff250b66b4 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/MagneticDipoleMomentOfAMolecule
  - http://qudt.org/vocab/quantitykind/MagneticDipoleMomentOfAMolecule expected at most 1 uses of path qudt:plainTextDescription
http://speckle.xyz/streams/bf7685a6aa/objects/ac4dfed4759f7496931aa8391b63f5c9
  - http://speckle.xyz/streams/bf7685a6aa/objects/acb6542f18bd3dc78a9dcd9b4ad32d71 on http://speckle.xyz/streams/bf7685a6aa/objects/ac4dfed4759f7496931aa8391b63f5c9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/acb6542f18bd3dc78a9dcd9b4ad32d71 on http://speckle.xyz/streams/bf7685a6aa/objects/ac4dfed4759f7496931aa8391b63f5c9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/MicroN-M
  - http://qudt.org/vocab/unit/MicroN-M expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MicroN-M expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/Reflectance
  - http://qudt.org/vocab/quantitykind/Reflectance expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/MASS-GROWTH-ALLOWANCE
  - http://qudt.org/vocab/quantitykind/MASS-GROWTH-ALLOWANCE expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/MegaTONNE on http://qudt.org/vocab/quantitykind/MASS-GROWTH-ALLOWANCE needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MOMME_Textile on http://qudt.org/vocab/quantitykind/MASS-GROWTH-ALLOWANCE needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MOMME_Pearl on http://qudt.org/vocab/quantitykind/MASS-GROWTH-ALLOWANCE needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MegaTON on http://qudt.org/vocab/quantitykind/MASS-GROWTH-ALLOWANCE needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PFUND on http://qudt.org/vocab/quantitykind/MASS-GROWTH-ALLOWANCE needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/TON on http://qudt.org/vocab/quantitykind/MASS-GROWTH-ALLOWANCE needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/a67fedfada3cfae1f6ba7628fc73358f
  - http://speckle.xyz/streams/bf7685a6aa/objects/0d8c716bf524666d44c38328fe3f5865 on http://speckle.xyz/streams/bf7685a6aa/objects/a67fedfada3cfae1f6ba7628fc73358f needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/0d8c716bf524666d44c38328fe3f5865 on http://speckle.xyz/streams/bf7685a6aa/objects/a67fedfada3cfae1f6ba7628fc73358f needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/88071ddcaf2bd6185f7051ac0adffd0d
  - http://speckle.xyz/streams/bf7685a6aa/objects/e13dd4b578872dbd32e09626f5d25240 on http://speckle.xyz/streams/bf7685a6aa/objects/88071ddcaf2bd6185f7051ac0adffd0d needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e13dd4b578872dbd32e09626f5d25240 on http://speckle.xyz/streams/bf7685a6aa/objects/88071ddcaf2bd6185f7051ac0adffd0d needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/constant/Value_DeuteronMassEnergyEquivalentInMeV
  - http://qudt.org/vocab/constant/Value_DeuteronMassEnergyEquivalentInMeV expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/quantitykind/Fluidity
  - http://qudt.org/vocab/quantitykind/Fluidity expected at most 1 uses of path qudt:plainTextDescription
  - http://qudt.org/vocab/unit/PERCENT-IN2-PER-LB_F-SEC on http://qudt.org/vocab/quantitykind/Fluidity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/RHE on http://qudt.org/vocab/quantitykind/Fluidity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PERCENT-FT2-PER-LB_F-SEC on http://qudt.org/vocab/quantitykind/Fluidity needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/unit/GM-PER-MIN
  - http://qudt.org/vocab/unit/GM-PER-MIN expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/GM-PER-MIN expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/InfiniteMultiplicationFactor
  - http://qudt.org/vocab/quantitykind/InfiniteMultiplicationFactor expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/FinalOrCurrentVehicleMass
  - http://qudt.org/vocab/unit/TON on http://qudt.org/vocab/quantitykind/FinalOrCurrentVehicleMass needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MOMME_Pearl on http://qudt.org/vocab/quantitykind/FinalOrCurrentVehicleMass needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MegaTON on http://qudt.org/vocab/quantitykind/FinalOrCurrentVehicleMass needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PFUND on http://qudt.org/vocab/quantitykind/FinalOrCurrentVehicleMass needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MegaTONNE on http://qudt.org/vocab/quantitykind/FinalOrCurrentVehicleMass needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MOMME_Textile on http://qudt.org/vocab/quantitykind/FinalOrCurrentVehicleMass needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/e321fb4460aa2ebb3f445caff1a2c664
  - http://speckle.xyz/streams/bf7685a6aa/objects/f3ec1e36a99896dc93fec2e9644475bf on http://speckle.xyz/streams/bf7685a6aa/objects/e321fb4460aa2ebb3f445caff1a2c664 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/f3ec1e36a99896dc93fec2e9644475bf on http://speckle.xyz/streams/bf7685a6aa/objects/e321fb4460aa2ebb3f445caff1a2c664 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/GI_US-PER-DAY
  - http://qudt.org/vocab/unit/GI_US-PER-DAY expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/GI_US-PER-DAY expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/PlanarForce
  - http://qudt.org/vocab/unit/CentiM_HG_0DEG_C on http://qudt.org/vocab/quantitykind/PlanarForce needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/IN_HG_60DEG_F on http://qudt.org/vocab/quantitykind/PlanarForce needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/IN_HG_32DEG_F on http://qudt.org/vocab/quantitykind/PlanarForce needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/IN_H2O_60DEG_F on http://qudt.org/vocab/quantitykind/PlanarForce needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PDL-PER-IN2 on http://qudt.org/vocab/quantitykind/PlanarForce needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/FT_H2O_39dot2DEG_F on http://qudt.org/vocab/quantitykind/PlanarForce needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CentiM_H2O_4DEG_C on http://qudt.org/vocab/quantitykind/PlanarForce needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/PlanarForce expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/KiloN-PER-M2 on http://qudt.org/vocab/quantitykind/PlanarForce needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/M_H2O on http://qudt.org/vocab/quantitykind/PlanarForce needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CentiM_H20_4DEG_C on http://qudt.org/vocab/quantitykind/PlanarForce needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/IN_H2O_39dot2DEG_F on http://qudt.org/vocab/quantitykind/PlanarForce needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/cc4076fce240feeea93e0e773a39fdf3
  - http://speckle.xyz/streams/bf7685a6aa/objects/03183bd47ce710193f9d15449df4add8 on http://speckle.xyz/streams/bf7685a6aa/objects/cc4076fce240feeea93e0e773a39fdf3 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/03183bd47ce710193f9d15449df4add8 on http://speckle.xyz/streams/bf7685a6aa/objects/cc4076fce240feeea93e0e773a39fdf3 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/dimensionvector/A0E1L-1I0M-1H0T2D0
  - http://qudt.org/vocab/dimensionvector/A0E1L-1I0M-1H0T2D0 expected at most 1 uses of path qudt:latexDefinition
http://qudt.org/vocab/unit/ARCSEC
  - http://qudt.org/vocab/unit/ARCSEC expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/ARCSEC expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/c1750d6507433a9baf82b0921ef910a9
  - http://speckle.xyz/streams/bf7685a6aa/objects/2bab3a834da573d903244a9902f78aa1 on http://speckle.xyz/streams/bf7685a6aa/objects/c1750d6507433a9baf82b0921ef910a9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/2bab3a834da573d903244a9902f78aa1 on http://speckle.xyz/streams/bf7685a6aa/objects/c1750d6507433a9baf82b0921ef910a9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/ExhaustStreamPower
  - http://qudt.org/vocab/unit/PFERDESTAERKE on http://qudt.org/vocab/quantitykind/ExhaustStreamPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/TeraJ-PER-SEC on http://qudt.org/vocab/quantitykind/ExhaustStreamPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GigaJ-PER-SEC on http://qudt.org/vocab/quantitykind/ExhaustStreamPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PetaJ-PER-SEC on http://qudt.org/vocab/quantitykind/ExhaustStreamPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/J-PER-MIN on http://qudt.org/vocab/quantitykind/ExhaustStreamPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MicroJ-PER-SEC on http://qudt.org/vocab/quantitykind/ExhaustStreamPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloJ-PER-MIN on http://qudt.org/vocab/quantitykind/ExhaustStreamPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloJ-PER-HR on http://qudt.org/vocab/quantitykind/ExhaustStreamPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliJ-PER-SEC on http://qudt.org/vocab/quantitykind/ExhaustStreamPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PetaW on http://qudt.org/vocab/quantitykind/ExhaustStreamPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloJ-PER-DAY on http://qudt.org/vocab/quantitykind/ExhaustStreamPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/J-PER-DAY on http://qudt.org/vocab/quantitykind/ExhaustStreamPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/TeraW-HR-PER-YR on http://qudt.org/vocab/quantitykind/ExhaustStreamPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/NanoJ-PER-SEC on http://qudt.org/vocab/quantitykind/ExhaustStreamPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PicoJ-PER-SEC on http://qudt.org/vocab/quantitykind/ExhaustStreamPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloJ-PER-SEC on http://qudt.org/vocab/quantitykind/ExhaustStreamPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/ExaW on http://qudt.org/vocab/quantitykind/ExhaustStreamPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/ExaJ-PER-SEC on http://qudt.org/vocab/quantitykind/ExhaustStreamPower needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/e42ad07cc71e9ca263fc0049bb7bd8f4
  - http://speckle.xyz/streams/bf7685a6aa/objects/66a3014cb513eb02828ffb12c7f7ef5b on http://speckle.xyz/streams/bf7685a6aa/objects/e42ad07cc71e9ca263fc0049bb7bd8f4 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/66a3014cb513eb02828ffb12c7f7ef5b on http://speckle.xyz/streams/bf7685a6aa/objects/e42ad07cc71e9ca263fc0049bb7bd8f4 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/75b28ff3d35257d8f01e01575af0b46d
  - http://speckle.xyz/streams/bf7685a6aa/objects/ea809d7a6106eaba6d818bfdb3e3e5b9 on http://speckle.xyz/streams/bf7685a6aa/objects/75b28ff3d35257d8f01e01575af0b46d needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/ea809d7a6106eaba6d818bfdb3e3e5b9 on http://speckle.xyz/streams/bf7685a6aa/objects/75b28ff3d35257d8f01e01575af0b46d needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/CatalyticActivity
  - http://qudt.org/vocab/unit/ENZ on http://qudt.org/vocab/quantitykind/CatalyticActivity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MOL_LB-PER-MIN on http://qudt.org/vocab/quantitykind/CatalyticActivity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/CatalyticActivity expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/MOL_LB-PER-SEC on http://qudt.org/vocab/quantitykind/CatalyticActivity needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/constant/Value_NewtonianConstantOfGravitationOverHbarC
  - http://qudt.org/vocab/constant/Value_NewtonianConstantOfGravitationOverHbarC expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/quantitykind/EllipticalOrbitPerigeeVelocity
  - http://qudt.org/vocab/unit/IN-PER-YR on http://qudt.org/vocab/quantitykind/EllipticalOrbitPerigeeVelocity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/YD-PER-MIN on http://qudt.org/vocab/quantitykind/EllipticalOrbitPerigeeVelocity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/EllipticalOrbitPerigeeVelocity expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/YD-PER-HR on http://qudt.org/vocab/quantitykind/EllipticalOrbitPerigeeVelocity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/YD-PER-SEC on http://qudt.org/vocab/quantitykind/EllipticalOrbitPerigeeVelocity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MicroM-PER-MIN on http://qudt.org/vocab/quantitykind/EllipticalOrbitPerigeeVelocity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MicroM-PER-SEC on http://qudt.org/vocab/quantitykind/EllipticalOrbitPerigeeVelocity needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/3b5a4719df94039971bd06d8c3d45346
  - http://speckle.xyz/streams/bf7685a6aa/objects/6522948c17f68892a20ab290338e3478 on http://speckle.xyz/streams/bf7685a6aa/objects/3b5a4719df94039971bd06d8c3d45346 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/6522948c17f68892a20ab290338e3478 on http://speckle.xyz/streams/bf7685a6aa/objects/3b5a4719df94039971bd06d8c3d45346 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/Enthalpy
  - http://qudt.org/vocab/unit/PicoJ on http://qudt.org/vocab/quantitykind/Enthalpy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/THERM_EC on http://qudt.org/vocab/quantitykind/Enthalpy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/THERM_US on http://qudt.org/vocab/quantitykind/Enthalpy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/NanoJ on http://qudt.org/vocab/quantitykind/Enthalpy needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/Speed
  - http://qudt.org/vocab/unit/MicroM-PER-MIN on http://qudt.org/vocab/quantitykind/Speed needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/YD-PER-MIN on http://qudt.org/vocab/quantitykind/Speed needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/YD-PER-HR on http://qudt.org/vocab/quantitykind/Speed needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Speed expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/IN-PER-YR on http://qudt.org/vocab/quantitykind/Speed needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/YD-PER-SEC on http://qudt.org/vocab/quantitykind/Speed needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MicroM-PER-SEC on http://qudt.org/vocab/quantitykind/Speed needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/constant/Value_MoXUnit
  - http://qudt.org/vocab/constant/Value_MoXUnit expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/unit/MilliGM
  - http://qudt.org/vocab/unit/MilliGM expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MilliGM expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/DynamicPressure
  - http://qudt.org/vocab/unit/PDL-PER-IN2 on http://qudt.org/vocab/quantitykind/DynamicPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/M_H2O on http://qudt.org/vocab/quantitykind/DynamicPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CentiM_H2O_4DEG_C on http://qudt.org/vocab/quantitykind/DynamicPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloN-PER-M2 on http://qudt.org/vocab/quantitykind/DynamicPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/FT_H2O_39dot2DEG_F on http://qudt.org/vocab/quantitykind/DynamicPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CentiM_H20_4DEG_C on http://qudt.org/vocab/quantitykind/DynamicPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CentiM_HG_0DEG_C on http://qudt.org/vocab/quantitykind/DynamicPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/IN_H2O_60DEG_F on http://qudt.org/vocab/quantitykind/DynamicPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/IN_H2O_39dot2DEG_F on http://qudt.org/vocab/quantitykind/DynamicPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/IN_HG_60DEG_F on http://qudt.org/vocab/quantitykind/DynamicPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/IN_HG_32DEG_F on http://qudt.org/vocab/quantitykind/DynamicPressure needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/PositionVector
  - http://qudt.org/vocab/quantitykind/PositionVector expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/GA_Charriere on http://qudt.org/vocab/quantitykind/PositionVector needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CHAIN_US on http://qudt.org/vocab/quantitykind/PositionVector needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/ZOLL on http://qudt.org/vocab/quantitykind/PositionVector needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/828f7d265f8da3bfcfe186369592a43a
  - http://speckle.xyz/streams/bf7685a6aa/objects/0d245daa39fba4d252d07553fdb4c419 on http://speckle.xyz/streams/bf7685a6aa/objects/828f7d265f8da3bfcfe186369592a43a needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/0d245daa39fba4d252d07553fdb4c419 on http://speckle.xyz/streams/bf7685a6aa/objects/828f7d265f8da3bfcfe186369592a43a needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/49b725a23e288cd9fd8e046363accf9a
  - http://speckle.xyz/streams/bf7685a6aa/objects/f9f9f58777812d5fea59aef9b267ba4e on http://speckle.xyz/streams/bf7685a6aa/objects/49b725a23e288cd9fd8e046363accf9a needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/f9f9f58777812d5fea59aef9b267ba4e on http://speckle.xyz/streams/bf7685a6aa/objects/49b725a23e288cd9fd8e046363accf9a needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/EnergyLevel
  - http://qudt.org/vocab/unit/NanoJ on http://qudt.org/vocab/quantitykind/EnergyLevel needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/THERM_US on http://qudt.org/vocab/quantitykind/EnergyLevel needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PicoJ on http://qudt.org/vocab/quantitykind/EnergyLevel needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/THERM_EC on http://qudt.org/vocab/quantitykind/EnergyLevel needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/EnergyLevel expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/constant/Value_ElectronProtonMagneticMomentRatio
  - http://qudt.org/vocab/constant/Value_ElectronProtonMagneticMomentRatio expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/quantitykind/CatalyticActivityConcentration
  - http://qudt.org/vocab/unit/KAT-PER-M3 on http://qudt.org/vocab/quantitykind/CatalyticActivityConcentration needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/ENZ-PER-L on http://qudt.org/vocab/quantitykind/CatalyticActivityConcentration needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/EU-PER-L on http://qudt.org/vocab/quantitykind/CatalyticActivityConcentration needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/CatalyticActivityConcentration expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/PermittivityRatio
  - http://qudt.org/vocab/quantitykind/PermittivityRatio expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/CartesianCoordinates
  - http://qudt.org/vocab/quantitykind/CartesianCoordinates expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/CHAIN_US on http://qudt.org/vocab/quantitykind/CartesianCoordinates needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/ZOLL on http://qudt.org/vocab/quantitykind/CartesianCoordinates needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GA_Charriere on http://qudt.org/vocab/quantitykind/CartesianCoordinates needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/147cc8dfd105f84d91ca69421c672fda
  - http://speckle.xyz/streams/bf7685a6aa/objects/c1f8ba2020eb6468b1d37e4445924aa6 on http://speckle.xyz/streams/bf7685a6aa/objects/147cc8dfd105f84d91ca69421c672fda needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/c1f8ba2020eb6468b1d37e4445924aa6 on http://speckle.xyz/streams/bf7685a6aa/objects/147cc8dfd105f84d91ca69421c672fda needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/96d3cafd8e8a73bd2dfd0d3cc29e167d
  - http://speckle.xyz/streams/bf7685a6aa/objects/d8233308d858417f63d96f5f694e9538 on http://speckle.xyz/streams/bf7685a6aa/objects/96d3cafd8e8a73bd2dfd0d3cc29e167d needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/d8233308d858417f63d96f5f694e9538 on http://speckle.xyz/streams/bf7685a6aa/objects/96d3cafd8e8a73bd2dfd0d3cc29e167d needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/EffectiveMass
  - http://qudt.org/vocab/quantitykind/EffectiveMass expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/MOMME_Textile on http://qudt.org/vocab/quantitykind/EffectiveMass needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MOMME_Pearl on http://qudt.org/vocab/quantitykind/EffectiveMass needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PFUND on http://qudt.org/vocab/quantitykind/EffectiveMass needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MegaTON on http://qudt.org/vocab/quantitykind/EffectiveMass needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MegaTONNE on http://qudt.org/vocab/quantitykind/EffectiveMass needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/TON on http://qudt.org/vocab/quantitykind/EffectiveMass needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/ActionTime
  - http://qudt.org/vocab/unit/MegaSEC on http://qudt.org/vocab/quantitykind/ActionTime needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/FemtoSEC on http://qudt.org/vocab/quantitykind/ActionTime needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/AttoSEC on http://qudt.org/vocab/quantitykind/ActionTime needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/POISE-PER-PA on http://qudt.org/vocab/quantitykind/ActionTime needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/DeciSEC on http://qudt.org/vocab/quantitykind/ActionTime needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/YR_Metrology on http://qudt.org/vocab/quantitykind/ActionTime needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/20f78be2148827c6bbe3bb15f5d1c624
  - http://speckle.xyz/streams/bf7685a6aa/objects/bfcc2b802b338cb0cbaefad6542c58d7 on http://speckle.xyz/streams/bf7685a6aa/objects/20f78be2148827c6bbe3bb15f5d1c624 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/bfcc2b802b338cb0cbaefad6542c58d7 on http://speckle.xyz/streams/bf7685a6aa/objects/20f78be2148827c6bbe3bb15f5d1c624 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/MicroM-PER-MilliL
  - http://qudt.org/vocab/unit/MicroM-PER-MilliL expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MicroM-PER-MilliL expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/AttoJ-SEC
  - http://qudt.org/vocab/unit/AttoJ-SEC expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/AttoJ-SEC expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/IN3-PER-SEC
  - http://qudt.org/vocab/unit/IN3-PER-SEC expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/IN3-PER-SEC expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/NanoSEC
  - http://qudt.org/vocab/unit/NanoSEC expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/NanoSEC expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/V_Ab
  - http://qudt.org/vocab/unit/V_Ab expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/V_Ab expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/1a96dcd9eb0f4297381fd209943ea50f
  - http://speckle.xyz/streams/bf7685a6aa/objects/098d381126c26c79190f714830a34e51 on http://speckle.xyz/streams/bf7685a6aa/objects/1a96dcd9eb0f4297381fd209943ea50f needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/098d381126c26c79190f714830a34e51 on http://speckle.xyz/streams/bf7685a6aa/objects/1a96dcd9eb0f4297381fd209943ea50f needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/PoissonRatio
  - http://qudt.org/vocab/quantitykind/PoissonRatio expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/unit/PSU
  - http://qudt.org/vocab/unit/PSU expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/Depth
  - http://qudt.org/vocab/unit/ZOLL on http://qudt.org/vocab/quantitykind/Depth needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GA_Charriere on http://qudt.org/vocab/quantitykind/Depth needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Depth expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/CHAIN_US on http://qudt.org/vocab/quantitykind/Depth needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/a7259ff57b1d53c7aae1a3f4d09ec4bd
  - http://speckle.xyz/streams/bf7685a6aa/objects/60dec90ea4a69243d04d1865db4ab294 on http://speckle.xyz/streams/bf7685a6aa/objects/a7259ff57b1d53c7aae1a3f4d09ec4bd needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/60dec90ea4a69243d04d1865db4ab294 on http://speckle.xyz/streams/bf7685a6aa/objects/a7259ff57b1d53c7aae1a3f4d09ec4bd needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/Width
  - http://qudt.org/vocab/unit/CHAIN_US on http://qudt.org/vocab/quantitykind/Width needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/ZOLL on http://qudt.org/vocab/quantitykind/Width needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Width expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/GA_Charriere on http://qudt.org/vocab/quantitykind/Width needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/08c220fe0b35e35cd441d68f34f83bb7
  - http://speckle.xyz/streams/bf7685a6aa/objects/5751a7a8490e489a1a00976905f9b01b on http://speckle.xyz/streams/bf7685a6aa/objects/08c220fe0b35e35cd441d68f34f83bb7 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/5751a7a8490e489a1a00976905f9b01b on http://speckle.xyz/streams/bf7685a6aa/objects/08c220fe0b35e35cd441d68f34f83bb7 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/482154b7ff39bacb399ebe4fc5a6db96
  - http://speckle.xyz/streams/bf7685a6aa/objects/2bab3a834da573d903244a9902f78aa1 on http://speckle.xyz/streams/bf7685a6aa/objects/482154b7ff39bacb399ebe4fc5a6db96 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/2bab3a834da573d903244a9902f78aa1 on http://speckle.xyz/streams/bf7685a6aa/objects/482154b7ff39bacb399ebe4fc5a6db96 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/ed180cb670bcb692785ab2bc8e912442
  - http://speckle.xyz/streams/bf7685a6aa/objects/e9670962d6933d8e0a96caf59912d990 on http://speckle.xyz/streams/bf7685a6aa/objects/ed180cb670bcb692785ab2bc8e912442 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e9670962d6933d8e0a96caf59912d990 on http://speckle.xyz/streams/bf7685a6aa/objects/ed180cb670bcb692785ab2bc8e912442 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/HallCoefficient
  - http://qudt.org/vocab/unit/V-IN2-PER-LB_F on http://qudt.org/vocab/quantitykind/HallCoefficient needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/HallCoefficient expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/V-PER-BAR on http://qudt.org/vocab/quantitykind/HallCoefficient needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/V-PER-PA on http://qudt.org/vocab/quantitykind/HallCoefficient needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/constant/Value_MuonMolarMass
  - http://qudt.org/vocab/constant/Value_MuonMolarMass expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/quantitykind/BitRate
  - http://qudt.org/vocab/unit/OCTET-PER-SEC on http://qudt.org/vocab/quantitykind/BitRate needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/MolarFlowRate
  - http://qudt.org/vocab/unit/SCM-PER-MIN on http://qudt.org/vocab/quantitykind/MolarFlowRate needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/SCF-PER-HR on http://qudt.org/vocab/quantitykind/MolarFlowRate needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/SCF-PER-MIN on http://qudt.org/vocab/quantitykind/MolarFlowRate needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/SCM-PER-HR on http://qudt.org/vocab/quantitykind/MolarFlowRate needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/MolarFlowRate expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/ReactivePower
  - http://qudt.org/vocab/unit/PicoV-A_Reactive on http://qudt.org/vocab/quantitykind/ReactivePower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GigaV-A_Reactive on http://qudt.org/vocab/quantitykind/ReactivePower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MicroV-A_Reactive on http://qudt.org/vocab/quantitykind/ReactivePower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/TeraV-A_Reactive on http://qudt.org/vocab/quantitykind/ReactivePower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/NanoV-A_Reactive on http://qudt.org/vocab/quantitykind/ReactivePower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliV-A_Reactive on http://qudt.org/vocab/quantitykind/ReactivePower needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/ElectricPolarization
  - http://qudt.org/vocab/unit/A-HR-PER-M2 on http://qudt.org/vocab/quantitykind/ElectricPolarization needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/ElectricPolarization expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/19c3a18a22daec1f6a92dceda6ea9b65
  - http://speckle.xyz/streams/bf7685a6aa/objects/f9f9f58777812d5fea59aef9b267ba4e on http://speckle.xyz/streams/bf7685a6aa/objects/19c3a18a22daec1f6a92dceda6ea9b65 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/f9f9f58777812d5fea59aef9b267ba4e on http://speckle.xyz/streams/bf7685a6aa/objects/19c3a18a22daec1f6a92dceda6ea9b65 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/41ebe40723c3111402aa57d5672e82fe
  - http://speckle.xyz/streams/bf7685a6aa/objects/8492684344e3fa16fe12d0303f24fe0d on http://speckle.xyz/streams/bf7685a6aa/objects/41ebe40723c3111402aa57d5672e82fe needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/8492684344e3fa16fe12d0303f24fe0d on http://speckle.xyz/streams/bf7685a6aa/objects/41ebe40723c3111402aa57d5672e82fe needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/StateDensity
  - http://qudt.org/vocab/quantitykind/StateDensity expected at most 1 uses of path qudt:plainTextDescription
http://qudt.org/vocab/quantitykind/SourceVoltageBetweenSubstances
  - http://qudt.org/vocab/unit/FemtoV on http://qudt.org/vocab/quantitykind/SourceVoltageBetweenSubstances needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/NanoV on http://qudt.org/vocab/quantitykind/SourceVoltageBetweenSubstances needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PicoV on http://qudt.org/vocab/quantitykind/SourceVoltageBetweenSubstances needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GigaV on http://qudt.org/vocab/quantitykind/SourceVoltageBetweenSubstances needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/TeraV on http://qudt.org/vocab/quantitykind/SourceVoltageBetweenSubstances needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/SourceVoltageBetweenSubstances expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/ThermalAdmittance
  - http://qudt.org/vocab/unit/BTU_TH-PER-SEC-FT2-DEG_F on http://qudt.org/vocab/quantitykind/ThermalAdmittance needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/BTU_IT-PER-SEC-FT2-DEG_F on http://qudt.org/vocab/quantitykind/ThermalAdmittance needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/BTU_TH-PER-HR-FT2-DEG_F on http://qudt.org/vocab/quantitykind/ThermalAdmittance needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloGM-PER-SEC3-K on http://qudt.org/vocab/quantitykind/ThermalAdmittance needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloW-PER-M2-K on http://qudt.org/vocab/quantitykind/ThermalAdmittance needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/BTU_IT-PER-HR-FT2-DEG_F on http://qudt.org/vocab/quantitykind/ThermalAdmittance needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/ThermalAdmittance expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/b2bd3f308c01a9bb806252f1b4671231
  - http://speckle.xyz/streams/bf7685a6aa/objects/39585c6ef6b03b8dbb18fb8a3bed20a3 on http://speckle.xyz/streams/bf7685a6aa/objects/b2bd3f308c01a9bb806252f1b4671231 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/39585c6ef6b03b8dbb18fb8a3bed20a3 on http://speckle.xyz/streams/bf7685a6aa/objects/b2bd3f308c01a9bb806252f1b4671231 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/47a2676589d57100de3d9e026db16ed6
  - http://speckle.xyz/streams/bf7685a6aa/objects/1a82242a9320f719b8162c37bd9c580e on http://speckle.xyz/streams/bf7685a6aa/objects/47a2676589d57100de3d9e026db16ed6 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/1a82242a9320f719b8162c37bd9c580e on http://speckle.xyz/streams/bf7685a6aa/objects/47a2676589d57100de3d9e026db16ed6 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/Altitude
  - http://qudt.org/vocab/unit/ZOLL on http://qudt.org/vocab/quantitykind/Altitude needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GA_Charriere on http://qudt.org/vocab/quantitykind/Altitude needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Altitude expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/CHAIN_US on http://qudt.org/vocab/quantitykind/Altitude needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/d318a2b0c87e23ac84b3d6118372bd2c
  - http://speckle.xyz/streams/bf7685a6aa/objects/0d8c716bf524666d44c38328fe3f5865 on http://speckle.xyz/streams/bf7685a6aa/objects/d318a2b0c87e23ac84b3d6118372bd2c needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/0d8c716bf524666d44c38328fe3f5865 on http://speckle.xyz/streams/bf7685a6aa/objects/d318a2b0c87e23ac84b3d6118372bd2c needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/3a7e283abe020bb6b7479d03cee8f5b3
  - http://speckle.xyz/streams/bf7685a6aa/objects/4ba074e46be9bb3f56b99137981fb313 on http://speckle.xyz/streams/bf7685a6aa/objects/3a7e283abe020bb6b7479d03cee8f5b3 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/4ba074e46be9bb3f56b99137981fb313 on http://speckle.xyz/streams/bf7685a6aa/objects/3a7e283abe020bb6b7479d03cee8f5b3 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/FemtoJ
  - http://qudt.org/vocab/unit/FemtoJ expected at most 1 uses of path qudt:plainTextDescription
  - http://qudt.org/vocab/unit/FemtoJ expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/FemtoJ expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/LengthByForce
  - http://qudt.org/vocab/unit/THERM_US on http://qudt.org/vocab/quantitykind/LengthByForce needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/NanoJ on http://qudt.org/vocab/quantitykind/LengthByForce needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/THERM_EC on http://qudt.org/vocab/quantitykind/LengthByForce needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PicoJ on http://qudt.org/vocab/quantitykind/LengthByForce needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H1T0D0
  - http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H1T0D0 expected at most 1 uses of path qudt:latexDefinition
http://speckle.xyz/streams/bf7685a6aa/objects/727e8241daf0285ba548bce00ea738e7
  - http://speckle.xyz/streams/bf7685a6aa/objects/22ee737a989391acee4ea60354e91210 on http://speckle.xyz/streams/bf7685a6aa/objects/727e8241daf0285ba548bce00ea738e7 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/22ee737a989391acee4ea60354e91210 on http://speckle.xyz/streams/bf7685a6aa/objects/727e8241daf0285ba548bce00ea738e7 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/6320c4d75c2b94f99adc4f0a0491ef14
  - http://speckle.xyz/streams/bf7685a6aa/objects/7027106b86bbf1624aeecea353bf4412 on http://speckle.xyz/streams/bf7685a6aa/objects/6320c4d75c2b94f99adc4f0a0491ef14 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/7027106b86bbf1624aeecea353bf4412 on http://speckle.xyz/streams/bf7685a6aa/objects/6320c4d75c2b94f99adc4f0a0491ef14 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/3c96cb9f11437774fa1ae1dc0900986d
  - http://speckle.xyz/streams/bf7685a6aa/objects/17592c23e3930128143ddd679cd6a0d0 on http://speckle.xyz/streams/bf7685a6aa/objects/3c96cb9f11437774fa1ae1dc0900986d needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/17592c23e3930128143ddd679cd6a0d0 on http://speckle.xyz/streams/bf7685a6aa/objects/3c96cb9f11437774fa1ae1dc0900986d needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/ByteTransmissionRate
  - http://qudt.org/vocab/unit/MegaBYTE-PER-SEC on http://qudt.org/vocab/quantitykind/ByteTransmissionRate needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/ByteTransmissionRate expected at most 1 uses of path qudt:plainTextDescription
  - http://qudt.org/vocab/unit/GigaBYTE-PER-SEC on http://qudt.org/vocab/quantitykind/ByteTransmissionRate needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/BYTE-PER-SEC on http://qudt.org/vocab/quantitykind/ByteTransmissionRate needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/5b4953b896d7af52a266931118692102
  - http://speckle.xyz/streams/bf7685a6aa/objects/692b74cce4df1fc8676e483160064c85 on http://speckle.xyz/streams/bf7685a6aa/objects/5b4953b896d7af52a266931118692102 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/692b74cce4df1fc8676e483160064c85 on http://speckle.xyz/streams/bf7685a6aa/objects/5b4953b896d7af52a266931118692102 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/4b86557cd57abc8fdb38f2bf1769a3e1
  - http://speckle.xyz/streams/bf7685a6aa/objects/39585c6ef6b03b8dbb18fb8a3bed20a3 on http://speckle.xyz/streams/bf7685a6aa/objects/4b86557cd57abc8fdb38f2bf1769a3e1 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/39585c6ef6b03b8dbb18fb8a3bed20a3 on http://speckle.xyz/streams/bf7685a6aa/objects/4b86557cd57abc8fdb38f2bf1769a3e1 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/StrainEnergyReleaseRate
  - http://qudt.org/vocab/quantitykind/StrainEnergyReleaseRate expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/ERG-PER-CentiM2 on http://qudt.org/vocab/quantitykind/StrainEnergyReleaseRate needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliJ-PER-M2 on http://qudt.org/vocab/quantitykind/StrainEnergyReleaseRate needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/7160e7ca09543eb13532758c0b97073b
  - http://speckle.xyz/streams/bf7685a6aa/objects/e9d3c9ff9450f7b762dcae8badb9365d on http://speckle.xyz/streams/bf7685a6aa/objects/7160e7ca09543eb13532758c0b97073b needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e9d3c9ff9450f7b762dcae8badb9365d on http://speckle.xyz/streams/bf7685a6aa/objects/7160e7ca09543eb13532758c0b97073b needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/constant/Value_MolarVolumeOfIdealGas
  - http://qudt.org/vocab/constant/Value_MolarVolumeOfIdealGas expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/quantitykind/SpeedOfLight
  - http://qudt.org/vocab/unit/YD-PER-MIN on http://qudt.org/vocab/quantitykind/SpeedOfLight needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/YD-PER-HR on http://qudt.org/vocab/quantitykind/SpeedOfLight needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/YD-PER-SEC on http://qudt.org/vocab/quantitykind/SpeedOfLight needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MicroM-PER-SEC on http://qudt.org/vocab/quantitykind/SpeedOfLight needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/IN-PER-YR on http://qudt.org/vocab/quantitykind/SpeedOfLight needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MicroM-PER-MIN on http://qudt.org/vocab/quantitykind/SpeedOfLight needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/SpeedOfLight expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/IonTransportNumber
  - http://qudt.org/vocab/quantitykind/IonTransportNumber expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/unit/KiloBAR
  - http://qudt.org/vocab/unit/KiloBAR expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/KiloBAR expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/43c8525763b5876cc61882f44663ee17
  - http://speckle.xyz/streams/bf7685a6aa/objects/e8908b5eec592c1e9e520605ad787a0c on http://speckle.xyz/streams/bf7685a6aa/objects/43c8525763b5876cc61882f44663ee17 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e8908b5eec592c1e9e520605ad787a0c on http://speckle.xyz/streams/bf7685a6aa/objects/43c8525763b5876cc61882f44663ee17 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/58489cc5a966a593da26cfa8fafe399c
  - http://speckle.xyz/streams/bf7685a6aa/objects/288eb5e729bd3a5f915b25b9695e2397 on http://speckle.xyz/streams/bf7685a6aa/objects/58489cc5a966a593da26cfa8fafe399c needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/288eb5e729bd3a5f915b25b9695e2397 on http://speckle.xyz/streams/bf7685a6aa/objects/58489cc5a966a593da26cfa8fafe399c needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/AttoJ
  - http://qudt.org/vocab/unit/AttoJ expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/AttoJ expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/AttoJ expected at most 1 uses of path qudt:plainTextDescription
http://qudt.org/vocab/quantitykind/LinearLogarithmicRatio
  - http://qudt.org/vocab/unit/DeciB-PER-M on http://qudt.org/vocab/quantitykind/LinearLogarithmicRatio needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/B-PER-M on http://qudt.org/vocab/quantitykind/LinearLogarithmicRatio needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/DeciB-PER-KiloM on http://qudt.org/vocab/quantitykind/LinearLogarithmicRatio needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/TotalCrossSection
  - http://qudt.org/vocab/unit/KiloMIL_Circ on http://qudt.org/vocab/quantitykind/TotalCrossSection needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloM2 on http://qudt.org/vocab/quantitykind/TotalCrossSection needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/TotalCrossSection expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/MI_US2 on http://qudt.org/vocab/quantitykind/TotalCrossSection needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/Radiosity
  - http://qudt.org/vocab/quantitykind/Radiosity expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/0fba9ed406c794aa070092b1c41adfa4
  - http://speckle.xyz/streams/bf7685a6aa/objects/ea1260ec254fcbc4b0630875ec6ed737 on http://speckle.xyz/streams/bf7685a6aa/objects/0fba9ed406c794aa070092b1c41adfa4 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/ea1260ec254fcbc4b0630875ec6ed737 on http://speckle.xyz/streams/bf7685a6aa/objects/0fba9ed406c794aa070092b1c41adfa4 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/PressureBasedVolumeFlow
  - http://qudt.org/vocab/quantitykind/PressureBasedVolumeFlow expected at most 1 uses of path qudt:plainTextDescription
http://speckle.xyz/streams/bf7685a6aa/objects/76ab0b7e70f212484f459ef410e26926
  - http://speckle.xyz/streams/bf7685a6aa/objects/17592c23e3930128143ddd679cd6a0d0 on http://speckle.xyz/streams/bf7685a6aa/objects/76ab0b7e70f212484f459ef410e26926 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/17592c23e3930128143ddd679cd6a0d0 on http://speckle.xyz/streams/bf7685a6aa/objects/76ab0b7e70f212484f459ef410e26926 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/Fugacity
  - http://qudt.org/vocab/quantitykind/Fugacity expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/unit/MilliGM-PER-M3-DAY
  - http://qudt.org/vocab/unit/MilliGM-PER-M3-DAY expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MilliGM-PER-M3-DAY expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/5b40c2e3b6c248744d5ac07e6b790fe8
  - http://speckle.xyz/streams/bf7685a6aa/objects/2bab3a834da573d903244a9902f78aa1 on http://speckle.xyz/streams/bf7685a6aa/objects/5b40c2e3b6c248744d5ac07e6b790fe8 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/2bab3a834da573d903244a9902f78aa1 on http://speckle.xyz/streams/bf7685a6aa/objects/5b40c2e3b6c248744d5ac07e6b790fe8 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/7348957f4f78242750473099039c44e2
  - http://speckle.xyz/streams/bf7685a6aa/objects/af1446d067d1a6d619cec36730b3234c on http://speckle.xyz/streams/bf7685a6aa/objects/7348957f4f78242750473099039c44e2 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/af1446d067d1a6d619cec36730b3234c on http://speckle.xyz/streams/bf7685a6aa/objects/7348957f4f78242750473099039c44e2 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/PicoGM-PER-L
  - http://qudt.org/vocab/unit/PicoGM-PER-L expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/PicoGM-PER-L expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/MagneticMoment
  - http://qudt.org/vocab/quantitykind/MagneticMoment expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/MeanLifetime
  - http://qudt.org/vocab/unit/AttoSEC on http://qudt.org/vocab/quantitykind/MeanLifetime needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/DeciSEC on http://qudt.org/vocab/quantitykind/MeanLifetime needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/POISE-PER-PA on http://qudt.org/vocab/quantitykind/MeanLifetime needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/YR_Metrology on http://qudt.org/vocab/quantitykind/MeanLifetime needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/FemtoSEC on http://qudt.org/vocab/quantitykind/MeanLifetime needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MegaSEC on http://qudt.org/vocab/quantitykind/MeanLifetime needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/unit/PARSEC
  - http://qudt.org/vocab/unit/PARSEC expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/PARSEC expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/3a71b9bd871579864bb28dfbc2496af9
  - http://speckle.xyz/streams/bf7685a6aa/objects/e13dd4b578872dbd32e09626f5d25240 on http://speckle.xyz/streams/bf7685a6aa/objects/3a71b9bd871579864bb28dfbc2496af9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e13dd4b578872dbd32e09626f5d25240 on http://speckle.xyz/streams/bf7685a6aa/objects/3a71b9bd871579864bb28dfbc2496af9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/PER-MicroM
  - http://qudt.org/vocab/unit/PER-MicroM expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/PER-MicroM expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/26da4e5d32aed2b638923a6ecc4e28f4
  - http://speckle.xyz/streams/bf7685a6aa/objects/03183bd47ce710193f9d15449df4add8 on http://speckle.xyz/streams/bf7685a6aa/objects/26da4e5d32aed2b638923a6ecc4e28f4 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/03183bd47ce710193f9d15449df4add8 on http://speckle.xyz/streams/bf7685a6aa/objects/26da4e5d32aed2b638923a6ecc4e28f4 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/ElectricPower
  - http://qudt.org/vocab/unit/KiloJ-PER-MIN on http://qudt.org/vocab/quantitykind/ElectricPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/ExaW on http://qudt.org/vocab/quantitykind/ElectricPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloJ-PER-DAY on http://qudt.org/vocab/quantitykind/ElectricPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/J-PER-DAY on http://qudt.org/vocab/quantitykind/ElectricPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PetaW on http://qudt.org/vocab/quantitykind/ElectricPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/TeraW-HR-PER-YR on http://qudt.org/vocab/quantitykind/ElectricPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/J-PER-MIN on http://qudt.org/vocab/quantitykind/ElectricPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PetaJ-PER-SEC on http://qudt.org/vocab/quantitykind/ElectricPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PicoJ-PER-SEC on http://qudt.org/vocab/quantitykind/ElectricPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MicroJ-PER-SEC on http://qudt.org/vocab/quantitykind/ElectricPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/ExaJ-PER-SEC on http://qudt.org/vocab/quantitykind/ElectricPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliJ-PER-SEC on http://qudt.org/vocab/quantitykind/ElectricPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PFERDESTAERKE on http://qudt.org/vocab/quantitykind/ElectricPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/TeraJ-PER-SEC on http://qudt.org/vocab/quantitykind/ElectricPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GigaJ-PER-SEC on http://qudt.org/vocab/quantitykind/ElectricPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloJ-PER-SEC on http://qudt.org/vocab/quantitykind/ElectricPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloJ-PER-HR on http://qudt.org/vocab/quantitykind/ElectricPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/NanoJ-PER-SEC on http://qudt.org/vocab/quantitykind/ElectricPower needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/d89af416215af1eb01eb8af58541ca28
  - http://speckle.xyz/streams/bf7685a6aa/objects/fd13fab9dd5bf7fb5f34f8a47903f3c4 on http://speckle.xyz/streams/bf7685a6aa/objects/d89af416215af1eb01eb8af58541ca28 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/fd13fab9dd5bf7fb5f34f8a47903f3c4 on http://speckle.xyz/streams/bf7685a6aa/objects/d89af416215af1eb01eb8af58541ca28 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/CONTROL-MASS
  - http://qudt.org/vocab/unit/MOMME_Pearl on http://qudt.org/vocab/quantitykind/CONTROL-MASS needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/TON on http://qudt.org/vocab/quantitykind/CONTROL-MASS needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MegaTONNE on http://qudt.org/vocab/quantitykind/CONTROL-MASS needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MegaTON on http://qudt.org/vocab/quantitykind/CONTROL-MASS needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MOMME_Textile on http://qudt.org/vocab/quantitykind/CONTROL-MASS needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/CONTROL-MASS expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/PFUND on http://qudt.org/vocab/quantitykind/CONTROL-MASS needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/37fe7981171afa0085228a4c0f2d69ce
  - http://speckle.xyz/streams/bf7685a6aa/objects/86794e87250ef6ac1ca88b1e608e64b4 on http://speckle.xyz/streams/bf7685a6aa/objects/37fe7981171afa0085228a4c0f2d69ce needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/86794e87250ef6ac1ca88b1e608e64b4 on http://speckle.xyz/streams/bf7685a6aa/objects/37fe7981171afa0085228a4c0f2d69ce needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/8636cb0ca5f05aaafc4be2896310f15b
  - http://speckle.xyz/streams/bf7685a6aa/objects/c8fb46fc939728e45252377481a55e6a on http://speckle.xyz/streams/bf7685a6aa/objects/8636cb0ca5f05aaafc4be2896310f15b needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/c8fb46fc939728e45252377481a55e6a on http://speckle.xyz/streams/bf7685a6aa/objects/8636cb0ca5f05aaafc4be2896310f15b needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/MilliGM-PER-M
  - http://qudt.org/vocab/unit/MilliGM-PER-M expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MilliGM-PER-M expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/MassOfSolidBooster
  - http://qudt.org/vocab/unit/PFUND on http://qudt.org/vocab/quantitykind/MassOfSolidBooster needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MOMME_Textile on http://qudt.org/vocab/quantitykind/MassOfSolidBooster needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MegaTONNE on http://qudt.org/vocab/quantitykind/MassOfSolidBooster needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MegaTON on http://qudt.org/vocab/quantitykind/MassOfSolidBooster needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/TON on http://qudt.org/vocab/quantitykind/MassOfSolidBooster needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MOMME_Pearl on http://qudt.org/vocab/quantitykind/MassOfSolidBooster needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/RadianceFactor
  - http://qudt.org/vocab/quantitykind/RadianceFactor expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/74ff493cbec0d53c09be7cb15d4f8fbf
  - http://speckle.xyz/streams/bf7685a6aa/objects/436cbdf042b2430d478faaa32f8345b5 on http://speckle.xyz/streams/bf7685a6aa/objects/74ff493cbec0d53c09be7cb15d4f8fbf needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/436cbdf042b2430d478faaa32f8345b5 on http://speckle.xyz/streams/bf7685a6aa/objects/74ff493cbec0d53c09be7cb15d4f8fbf needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/LineicCharge
  - http://qudt.org/vocab/quantitykind/LineicCharge expected at most 1 uses of path qudt:plainTextDescription
http://qudt.org/vocab/unit/KiloCAL-PER-CentiM2-SEC
  - http://qudt.org/vocab/unit/KiloCAL-PER-CentiM2-SEC expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/KiloCAL-PER-CentiM2-SEC expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/DEG_C-PER-YR
  - http://qudt.org/vocab/unit/DEG_C-PER-YR expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/DEG_C-PER-YR expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/DELTA-V
  - http://qudt.org/vocab/unit/YD-PER-HR on http://qudt.org/vocab/quantitykind/DELTA-V needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/YD-PER-SEC on http://qudt.org/vocab/quantitykind/DELTA-V needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MicroM-PER-SEC on http://qudt.org/vocab/quantitykind/DELTA-V needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/IN-PER-YR on http://qudt.org/vocab/quantitykind/DELTA-V needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MicroM-PER-MIN on http://qudt.org/vocab/quantitykind/DELTA-V needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/YD-PER-MIN on http://qudt.org/vocab/quantitykind/DELTA-V needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/DELTA-V expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/733391874c939f402a628dcc7d2964ad
  - http://speckle.xyz/streams/bf7685a6aa/objects/61392c60c3f0f6583028d86c3528cd5c on http://speckle.xyz/streams/bf7685a6aa/objects/733391874c939f402a628dcc7d2964ad needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/61392c60c3f0f6583028d86c3528cd5c on http://speckle.xyz/streams/bf7685a6aa/objects/733391874c939f402a628dcc7d2964ad needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/4a9ba07841c20379d58877102849aadd
  - http://speckle.xyz/streams/bf7685a6aa/objects/6522948c17f68892a20ab290338e3478 on http://speckle.xyz/streams/bf7685a6aa/objects/4a9ba07841c20379d58877102849aadd needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/6522948c17f68892a20ab290338e3478 on http://speckle.xyz/streams/bf7685a6aa/objects/4a9ba07841c20379d58877102849aadd needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/PhononMeanFreePath
  - http://qudt.org/vocab/quantitykind/PhononMeanFreePath expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/ZOLL on http://qudt.org/vocab/quantitykind/PhononMeanFreePath needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CHAIN_US on http://qudt.org/vocab/quantitykind/PhononMeanFreePath needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GA_Charriere on http://qudt.org/vocab/quantitykind/PhononMeanFreePath needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/0970cca10c598086b24b860ee3c1b5d4
  - http://speckle.xyz/streams/bf7685a6aa/objects/03183bd47ce710193f9d15449df4add8 on http://speckle.xyz/streams/bf7685a6aa/objects/0970cca10c598086b24b860ee3c1b5d4 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/03183bd47ce710193f9d15449df4add8 on http://speckle.xyz/streams/bf7685a6aa/objects/0970cca10c598086b24b860ee3c1b5d4 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/MomentOfForce
  - http://qudt.org/vocab/unit/PDL-IN on http://qudt.org/vocab/quantitykind/MomentOfForce needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/MomentOfForce expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/PDL-FT on http://qudt.org/vocab/quantitykind/MomentOfForce needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/IN-PDL on http://qudt.org/vocab/quantitykind/MomentOfForce needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/DYN-M on http://qudt.org/vocab/quantitykind/MomentOfForce needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/TotalPressure
  - http://qudt.org/vocab/unit/IN_H2O_39dot2DEG_F on http://qudt.org/vocab/quantitykind/TotalPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PDL-PER-IN2 on http://qudt.org/vocab/quantitykind/TotalPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/IN_H2O_60DEG_F on http://qudt.org/vocab/quantitykind/TotalPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/FT_H2O_39dot2DEG_F on http://qudt.org/vocab/quantitykind/TotalPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/IN_HG_32DEG_F on http://qudt.org/vocab/quantitykind/TotalPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloN-PER-M2 on http://qudt.org/vocab/quantitykind/TotalPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CentiM_HG_0DEG_C on http://qudt.org/vocab/quantitykind/TotalPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CentiM_H2O_4DEG_C on http://qudt.org/vocab/quantitykind/TotalPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/M_H2O on http://qudt.org/vocab/quantitykind/TotalPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/IN_HG_60DEG_F on http://qudt.org/vocab/quantitykind/TotalPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CentiM_H20_4DEG_C on http://qudt.org/vocab/quantitykind/TotalPressure needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/unit/GAL_US-PER-MIN
  - http://qudt.org/vocab/unit/GAL_US-PER-MIN expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/GAL_US-PER-MIN expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/CenterOfGravity_Z
  - http://qudt.org/vocab/unit/GA_Charriere on http://qudt.org/vocab/quantitykind/CenterOfGravity_Z needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/ZOLL on http://qudt.org/vocab/quantitykind/CenterOfGravity_Z needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CHAIN_US on http://qudt.org/vocab/quantitykind/CenterOfGravity_Z needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/MagneticTension
  - http://qudt.org/vocab/unit/PetaA on http://qudt.org/vocab/quantitykind/MagneticTension needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/TeraA on http://qudt.org/vocab/quantitykind/MagneticTension needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/AttoA on http://qudt.org/vocab/quantitykind/MagneticTension needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/MagneticTension expected at most 1 uses of path qudt:plainTextDescription
  - http://qudt.org/vocab/unit/GigaA on http://qudt.org/vocab/quantitykind/MagneticTension needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/FemtoA on http://qudt.org/vocab/quantitykind/MagneticTension needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/MagneticTension expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/044c98d6f6187525ab26f18e6a3a08ca
  - http://speckle.xyz/streams/bf7685a6aa/objects/9235406fdde87cb2ee62f34297961438 on http://speckle.xyz/streams/bf7685a6aa/objects/044c98d6f6187525ab26f18e6a3a08ca needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/9235406fdde87cb2ee62f34297961438 on http://speckle.xyz/streams/bf7685a6aa/objects/044c98d6f6187525ab26f18e6a3a08ca needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/cdc50b634fcea79e0f58f64504428d23
  - http://speckle.xyz/streams/bf7685a6aa/objects/03183bd47ce710193f9d15449df4add8 on http://speckle.xyz/streams/bf7685a6aa/objects/cdc50b634fcea79e0f58f64504428d23 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/03183bd47ce710193f9d15449df4add8 on http://speckle.xyz/streams/bf7685a6aa/objects/cdc50b634fcea79e0f58f64504428d23 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/f3fafebcead7d83ef6048fdb48d313b8
  - http://speckle.xyz/streams/bf7685a6aa/objects/e9490e3512dab7db58f40a947313427f on http://speckle.xyz/streams/bf7685a6aa/objects/f3fafebcead7d83ef6048fdb48d313b8 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e9490e3512dab7db58f40a947313427f on http://speckle.xyz/streams/bf7685a6aa/objects/f3fafebcead7d83ef6048fdb48d313b8 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/GapEnergy
  - http://qudt.org/vocab/unit/NanoJ on http://qudt.org/vocab/quantitykind/GapEnergy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/THERM_EC on http://qudt.org/vocab/quantitykind/GapEnergy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/GapEnergy expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/PicoJ on http://qudt.org/vocab/quantitykind/GapEnergy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/THERM_US on http://qudt.org/vocab/quantitykind/GapEnergy needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/constant/Value_AtomicMassUnitKilogramRelationship
  - http://qudt.org/vocab/constant/Value_AtomicMassUnitKilogramRelationship expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/unit/NanoA
  - http://qudt.org/vocab/unit/NanoA expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/NanoA expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/FLIGHT-PERFORMANCE-RESERVE-PROPELLANT-MASS
  - http://qudt.org/vocab/unit/TON on http://qudt.org/vocab/quantitykind/FLIGHT-PERFORMANCE-RESERVE-PROPELLANT-MASS needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MegaTON on http://qudt.org/vocab/quantitykind/FLIGHT-PERFORMANCE-RESERVE-PROPELLANT-MASS needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MOMME_Textile on http://qudt.org/vocab/quantitykind/FLIGHT-PERFORMANCE-RESERVE-PROPELLANT-MASS needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/FLIGHT-PERFORMANCE-RESERVE-PROPELLANT-MASS expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/MegaTONNE on http://qudt.org/vocab/quantitykind/FLIGHT-PERFORMANCE-RESERVE-PROPELLANT-MASS needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PFUND on http://qudt.org/vocab/quantitykind/FLIGHT-PERFORMANCE-RESERVE-PROPELLANT-MASS needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MOMME_Pearl on http://qudt.org/vocab/quantitykind/FLIGHT-PERFORMANCE-RESERVE-PROPELLANT-MASS needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/unit/TON_US
  - http://qudt.org/vocab/unit/TON_US expected at most 1 uses of path qudt:plainTextDescription
http://speckle.xyz/streams/bf7685a6aa/objects/a4a049ddf0ec021a05c4862415539b13
  - http://speckle.xyz/streams/bf7685a6aa/objects/0d245daa39fba4d252d07553fdb4c419 on http://speckle.xyz/streams/bf7685a6aa/objects/a4a049ddf0ec021a05c4862415539b13 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/0d245daa39fba4d252d07553fdb4c419 on http://speckle.xyz/streams/bf7685a6aa/objects/a4a049ddf0ec021a05c4862415539b13 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/constant/Value_MolarPlanckConstantTimesC
  - http://qudt.org/vocab/constant/Value_MolarPlanckConstantTimesC expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/quantitykind/ForcePerArea
  - http://qudt.org/vocab/unit/KiloN-PER-M2 on http://qudt.org/vocab/quantitykind/ForcePerArea needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CentiM_HG_0DEG_C on http://qudt.org/vocab/quantitykind/ForcePerArea needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/IN_H2O_39dot2DEG_F on http://qudt.org/vocab/quantitykind/ForcePerArea needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CentiM_H2O_4DEG_C on http://qudt.org/vocab/quantitykind/ForcePerArea needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/ForcePerArea expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/PDL-PER-IN2 on http://qudt.org/vocab/quantitykind/ForcePerArea needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CentiM_H20_4DEG_C on http://qudt.org/vocab/quantitykind/ForcePerArea needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/M_H2O on http://qudt.org/vocab/quantitykind/ForcePerArea needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/FT_H2O_39dot2DEG_F on http://qudt.org/vocab/quantitykind/ForcePerArea needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/IN_HG_32DEG_F on http://qudt.org/vocab/quantitykind/ForcePerArea needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/IN_HG_60DEG_F on http://qudt.org/vocab/quantitykind/ForcePerArea needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/IN_H2O_60DEG_F on http://qudt.org/vocab/quantitykind/ForcePerArea needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/unit/PicoPA-PER-KiloM
  - http://qudt.org/vocab/unit/PicoPA-PER-KiloM expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/PicoPA-PER-KiloM expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/99756055fb283e8ffc50f988ba402c5f
  - http://speckle.xyz/streams/bf7685a6aa/objects/d65f8c8c63863a9955cad6647fa559f4 on http://speckle.xyz/streams/bf7685a6aa/objects/99756055fb283e8ffc50f988ba402c5f needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/d65f8c8c63863a9955cad6647fa559f4 on http://speckle.xyz/streams/bf7685a6aa/objects/99756055fb283e8ffc50f988ba402c5f needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/af01751d9d11deeeaedbc46b0aa1d794
  - http://speckle.xyz/streams/bf7685a6aa/objects/17592c23e3930128143ddd679cd6a0d0 on http://speckle.xyz/streams/bf7685a6aa/objects/af01751d9d11deeeaedbc46b0aa1d794 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/17592c23e3930128143ddd679cd6a0d0 on http://speckle.xyz/streams/bf7685a6aa/objects/af01751d9d11deeeaedbc46b0aa1d794 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/aa4c5f30e2717b2512a458ebe9ff6bbe
  - http://speckle.xyz/streams/bf7685a6aa/objects/d912bfa2c63c5be2c0557c9a5ac0045b on http://speckle.xyz/streams/bf7685a6aa/objects/aa4c5f30e2717b2512a458ebe9ff6bbe needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/d912bfa2c63c5be2c0557c9a5ac0045b on http://speckle.xyz/streams/bf7685a6aa/objects/aa4c5f30e2717b2512a458ebe9ff6bbe needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/35f85525d4451f6633dcc6fed6b550e9
  - http://speckle.xyz/streams/bf7685a6aa/objects/decfcfb9b61288ea8bb8b586936e4e71 on http://speckle.xyz/streams/bf7685a6aa/objects/35f85525d4451f6633dcc6fed6b550e9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/decfcfb9b61288ea8bb8b586936e4e71 on http://speckle.xyz/streams/bf7685a6aa/objects/35f85525d4451f6633dcc6fed6b550e9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/Ratio
  - http://qudt.org/vocab/unit/ONE-PER-ONE on http://qudt.org/vocab/quantitykind/Ratio needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PERCENT-PER-DektoKiloCount on http://qudt.org/vocab/quantitykind/Ratio needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/SpectralConcentrationOfVibrationalModes
  - http://qudt.org/vocab/quantitykind/SpectralConcentrationOfVibrationalModes expected at most 1 uses of path qudt:plainTextDescription
http://speckle.xyz/streams/bf7685a6aa/objects/ddd349bdd467e938a1f8a942d6326d86
  - http://speckle.xyz/streams/bf7685a6aa/objects/e5eb69c71be84f5da9e07df2de08c8eb on http://speckle.xyz/streams/bf7685a6aa/objects/ddd349bdd467e938a1f8a942d6326d86 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e5eb69c71be84f5da9e07df2de08c8eb on http://speckle.xyz/streams/bf7685a6aa/objects/ddd349bdd467e938a1f8a942d6326d86 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/Volume
  - http://qudt.org/vocab/unit/AC-FT_US on http://qudt.org/vocab/quantitykind/Volume needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MI_UK3 on http://qudt.org/vocab/quantitykind/Volume needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/TON_Register on http://qudt.org/vocab/quantitykind/Volume needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Volume expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/NT on http://qudt.org/vocab/quantitykind/Volume needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/TON_SHIPPING_UK on http://qudt.org/vocab/quantitykind/Volume needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloCubicFT on http://qudt.org/vocab/quantitykind/Volume needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/InstantaneousPower
  - http://qudt.org/vocab/unit/ExaJ-PER-SEC on http://qudt.org/vocab/quantitykind/InstantaneousPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloJ-PER-SEC on http://qudt.org/vocab/quantitykind/InstantaneousPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PetaJ-PER-SEC on http://qudt.org/vocab/quantitykind/InstantaneousPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloJ-PER-HR on http://qudt.org/vocab/quantitykind/InstantaneousPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PetaW on http://qudt.org/vocab/quantitykind/InstantaneousPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/InstantaneousPower expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/NanoJ-PER-SEC on http://qudt.org/vocab/quantitykind/InstantaneousPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloJ-PER-DAY on http://qudt.org/vocab/quantitykind/InstantaneousPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/TeraJ-PER-SEC on http://qudt.org/vocab/quantitykind/InstantaneousPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliJ-PER-SEC on http://qudt.org/vocab/quantitykind/InstantaneousPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloJ-PER-MIN on http://qudt.org/vocab/quantitykind/InstantaneousPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PicoJ-PER-SEC on http://qudt.org/vocab/quantitykind/InstantaneousPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/J-PER-DAY on http://qudt.org/vocab/quantitykind/InstantaneousPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/ExaW on http://qudt.org/vocab/quantitykind/InstantaneousPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/J-PER-MIN on http://qudt.org/vocab/quantitykind/InstantaneousPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GigaJ-PER-SEC on http://qudt.org/vocab/quantitykind/InstantaneousPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PFERDESTAERKE on http://qudt.org/vocab/quantitykind/InstantaneousPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/TeraW-HR-PER-YR on http://qudt.org/vocab/quantitykind/InstantaneousPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MicroJ-PER-SEC on http://qudt.org/vocab/quantitykind/InstantaneousPower needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/50626bd8c64465185b4ff9100cf0cbe2
  - http://speckle.xyz/streams/bf7685a6aa/objects/f7c769a50d39f020556ab74d468269a2 on http://speckle.xyz/streams/bf7685a6aa/objects/50626bd8c64465185b4ff9100cf0cbe2 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/f7c769a50d39f020556ab74d468269a2 on http://speckle.xyz/streams/bf7685a6aa/objects/50626bd8c64465185b4ff9100cf0cbe2 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/LinearResistance
  - http://qudt.org/vocab/unit/OHM-PER-M on http://qudt.org/vocab/quantitykind/LinearResistance needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloOHM-PER-M on http://qudt.org/vocab/quantitykind/LinearResistance needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MegaOHM-PER-M on http://qudt.org/vocab/quantitykind/LinearResistance needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/OHM-PER-MI on http://qudt.org/vocab/quantitykind/LinearResistance needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MegaOHM-PER-KiloM on http://qudt.org/vocab/quantitykind/LinearResistance needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/OHM-PER-KiloM on http://qudt.org/vocab/quantitykind/LinearResistance needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliOHM-PER-M on http://qudt.org/vocab/quantitykind/LinearResistance needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GigaOHM-PER-M on http://qudt.org/vocab/quantitykind/LinearResistance needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/constant/Value_KelvinAtomicMassUnitRelationship
  - http://qudt.org/vocab/constant/Value_KelvinAtomicMassUnitRelationship expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/quantitykind/DiffusionArea
  - http://qudt.org/vocab/unit/KiloMIL_Circ on http://qudt.org/vocab/quantitykind/DiffusionArea needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MI_US2 on http://qudt.org/vocab/quantitykind/DiffusionArea needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloM2 on http://qudt.org/vocab/quantitykind/DiffusionArea needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/DiffusionArea expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/ParticleCurrent
  - http://qudt.org/vocab/unit/MilliHZ on http://qudt.org/vocab/quantitykind/ParticleCurrent needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PetaHZ on http://qudt.org/vocab/quantitykind/ParticleCurrent needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PERCENT-PER-MO on http://qudt.org/vocab/quantitykind/ParticleCurrent needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PERCENT-PER-YR on http://qudt.org/vocab/quantitykind/ParticleCurrent needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/9634a0f0bd062c4aa701f40ed0bf95a3
  - http://speckle.xyz/streams/bf7685a6aa/objects/bb735c1fd5e7bce4e542eb2535083e45 on http://speckle.xyz/streams/bf7685a6aa/objects/9634a0f0bd062c4aa701f40ed0bf95a3 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/bb735c1fd5e7bce4e542eb2535083e45 on http://speckle.xyz/streams/bf7685a6aa/objects/9634a0f0bd062c4aa701f40ed0bf95a3 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/Torque
  - http://qudt.org/vocab/unit/DYN-M on http://qudt.org/vocab/quantitykind/Torque needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/IN-PDL on http://qudt.org/vocab/quantitykind/Torque needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PDL-FT on http://qudt.org/vocab/quantitykind/Torque needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PDL-IN on http://qudt.org/vocab/quantitykind/Torque needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/constant/Value_TritonElectronMagneticMomentRatio
  - http://qudt.org/vocab/constant/Value_TritonElectronMagneticMomentRatio expected at most 1 uses of path qudt:standardUncertainty
http://speckle.xyz/streams/bf7685a6aa/objects/841c797579fce9bbe8caeef4cc60ede3
  - http://speckle.xyz/streams/bf7685a6aa/objects/18357be2061a0be61152934dd62335e9 on http://speckle.xyz/streams/bf7685a6aa/objects/841c797579fce9bbe8caeef4cc60ede3 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/18357be2061a0be61152934dd62335e9 on http://speckle.xyz/streams/bf7685a6aa/objects/841c797579fce9bbe8caeef4cc60ede3 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/constant/Value_FaradayConstant
  - http://qudt.org/vocab/constant/Value_FaradayConstant expected at most 1 uses of path qudt:standardUncertainty
http://speckle.xyz/streams/bf7685a6aa/objects/ab3ec967e86bcfae041986dcd69b9dd7
  - http://speckle.xyz/streams/bf7685a6aa/objects/af1446d067d1a6d619cec36730b3234c on http://speckle.xyz/streams/bf7685a6aa/objects/ab3ec967e86bcfae041986dcd69b9dd7 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/af1446d067d1a6d619cec36730b3234c on http://speckle.xyz/streams/bf7685a6aa/objects/ab3ec967e86bcfae041986dcd69b9dd7 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/348a652d46951c59c99e580c57b208a5
  - http://speckle.xyz/streams/bf7685a6aa/objects/bd4c1bbaf855ba85dd10beedc3c5f7f4 on http://speckle.xyz/streams/bf7685a6aa/objects/348a652d46951c59c99e580c57b208a5 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/bd4c1bbaf855ba85dd10beedc3c5f7f4 on http://speckle.xyz/streams/bf7685a6aa/objects/348a652d46951c59c99e580c57b208a5 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/e6a5b5cff7b561a36b6ed2a0a9183f62
  - http://speckle.xyz/streams/bf7685a6aa/objects/688eea56b7b78e0f7c7b90dced966926 on http://speckle.xyz/streams/bf7685a6aa/objects/e6a5b5cff7b561a36b6ed2a0a9183f62 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/688eea56b7b78e0f7c7b90dced966926 on http://speckle.xyz/streams/bf7685a6aa/objects/e6a5b5cff7b561a36b6ed2a0a9183f62 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/Breadth
  - http://qudt.org/vocab/unit/GA_Charriere on http://qudt.org/vocab/quantitykind/Breadth needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CHAIN_US on http://qudt.org/vocab/quantitykind/Breadth needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/ZOLL on http://qudt.org/vocab/quantitykind/Breadth needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Breadth expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/unit/MilliGM-PER-M2-DAY
  - http://qudt.org/vocab/unit/MilliGM-PER-M2-DAY expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MilliGM-PER-M2-DAY expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/constant/Value_InverseMeterElectronVoltRelationship
  - http://qudt.org/vocab/constant/Value_InverseMeterElectronVoltRelationship expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/quantitykind/NeutronDiffusionLength
  - http://qudt.org/vocab/unit/CHAIN_US on http://qudt.org/vocab/quantitykind/NeutronDiffusionLength needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/ZOLL on http://qudt.org/vocab/quantitykind/NeutronDiffusionLength needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GA_Charriere on http://qudt.org/vocab/quantitykind/NeutronDiffusionLength needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/NeutronDiffusionLength expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/f6ecce74d9f1dee5c3d18d461e1ed00f
  - http://speckle.xyz/streams/bf7685a6aa/objects/03183bd47ce710193f9d15449df4add8 on http://speckle.xyz/streams/bf7685a6aa/objects/f6ecce74d9f1dee5c3d18d461e1ed00f needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/03183bd47ce710193f9d15449df4add8 on http://speckle.xyz/streams/bf7685a6aa/objects/f6ecce74d9f1dee5c3d18d461e1ed00f needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/SpecificImpulseByMass
  - http://qudt.org/vocab/unit/MicroM-PER-SEC on http://qudt.org/vocab/quantitykind/SpecificImpulseByMass needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MicroM-PER-MIN on http://qudt.org/vocab/quantitykind/SpecificImpulseByMass needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/IN-PER-YR on http://qudt.org/vocab/quantitykind/SpecificImpulseByMass needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/YD-PER-HR on http://qudt.org/vocab/quantitykind/SpecificImpulseByMass needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/YD-PER-MIN on http://qudt.org/vocab/quantitykind/SpecificImpulseByMass needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/YD-PER-SEC on http://qudt.org/vocab/quantitykind/SpecificImpulseByMass needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/ElectricCurrentPhasor
  - http://qudt.org/vocab/unit/GigaA on http://qudt.org/vocab/quantitykind/ElectricCurrentPhasor needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/TeraA on http://qudt.org/vocab/quantitykind/ElectricCurrentPhasor needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/AttoA on http://qudt.org/vocab/quantitykind/ElectricCurrentPhasor needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/FemtoA on http://qudt.org/vocab/quantitykind/ElectricCurrentPhasor needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/ElectricCurrentPhasor expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/PetaA on http://qudt.org/vocab/quantitykind/ElectricCurrentPhasor needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/SecondPolarMomentOfArea
  - http://qudt.org/vocab/unit/CentiM4 on http://qudt.org/vocab/quantitykind/SecondPolarMomentOfArea needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/SecondPolarMomentOfArea expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/FT4 on http://qudt.org/vocab/quantitykind/SecondPolarMomentOfArea needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/b4343f8859abee196e1b3dd158aa929c
  - http://speckle.xyz/streams/bf7685a6aa/objects/e9670962d6933d8e0a96caf59912d990 on http://speckle.xyz/streams/bf7685a6aa/objects/b4343f8859abee196e1b3dd158aa929c needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e9670962d6933d8e0a96caf59912d990 on http://speckle.xyz/streams/bf7685a6aa/objects/b4343f8859abee196e1b3dd158aa929c needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/GaugePressure
  - http://qudt.org/vocab/unit/M_H2O on http://qudt.org/vocab/quantitykind/GaugePressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/IN_HG_60DEG_F on http://qudt.org/vocab/quantitykind/GaugePressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CentiM_HG_0DEG_C on http://qudt.org/vocab/quantitykind/GaugePressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PDL-PER-IN2 on http://qudt.org/vocab/quantitykind/GaugePressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloN-PER-M2 on http://qudt.org/vocab/quantitykind/GaugePressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/IN_H2O_60DEG_F on http://qudt.org/vocab/quantitykind/GaugePressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CentiM_H2O_4DEG_C on http://qudt.org/vocab/quantitykind/GaugePressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/FT_H2O_39dot2DEG_F on http://qudt.org/vocab/quantitykind/GaugePressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CentiM_H20_4DEG_C on http://qudt.org/vocab/quantitykind/GaugePressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/IN_H2O_39dot2DEG_F on http://qudt.org/vocab/quantitykind/GaugePressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/IN_HG_32DEG_F on http://qudt.org/vocab/quantitykind/GaugePressure needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/unit/KiloLB_F-PER-IN2
  - http://qudt.org/vocab/unit/KiloLB_F-PER-IN2 expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/KiloLB_F-PER-IN2 expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/d996d2f42722e25388ce9106b5a7e615
  - http://speckle.xyz/streams/bf7685a6aa/objects/c1f8ba2020eb6468b1d37e4445924aa6 on http://speckle.xyz/streams/bf7685a6aa/objects/d996d2f42722e25388ce9106b5a7e615 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/c1f8ba2020eb6468b1d37e4445924aa6 on http://speckle.xyz/streams/bf7685a6aa/objects/d996d2f42722e25388ce9106b5a7e615 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/a7481caeb635f9cc5ed9104e140e4e0d
  - http://speckle.xyz/streams/bf7685a6aa/objects/9235406fdde87cb2ee62f34297961438 on http://speckle.xyz/streams/bf7685a6aa/objects/a7481caeb635f9cc5ed9104e140e4e0d needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/9235406fdde87cb2ee62f34297961438 on http://speckle.xyz/streams/bf7685a6aa/objects/a7481caeb635f9cc5ed9104e140e4e0d needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/CoefficientOfHeatTransfer
  - http://qudt.org/vocab/quantitykind/CoefficientOfHeatTransfer expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/BTU_TH-PER-HR-FT2-DEG_F on http://qudt.org/vocab/quantitykind/CoefficientOfHeatTransfer needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/BTU_TH-PER-SEC-FT2-DEG_F on http://qudt.org/vocab/quantitykind/CoefficientOfHeatTransfer needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/BTU_IT-PER-SEC-FT2-DEG_F on http://qudt.org/vocab/quantitykind/CoefficientOfHeatTransfer needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloGM-PER-SEC3-K on http://qudt.org/vocab/quantitykind/CoefficientOfHeatTransfer needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloW-PER-M2-K on http://qudt.org/vocab/quantitykind/CoefficientOfHeatTransfer needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/BTU_IT-PER-HR-FT2-DEG_F on http://qudt.org/vocab/quantitykind/CoefficientOfHeatTransfer needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/dimensionvector/A0E1L-2I0M0H0T0D0
  - http://qudt.org/vocab/dimensionvector/A0E1L-2I0M0H0T0D0 expected at most 1 uses of path qudt:latexDefinition
http://qudt.org/vocab/quantitykind/StaticFriction
  - http://qudt.org/vocab/unit/KiloGM-M-PER-SEC2 on http://qudt.org/vocab/quantitykind/StaticFriction needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/StaticFriction expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/POND on http://qudt.org/vocab/quantitykind/StaticFriction needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/P on http://qudt.org/vocab/quantitykind/StaticFriction needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/unit/YR_Common
  - http://qudt.org/vocab/unit/YR_Common expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/YR_Common expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/MegaV-PER-M
  - http://qudt.org/vocab/unit/MegaV-PER-M expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MegaV-PER-M expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/constant/Value_SackurTetrodeConstant1K101.325KPa
  - http://qudt.org/vocab/constant/Value_SackurTetrodeConstant1K101.325KPa expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/quantitykind/CharacteristicNumber
  - http://qudt.org/vocab/quantitykind/CharacteristicNumber expected at most 1 uses of path qudt:plainTextDescription
  - http://qudt.org/vocab/unit/FLIGHT on http://qudt.org/vocab/quantitykind/CharacteristicNumber needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/HorizontalVelocity
  - http://qudt.org/vocab/quantitykind/HorizontalVelocity expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/YD-PER-MIN on http://qudt.org/vocab/quantitykind/HorizontalVelocity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/YD-PER-HR on http://qudt.org/vocab/quantitykind/HorizontalVelocity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MicroM-PER-MIN on http://qudt.org/vocab/quantitykind/HorizontalVelocity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/IN-PER-YR on http://qudt.org/vocab/quantitykind/HorizontalVelocity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/YD-PER-SEC on http://qudt.org/vocab/quantitykind/HorizontalVelocity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MicroM-PER-SEC on http://qudt.org/vocab/quantitykind/HorizontalVelocity needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/constant/Value_InverseMeterKilogramRelationship
  - http://qudt.org/vocab/constant/Value_InverseMeterKilogramRelationship expected at most 1 uses of path qudt:standardUncertainty
http://speckle.xyz/streams/bf7685a6aa/objects/cd5ee4fe3250236a47b977b5781df5fa
  - http://speckle.xyz/streams/bf7685a6aa/objects/e5eb69c71be84f5da9e07df2de08c8eb on http://speckle.xyz/streams/bf7685a6aa/objects/cd5ee4fe3250236a47b977b5781df5fa needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e5eb69c71be84f5da9e07df2de08c8eb on http://speckle.xyz/streams/bf7685a6aa/objects/cd5ee4fe3250236a47b977b5781df5fa needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/KiloW-HR
  - http://qudt.org/vocab/unit/KiloW-HR expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/KiloW-HR expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/SpecificImpulseByWeight
  - http://qudt.org/vocab/unit/FemtoSEC on http://qudt.org/vocab/quantitykind/SpecificImpulseByWeight needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MegaSEC on http://qudt.org/vocab/quantitykind/SpecificImpulseByWeight needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/DeciSEC on http://qudt.org/vocab/quantitykind/SpecificImpulseByWeight needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/POISE-PER-PA on http://qudt.org/vocab/quantitykind/SpecificImpulseByWeight needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/AttoSEC on http://qudt.org/vocab/quantitykind/SpecificImpulseByWeight needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/YR_Metrology on http://qudt.org/vocab/quantitykind/SpecificImpulseByWeight needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/constant/Value_TritonElectronMassRatio
  - http://qudt.org/vocab/constant/Value_TritonElectronMassRatio expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/constant/Value_AtomicUnitOfElectricDipoleMoment
  - http://qudt.org/vocab/constant/Value_AtomicUnitOfElectricDipoleMoment expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/unit/MicroMOL-PER-KiloGM
  - http://qudt.org/vocab/unit/MicroMOL-PER-KiloGM expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MicroMOL-PER-KiloGM expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/PayloadMass
  - http://qudt.org/vocab/unit/MegaTON on http://qudt.org/vocab/quantitykind/PayloadMass needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/TON on http://qudt.org/vocab/quantitykind/PayloadMass needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PFUND on http://qudt.org/vocab/quantitykind/PayloadMass needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/PayloadMass expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/MegaTONNE on http://qudt.org/vocab/quantitykind/PayloadMass needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MOMME_Pearl on http://qudt.org/vocab/quantitykind/PayloadMass needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MOMME_Textile on http://qudt.org/vocab/quantitykind/PayloadMass needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/constant/Value_AtomicUnitOfElectricQuadrupoleMoment
  - http://qudt.org/vocab/constant/Value_AtomicUnitOfElectricQuadrupoleMoment expected at most 1 uses of path qudt:standardUncertainty
http://speckle.xyz/streams/bf7685a6aa/objects/709ace815d5c44633a3a98f906336579
  - http://speckle.xyz/streams/bf7685a6aa/objects/a90357aede518899ef1628d9ac8c23f7 on http://speckle.xyz/streams/bf7685a6aa/objects/709ace815d5c44633a3a98f906336579 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/a90357aede518899ef1628d9ac8c23f7 on http://speckle.xyz/streams/bf7685a6aa/objects/709ace815d5c44633a3a98f906336579 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/W-HR-PER-M2
  - http://qudt.org/vocab/unit/W-HR-PER-M2 expected at most 1 uses of path qudt:conversionOffset
  - http://qudt.org/vocab/unit/W-HR-PER-M2 expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/BAR-PER-K
  - http://qudt.org/vocab/unit/BAR-PER-K expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/BAR-PER-K expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/Equivalent_Molar
  - http://qudt.org/vocab/unit/SCM on http://qudt.org/vocab/quantitykind/Equivalent_Molar needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MOL_LB on http://qudt.org/vocab/quantitykind/Equivalent_Molar needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/SCF on http://qudt.org/vocab/quantitykind/Equivalent_Molar needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/MagneticAreaMoment
  - http://qudt.org/vocab/quantitykind/MagneticAreaMoment expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/unit/MegaC-PER-M2
  - http://qudt.org/vocab/unit/MegaC-PER-M2 expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MegaC-PER-M2 expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/5190561c309c01955fb6ba037c57b7a0
  - http://speckle.xyz/streams/bf7685a6aa/objects/9bbb96d450ec2617aa02cc6f1b800bba on http://speckle.xyz/streams/bf7685a6aa/objects/5190561c309c01955fb6ba037c57b7a0 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/9bbb96d450ec2617aa02cc6f1b800bba on http://speckle.xyz/streams/bf7685a6aa/objects/5190561c309c01955fb6ba037c57b7a0 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/8e54f48b20a0dbcbcd2fa0d5c05fd624
  - http://speckle.xyz/streams/bf7685a6aa/objects/e5eb69c71be84f5da9e07df2de08c8eb on http://speckle.xyz/streams/bf7685a6aa/objects/8e54f48b20a0dbcbcd2fa0d5c05fd624 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e5eb69c71be84f5da9e07df2de08c8eb on http://speckle.xyz/streams/bf7685a6aa/objects/8e54f48b20a0dbcbcd2fa0d5c05fd624 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/NonActivePower
  - http://qudt.org/vocab/unit/ExaV-A on http://qudt.org/vocab/quantitykind/NonActivePower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/NonActivePower expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/GigaV-A on http://qudt.org/vocab/quantitykind/NonActivePower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PicoV-A on http://qudt.org/vocab/quantitykind/NonActivePower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliV-A on http://qudt.org/vocab/quantitykind/NonActivePower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MicroV-A on http://qudt.org/vocab/quantitykind/NonActivePower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/TeraV-A on http://qudt.org/vocab/quantitykind/NonActivePower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/NanoV-A on http://qudt.org/vocab/quantitykind/NonActivePower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PetaV-A on http://qudt.org/vocab/quantitykind/NonActivePower needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/69f55650329e405cc65818e3ab806a30
  - http://speckle.xyz/streams/bf7685a6aa/objects/e9490e3512dab7db58f40a947313427f on http://speckle.xyz/streams/bf7685a6aa/objects/69f55650329e405cc65818e3ab806a30 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e9490e3512dab7db58f40a947313427f on http://speckle.xyz/streams/bf7685a6aa/objects/69f55650329e405cc65818e3ab806a30 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/M-PER-YR
  - http://qudt.org/vocab/unit/M-PER-YR expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/M-PER-YR expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/IU-PER-L
  - http://qudt.org/vocab/unit/IU-PER-L expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/54c6609df962c0de47ef1d75878e8d67
  - http://speckle.xyz/streams/bf7685a6aa/objects/e9670962d6933d8e0a96caf59912d990 on http://speckle.xyz/streams/bf7685a6aa/objects/54c6609df962c0de47ef1d75878e8d67 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e9670962d6933d8e0a96caf59912d990 on http://speckle.xyz/streams/bf7685a6aa/objects/54c6609df962c0de47ef1d75878e8d67 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/InitialVehicleMass
  - http://qudt.org/vocab/unit/MegaTON on http://qudt.org/vocab/quantitykind/InitialVehicleMass needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/TON on http://qudt.org/vocab/quantitykind/InitialVehicleMass needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PFUND on http://qudt.org/vocab/quantitykind/InitialVehicleMass needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MegaTONNE on http://qudt.org/vocab/quantitykind/InitialVehicleMass needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MOMME_Pearl on http://qudt.org/vocab/quantitykind/InitialVehicleMass needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MOMME_Textile on http://qudt.org/vocab/quantitykind/InitialVehicleMass needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/TorquePerLength
  - http://qudt.org/vocab/unit/KiloN-M-PER-M on http://qudt.org/vocab/quantitykind/TorquePerLength needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/7f6b8aa643e5bc6bb389f5fce6c7b4b8
  - http://speckle.xyz/streams/bf7685a6aa/objects/868c1e93f5a58548b63254651d2bea10 on http://speckle.xyz/streams/bf7685a6aa/objects/7f6b8aa643e5bc6bb389f5fce6c7b4b8 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/868c1e93f5a58548b63254651d2bea10 on http://speckle.xyz/streams/bf7685a6aa/objects/7f6b8aa643e5bc6bb389f5fce6c7b4b8 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/ThermalResistance
  - http://qudt.org/vocab/unit/DEG_F-HR-PER-BTU_TH on http://qudt.org/vocab/quantitykind/ThermalResistance needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/DEG_F-SEC-PER-BTU_TH on http://qudt.org/vocab/quantitykind/ThermalResistance needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/DEG_F-SEC-PER-BTU_IT on http://qudt.org/vocab/quantitykind/ThermalResistance needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/DynamicViscosity
  - http://qudt.org/vocab/quantitykind/DynamicViscosity expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/LB-PER-FT-MIN on http://qudt.org/vocab/quantitykind/DynamicViscosity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GM-PER-CentiM-SEC on http://qudt.org/vocab/quantitykind/DynamicViscosity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/LB-PER-FT-DAY on http://qudt.org/vocab/quantitykind/DynamicViscosity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/N-SEC-PER-M2 on http://qudt.org/vocab/quantitykind/DynamicViscosity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloGM-PER-M-DAY on http://qudt.org/vocab/quantitykind/DynamicViscosity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/DecaPOISE on http://qudt.org/vocab/quantitykind/DynamicViscosity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PDL-SEC-PER-IN2 on http://qudt.org/vocab/quantitykind/DynamicViscosity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PDL-SEC-PER-FT2 on http://qudt.org/vocab/quantitykind/DynamicViscosity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloGM-PER-M-MIN on http://qudt.org/vocab/quantitykind/DynamicViscosity needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/ChemicalConsumptionPerMass
  - http://qudt.org/vocab/unit/FT3-PER-LB on http://qudt.org/vocab/quantitykind/ChemicalConsumptionPerMass needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/DeciM3-PER-KiloGM on http://qudt.org/vocab/quantitykind/ChemicalConsumptionPerMass needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/IN3-PER-LB on http://qudt.org/vocab/quantitykind/ChemicalConsumptionPerMass needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CentiM3-PER-GM on http://qudt.org/vocab/quantitykind/ChemicalConsumptionPerMass needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/unit/MicroSV
  - http://qudt.org/vocab/unit/MicroSV expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MicroSV expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/MagneticReluctivity
  - http://qudt.org/vocab/quantitykind/MagneticReluctivity expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/quantitykind/MagneticReluctivity expected at most 1 uses of path qudt:plainTextDescription
  - http://qudt.org/vocab/unit/M-PER-V-SEC on http://qudt.org/vocab/quantitykind/MagneticReluctivity needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/Slowing-DownLength
  - http://qudt.org/vocab/unit/ZOLL on http://qudt.org/vocab/quantitykind/Slowing-DownLength needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CHAIN_US on http://qudt.org/vocab/quantitykind/Slowing-DownLength needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GA_Charriere on http://qudt.org/vocab/quantitykind/Slowing-DownLength needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Slowing-DownLength expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/unit/PicoGM
  - http://qudt.org/vocab/unit/PicoGM expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/PicoGM expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/ReactorTimeConstant
  - http://qudt.org/vocab/unit/POISE-PER-PA on http://qudt.org/vocab/quantitykind/ReactorTimeConstant needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/DeciSEC on http://qudt.org/vocab/quantitykind/ReactorTimeConstant needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/YR_Metrology on http://qudt.org/vocab/quantitykind/ReactorTimeConstant needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MegaSEC on http://qudt.org/vocab/quantitykind/ReactorTimeConstant needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/AttoSEC on http://qudt.org/vocab/quantitykind/ReactorTimeConstant needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/ReactorTimeConstant expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/FemtoSEC on http://qudt.org/vocab/quantitykind/ReactorTimeConstant needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/SpecificEnergy
  - http://qudt.org/vocab/quantitykind/SpecificEnergy expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/W-HR-PER-KiloGM on http://qudt.org/vocab/quantitykind/SpecificEnergy needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/NumberDensity
  - http://qudt.org/vocab/unit/NUM-PER-MilliL on http://qudt.org/vocab/quantitykind/NumberDensity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/NumberDensity expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/constant/Value_ProtonComptonWavelength
  - http://qudt.org/vocab/constant/Value_ProtonComptonWavelength expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/unit/MicroG-PER-CentiM2
  - http://qudt.org/vocab/unit/MicroG-PER-CentiM2 expected at most 1 uses of path qudt:conversionOffset
  - http://qudt.org/vocab/unit/MicroG-PER-CentiM2 expected at most 1 uses of path qudt:conversionOffset
  - http://qudt.org/vocab/unit/MicroG-PER-CentiM2 expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MicroG-PER-CentiM2 expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/VolumetricHeatCapacity
  - http://qudt.org/vocab/unit/J-PER-CentiM3-K on http://qudt.org/vocab/quantitykind/VolumetricHeatCapacity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CAL_TH-PER-CentiM3-K on http://qudt.org/vocab/quantitykind/VolumetricHeatCapacity needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/unit/A_Ab-CentiM2
  - http://qudt.org/vocab/unit/A_Ab-CentiM2 expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/A_Ab-CentiM2 expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/MicroCanonicalPartitionFunction
  - http://qudt.org/vocab/quantitykind/MicroCanonicalPartitionFunction expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/unit/GAL_UK-PER-MIN
  - http://qudt.org/vocab/unit/GAL_UK-PER-MIN expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/GAL_UK-PER-MIN expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/Impulse
  - http://qudt.org/vocab/unit/GM-CentiM-PER-SEC on http://qudt.org/vocab/quantitykind/Impulse needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloGM-CentiM-PER-SEC on http://qudt.org/vocab/quantitykind/Impulse needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Impulse expected at most 1 uses of path qudt:plainTextDescription
  - http://qudt.org/vocab/unit/LB-FT-PER-SEC on http://qudt.org/vocab/quantitykind/Impulse needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/LB-IN-PER-SEC on http://qudt.org/vocab/quantitykind/Impulse needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/6b93270c6fa75b6b2a8f5604c9462e13
  - http://speckle.xyz/streams/bf7685a6aa/objects/e9490e3512dab7db58f40a947313427f on http://speckle.xyz/streams/bf7685a6aa/objects/6b93270c6fa75b6b2a8f5604c9462e13 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e9490e3512dab7db58f40a947313427f on http://speckle.xyz/streams/bf7685a6aa/objects/6b93270c6fa75b6b2a8f5604c9462e13 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/ElectricalPowerToMassRatio
  - http://qudt.org/vocab/unit/NanoGRAY-PER-MIN on http://qudt.org/vocab/quantitykind/ElectricalPowerToMassRatio needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliSV-PER-HR on http://qudt.org/vocab/quantitykind/ElectricalPowerToMassRatio needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MicroGRAY-PER-HR on http://qudt.org/vocab/quantitykind/ElectricalPowerToMassRatio needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliGRAY-PER-SEC on http://qudt.org/vocab/quantitykind/ElectricalPowerToMassRatio needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliGRAY-PER-MIN on http://qudt.org/vocab/quantitykind/ElectricalPowerToMassRatio needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/NanoGRAY-PER-HR on http://qudt.org/vocab/quantitykind/ElectricalPowerToMassRatio needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliSV-PER-SEC on http://qudt.org/vocab/quantitykind/ElectricalPowerToMassRatio needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/SV-PER-SEC on http://qudt.org/vocab/quantitykind/ElectricalPowerToMassRatio needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/NanoSV-PER-HR on http://qudt.org/vocab/quantitykind/ElectricalPowerToMassRatio needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MicroGRAY-PER-SEC on http://qudt.org/vocab/quantitykind/ElectricalPowerToMassRatio needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/SV-PER-HR on http://qudt.org/vocab/quantitykind/ElectricalPowerToMassRatio needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GRAY-PER-HR on http://qudt.org/vocab/quantitykind/ElectricalPowerToMassRatio needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/REM-PER-SEC on http://qudt.org/vocab/quantitykind/ElectricalPowerToMassRatio needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/NanoSV-PER-SEC on http://qudt.org/vocab/quantitykind/ElectricalPowerToMassRatio needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MicroSV-PER-SEC on http://qudt.org/vocab/quantitykind/ElectricalPowerToMassRatio needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/SV-PER-MIN on http://qudt.org/vocab/quantitykind/ElectricalPowerToMassRatio needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliSV-PER-MIN on http://qudt.org/vocab/quantitykind/ElectricalPowerToMassRatio needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/NanoSV-PER-MIN on http://qudt.org/vocab/quantitykind/ElectricalPowerToMassRatio needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliGRAY-PER-HR on http://qudt.org/vocab/quantitykind/ElectricalPowerToMassRatio needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/NanoGRAY-PER-SEC on http://qudt.org/vocab/quantitykind/ElectricalPowerToMassRatio needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MicroSV-PER-MIN on http://qudt.org/vocab/quantitykind/ElectricalPowerToMassRatio needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GRAY-PER-MIN on http://qudt.org/vocab/quantitykind/ElectricalPowerToMassRatio needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MicroGRAY-PER-MIN on http://qudt.org/vocab/quantitykind/ElectricalPowerToMassRatio needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/65c5f555be03ffb2e106b5efda8303f3
  - http://speckle.xyz/streams/bf7685a6aa/objects/9235406fdde87cb2ee62f34297961438 on http://speckle.xyz/streams/bf7685a6aa/objects/65c5f555be03ffb2e106b5efda8303f3 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/9235406fdde87cb2ee62f34297961438 on http://speckle.xyz/streams/bf7685a6aa/objects/65c5f555be03ffb2e106b5efda8303f3 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/876acf38bea12d2dbd2b62efbd9c0f69
  - http://speckle.xyz/streams/bf7685a6aa/objects/ea809d7a6106eaba6d818bfdb3e3e5b9 on http://speckle.xyz/streams/bf7685a6aa/objects/876acf38bea12d2dbd2b62efbd9c0f69 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/ea809d7a6106eaba6d818bfdb3e3e5b9 on http://speckle.xyz/streams/bf7685a6aa/objects/876acf38bea12d2dbd2b62efbd9c0f69 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/IN3
  - http://qudt.org/vocab/unit/IN3 expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/IN3 expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/SoundParticleAcceleration
  - http://qudt.org/vocab/unit/MilliM-PER-SEC2 on http://qudt.org/vocab/quantitykind/SoundParticleAcceleration needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MI_US-PER-SEC2 on http://qudt.org/vocab/quantitykind/SoundParticleAcceleration needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/YD-PER-SEC2 on http://qudt.org/vocab/quantitykind/SoundParticleAcceleration needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloM-PER-SEC2 on http://qudt.org/vocab/quantitykind/SoundParticleAcceleration needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/DonorIonizationEnergy
  - http://qudt.org/vocab/unit/PicoJ on http://qudt.org/vocab/quantitykind/DonorIonizationEnergy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/DonorIonizationEnergy expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/THERM_EC on http://qudt.org/vocab/quantitykind/DonorIonizationEnergy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/THERM_US on http://qudt.org/vocab/quantitykind/DonorIonizationEnergy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/NanoJ on http://qudt.org/vocab/quantitykind/DonorIonizationEnergy needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/f5258fc1d326964cd2d7d6c190517aff
  - http://speckle.xyz/streams/bf7685a6aa/objects/c1f8ba2020eb6468b1d37e4445924aa6 on http://speckle.xyz/streams/bf7685a6aa/objects/f5258fc1d326964cd2d7d6c190517aff needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/c1f8ba2020eb6468b1d37e4445924aa6 on http://speckle.xyz/streams/bf7685a6aa/objects/f5258fc1d326964cd2d7d6c190517aff needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/12a07396c2708012927e6cd07239147e
  - http://speckle.xyz/streams/bf7685a6aa/objects/86794e87250ef6ac1ca88b1e608e64b4 on http://speckle.xyz/streams/bf7685a6aa/objects/12a07396c2708012927e6cd07239147e needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/86794e87250ef6ac1ca88b1e608e64b4 on http://speckle.xyz/streams/bf7685a6aa/objects/12a07396c2708012927e6cd07239147e needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/MicroFARAD
  - http://qudt.org/vocab/unit/MicroFARAD expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MicroFARAD expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/StagePropellantMass
  - http://qudt.org/vocab/unit/MOMME_Pearl on http://qudt.org/vocab/quantitykind/StagePropellantMass needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MegaTONNE on http://qudt.org/vocab/quantitykind/StagePropellantMass needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MOMME_Textile on http://qudt.org/vocab/quantitykind/StagePropellantMass needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/TON on http://qudt.org/vocab/quantitykind/StagePropellantMass needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MegaTON on http://qudt.org/vocab/quantitykind/StagePropellantMass needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PFUND on http://qudt.org/vocab/quantitykind/StagePropellantMass needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/DataRate
  - http://qudt.org/vocab/unit/ExaBIT-PER-SEC on http://qudt.org/vocab/quantitykind/DataRate needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/TeraBIT-PER-SEC on http://qudt.org/vocab/quantitykind/DataRate needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PetaBIT-PER-SEC on http://qudt.org/vocab/quantitykind/DataRate needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/DataRate expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/unit/LB-PER-DAY
  - http://qudt.org/vocab/unit/LB-PER-DAY expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/LB-PER-DAY expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/e7b44bfa8f66bc727106cc5d13217e41
  - http://speckle.xyz/streams/bf7685a6aa/objects/4ba074e46be9bb3f56b99137981fb313 on http://speckle.xyz/streams/bf7685a6aa/objects/e7b44bfa8f66bc727106cc5d13217e41 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/4ba074e46be9bb3f56b99137981fb313 on http://speckle.xyz/streams/bf7685a6aa/objects/e7b44bfa8f66bc727106cc5d13217e41 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/C-PER-MilliM2
  - http://qudt.org/vocab/unit/C-PER-MilliM2 expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/C-PER-MilliM2 expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/VisibleRadiantEnergy
  - http://qudt.org/vocab/quantitykind/VisibleRadiantEnergy expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/THERM_US on http://qudt.org/vocab/quantitykind/VisibleRadiantEnergy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PicoJ on http://qudt.org/vocab/quantitykind/VisibleRadiantEnergy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/NanoJ on http://qudt.org/vocab/quantitykind/VisibleRadiantEnergy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/THERM_EC on http://qudt.org/vocab/quantitykind/VisibleRadiantEnergy needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/BandwidthLengthProduct
  - http://qudt.org/vocab/quantitykind/BandwidthLengthProduct expected at most 1 uses of path qudt:plainTextDescription
http://qudt.org/vocab/quantitykind/Magnetization
  - http://qudt.org/vocab/quantitykind/Magnetization expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/unit/MicroMOL-PER-M2-HR
  - http://qudt.org/vocab/unit/MicroMOL-PER-M2-HR expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MicroMOL-PER-M2-HR expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/HeatFlowRatePerArea
  - http://qudt.org/vocab/unit/CAL_TH-PER-CentiM2-MIN on http://qudt.org/vocab/quantitykind/HeatFlowRatePerArea needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/BTU_IT-PER-IN2-SEC on http://qudt.org/vocab/quantitykind/HeatFlowRatePerArea needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/BTU_IT-PER-FT2-SEC on http://qudt.org/vocab/quantitykind/HeatFlowRatePerArea needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/BTU_TH-PER-FT2-MIN on http://qudt.org/vocab/quantitykind/HeatFlowRatePerArea needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/BTU_TH-PER-FT2-HR on http://qudt.org/vocab/quantitykind/HeatFlowRatePerArea needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/BTU_IT-PER-FT2-HR on http://qudt.org/vocab/quantitykind/HeatFlowRatePerArea needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CAL_TH-PER-CentiM2-SEC on http://qudt.org/vocab/quantitykind/HeatFlowRatePerArea needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/NanoW-PER-M2 on http://qudt.org/vocab/quantitykind/HeatFlowRatePerArea needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/BTU_TH-PER-FT2-SEC on http://qudt.org/vocab/quantitykind/HeatFlowRatePerArea needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/M-PA-PER-SEC on http://qudt.org/vocab/quantitykind/HeatFlowRatePerArea needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/constant/Value_HertzElectronVoltRelationship
  - http://qudt.org/vocab/constant/Value_HertzElectronVoltRelationship expected at most 1 uses of path qudt:standardUncertainty
http://speckle.xyz/streams/bf7685a6aa/objects/11110d60ef1d3551f2f36f3a42c6ff19
  - http://speckle.xyz/streams/bf7685a6aa/objects/f031db8cf74c1d34f7ec9caaa44e707f on http://speckle.xyz/streams/bf7685a6aa/objects/11110d60ef1d3551f2f36f3a42c6ff19 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/f031db8cf74c1d34f7ec9caaa44e707f on http://speckle.xyz/streams/bf7685a6aa/objects/11110d60ef1d3551f2f36f3a42c6ff19 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/c5d372bb71853f44b47c6e8daaa991e0
  - http://speckle.xyz/streams/bf7685a6aa/objects/f425076ef1bc756a05acbca60a39c18d on http://speckle.xyz/streams/bf7685a6aa/objects/c5d372bb71853f44b47c6e8daaa991e0 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/f425076ef1bc756a05acbca60a39c18d on http://speckle.xyz/streams/bf7685a6aa/objects/c5d372bb71853f44b47c6e8daaa991e0 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/DEG-PER-HR
  - http://qudt.org/vocab/unit/DEG-PER-HR expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/DEG-PER-HR expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/7f0f40f8160af516f5b41ea80ec1d36f
  - http://speckle.xyz/streams/bf7685a6aa/objects/f7c769a50d39f020556ab74d468269a2 on http://speckle.xyz/streams/bf7685a6aa/objects/7f0f40f8160af516f5b41ea80ec1d36f needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/f7c769a50d39f020556ab74d468269a2 on http://speckle.xyz/streams/bf7685a6aa/objects/7f0f40f8160af516f5b41ea80ec1d36f needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/constant/Value_AtomicUnitOfElectricField
  - http://qudt.org/vocab/constant/Value_AtomicUnitOfElectricField expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/quantitykind/MolarDensity
  - http://qudt.org/vocab/quantitykind/MolarDensity expected at most 1 uses of path qudt:plainTextDescription
http://qudt.org/vocab/quantitykind/Radioactivity
  - http://qudt.org/vocab/quantitykind/Radioactivity expected at most 1 uses of path qudt:plainTextDescription
http://qudt.org/vocab/unit/LB
  - http://qudt.org/vocab/unit/LB expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/unit/GigaEV
  - http://qudt.org/vocab/unit/GigaEV expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/GigaEV expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/constant/Value_ElectronMolarMass
  - http://qudt.org/vocab/constant/Value_ElectronMolarMass expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/quantitykind/LinearStrain
  - http://qudt.org/vocab/unit/PPT on http://qudt.org/vocab/quantitykind/LinearStrain needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/LinearStrain expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/PPQ on http://qudt.org/vocab/quantitykind/LinearStrain needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/unit/C-PER-MilliM3
  - http://qudt.org/vocab/unit/C-PER-MilliM3 expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/C-PER-MilliM3 expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/eebe3e5e679acd324f912a800ef6943c
  - http://speckle.xyz/streams/bf7685a6aa/objects/673296ef20285eecee055d8eeed2acd0 on http://speckle.xyz/streams/bf7685a6aa/objects/eebe3e5e679acd324f912a800ef6943c needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/673296ef20285eecee055d8eeed2acd0 on http://speckle.xyz/streams/bf7685a6aa/objects/eebe3e5e679acd324f912a800ef6943c needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/MaximumOperatingPressure
  - http://qudt.org/vocab/unit/IN_H2O_39dot2DEG_F on http://qudt.org/vocab/quantitykind/MaximumOperatingPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/IN_H2O_60DEG_F on http://qudt.org/vocab/quantitykind/MaximumOperatingPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/IN_HG_32DEG_F on http://qudt.org/vocab/quantitykind/MaximumOperatingPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/M_H2O on http://qudt.org/vocab/quantitykind/MaximumOperatingPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CentiM_H2O_4DEG_C on http://qudt.org/vocab/quantitykind/MaximumOperatingPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PDL-PER-IN2 on http://qudt.org/vocab/quantitykind/MaximumOperatingPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/IN_HG_60DEG_F on http://qudt.org/vocab/quantitykind/MaximumOperatingPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/FT_H2O_39dot2DEG_F on http://qudt.org/vocab/quantitykind/MaximumOperatingPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloN-PER-M2 on http://qudt.org/vocab/quantitykind/MaximumOperatingPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CentiM_HG_0DEG_C on http://qudt.org/vocab/quantitykind/MaximumOperatingPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CentiM_H20_4DEG_C on http://qudt.org/vocab/quantitykind/MaximumOperatingPressure needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/RadiantEmmitance
  - http://qudt.org/vocab/unit/BTU_TH-PER-FT2-MIN on http://qudt.org/vocab/quantitykind/RadiantEmmitance needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/BTU_IT-PER-FT2-HR on http://qudt.org/vocab/quantitykind/RadiantEmmitance needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/NanoW-PER-M2 on http://qudt.org/vocab/quantitykind/RadiantEmmitance needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CAL_TH-PER-CentiM2-MIN on http://qudt.org/vocab/quantitykind/RadiantEmmitance needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/BTU_IT-PER-FT2-SEC on http://qudt.org/vocab/quantitykind/RadiantEmmitance needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/BTU_TH-PER-FT2-SEC on http://qudt.org/vocab/quantitykind/RadiantEmmitance needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CAL_TH-PER-CentiM2-SEC on http://qudt.org/vocab/quantitykind/RadiantEmmitance needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/BTU_TH-PER-FT2-HR on http://qudt.org/vocab/quantitykind/RadiantEmmitance needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/M-PA-PER-SEC on http://qudt.org/vocab/quantitykind/RadiantEmmitance needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/RadiantEmmitance expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/BTU_IT-PER-IN2-SEC on http://qudt.org/vocab/quantitykind/RadiantEmmitance needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/LuminousFluxRatio
  - http://qudt.org/vocab/unit/PPT on http://qudt.org/vocab/quantitykind/LuminousFluxRatio needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PPQ on http://qudt.org/vocab/quantitykind/LuminousFluxRatio needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/LuminousFluxRatio expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/3d01bf764d0054bed3b076a5fa7a53a0
  - http://speckle.xyz/streams/bf7685a6aa/objects/e8e61103cdf42e0fd7b5f6b6301376d0 on http://speckle.xyz/streams/bf7685a6aa/objects/3d01bf764d0054bed3b076a5fa7a53a0 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e8e61103cdf42e0fd7b5f6b6301376d0 on http://speckle.xyz/streams/bf7685a6aa/objects/3d01bf764d0054bed3b076a5fa7a53a0 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/a5c84c94ec35a2b79379f4be6128f175
  - http://speckle.xyz/streams/bf7685a6aa/objects/f7c769a50d39f020556ab74d468269a2 on http://speckle.xyz/streams/bf7685a6aa/objects/a5c84c94ec35a2b79379f4be6128f175 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/f7c769a50d39f020556ab74d468269a2 on http://speckle.xyz/streams/bf7685a6aa/objects/a5c84c94ec35a2b79379f4be6128f175 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/2378d88efdb174052c9b1fe558526c22
  - http://speckle.xyz/streams/bf7685a6aa/objects/5aa8dbce5ed730aeaaab18a2c23b2dae on http://speckle.xyz/streams/bf7685a6aa/objects/2378d88efdb174052c9b1fe558526c22 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/5aa8dbce5ed730aeaaab18a2c23b2dae on http://speckle.xyz/streams/bf7685a6aa/objects/2378d88efdb174052c9b1fe558526c22 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/0ca1a5ed622dca57f5e99fa6ff77d472
  - http://speckle.xyz/streams/bf7685a6aa/objects/5aa8dbce5ed730aeaaab18a2c23b2dae on http://speckle.xyz/streams/bf7685a6aa/objects/0ca1a5ed622dca57f5e99fa6ff77d472 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/5aa8dbce5ed730aeaaab18a2c23b2dae on http://speckle.xyz/streams/bf7685a6aa/objects/0ca1a5ed622dca57f5e99fa6ff77d472 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/StressOpticCoefficient
  - http://qudt.org/vocab/unit/BREWSTER on http://qudt.org/vocab/quantitykind/StressOpticCoefficient needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/StressOpticCoefficient expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/PER-MegaPA on http://qudt.org/vocab/quantitykind/StressOpticCoefficient needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/1d3df9770f2befb47604efaafbab343f
  - http://speckle.xyz/streams/bf7685a6aa/objects/06c67bfcd6d2f5b575f38dba0f51b672 on http://speckle.xyz/streams/bf7685a6aa/objects/1d3df9770f2befb47604efaafbab343f needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/06c67bfcd6d2f5b575f38dba0f51b672 on http://speckle.xyz/streams/bf7685a6aa/objects/1d3df9770f2befb47604efaafbab343f needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/Friction
  - http://qudt.org/vocab/quantitykind/Friction expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/P on http://qudt.org/vocab/quantitykind/Friction needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/POND on http://qudt.org/vocab/quantitykind/Friction needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloGM-M-PER-SEC2 on http://qudt.org/vocab/quantitykind/Friction needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/f2f37aa1dc17538ca7975d21da4b0880
  - http://speckle.xyz/streams/bf7685a6aa/objects/0849cbae1dcd58718497524998b3bd30 on http://speckle.xyz/streams/bf7685a6aa/objects/f2f37aa1dc17538ca7975d21da4b0880 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/0849cbae1dcd58718497524998b3bd30 on http://speckle.xyz/streams/bf7685a6aa/objects/f2f37aa1dc17538ca7975d21da4b0880 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/CentiST
  - http://qudt.org/vocab/unit/CentiST expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/CentiST expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/PlanckArea
  - http://qudt.org/vocab/unit/PlanckArea expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/PlanckArea expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/PlanckArea expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/176a50b57e62cbddcff6e68074ee47e9
  - http://speckle.xyz/streams/bf7685a6aa/objects/99404186dbba0f4f7f1398f8aa74f39f on http://speckle.xyz/streams/bf7685a6aa/objects/176a50b57e62cbddcff6e68074ee47e9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/99404186dbba0f4f7f1398f8aa74f39f on http://speckle.xyz/streams/bf7685a6aa/objects/176a50b57e62cbddcff6e68074ee47e9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/77e326b2473f693eb6156046dbaed9fc
  - http://speckle.xyz/streams/bf7685a6aa/objects/2bab3a834da573d903244a9902f78aa1 on http://speckle.xyz/streams/bf7685a6aa/objects/77e326b2473f693eb6156046dbaed9fc needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/2bab3a834da573d903244a9902f78aa1 on http://speckle.xyz/streams/bf7685a6aa/objects/77e326b2473f693eb6156046dbaed9fc needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/MegaV
  - http://qudt.org/vocab/unit/MegaV expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MegaV expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/Mobility
  - http://qudt.org/vocab/unit/CentiM2-PER-V-SEC on http://qudt.org/vocab/quantitykind/Mobility needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Mobility expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/unit/MilliGM-PER-M3
  - http://qudt.org/vocab/unit/MilliGM-PER-M3 expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MilliGM-PER-M3 expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/ByteDataVolume
  - http://qudt.org/vocab/quantitykind/ByteDataVolume expected at most 1 uses of path qudt:plainTextDescription
http://qudt.org/vocab/unit/PK_UK-PER-HR
  - http://qudt.org/vocab/unit/PK_UK-PER-HR expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/PK_UK-PER-HR expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/CentiM3-PER-HR
  - http://qudt.org/vocab/unit/CentiM3-PER-HR expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/CentiM3-PER-HR expected at most 1 uses of path qudt:plainTextDescription
  - http://qudt.org/vocab/unit/CentiM3-PER-HR expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/878c1a00e7ad30d53c7a7e273f11675f
  - http://speckle.xyz/streams/bf7685a6aa/objects/2bab3a834da573d903244a9902f78aa1 on http://speckle.xyz/streams/bf7685a6aa/objects/878c1a00e7ad30d53c7a7e273f11675f needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/2bab3a834da573d903244a9902f78aa1 on http://speckle.xyz/streams/bf7685a6aa/objects/878c1a00e7ad30d53c7a7e273f11675f needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/MilliMOL-PER-M2-DAY
  - http://qudt.org/vocab/unit/MilliMOL-PER-M2-DAY expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MilliMOL-PER-M2-DAY expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/MicroGM
  - http://qudt.org/vocab/unit/MicroGM expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MicroGM expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/constant/GravitationalConstant
  - http://qudt.org/vocab/constant/GravitationalConstant expected at most 1 uses of path qudt:plainTextDescription
http://qudt.org/vocab/unit/OZ_VOL_US-PER-HR
  - http://qudt.org/vocab/unit/OZ_VOL_US-PER-HR expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/OZ_VOL_US-PER-HR expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/GigaW-HR
  - http://qudt.org/vocab/unit/GigaW-HR expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/GigaW-HR expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/TSP
  - http://qudt.org/vocab/unit/TSP expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/TSP expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/H_Ab
  - http://qudt.org/vocab/unit/H_Ab expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/H_Ab expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/de59e6d8c6caac529f84091be0cef29c
  - http://speckle.xyz/streams/bf7685a6aa/objects/03183bd47ce710193f9d15449df4add8 on http://speckle.xyz/streams/bf7685a6aa/objects/de59e6d8c6caac529f84091be0cef29c needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/03183bd47ce710193f9d15449df4add8 on http://speckle.xyz/streams/bf7685a6aa/objects/de59e6d8c6caac529f84091be0cef29c needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/9fa7bde1b313c9598c2e57218a0020c0
  - http://speckle.xyz/streams/bf7685a6aa/objects/c1e7bac9cc9cff56ce6fff37c81afd27 on http://speckle.xyz/streams/bf7685a6aa/objects/9fa7bde1b313c9598c2e57218a0020c0 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/c1e7bac9cc9cff56ce6fff37c81afd27 on http://speckle.xyz/streams/bf7685a6aa/objects/9fa7bde1b313c9598c2e57218a0020c0 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/SoundReductionIndex
  - http://qudt.org/vocab/quantitykind/SoundReductionIndex expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/DeciB_A on http://qudt.org/vocab/quantitykind/SoundReductionIndex needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/DeciB_Z on http://qudt.org/vocab/quantitykind/SoundReductionIndex needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/DeciB_ISO on http://qudt.org/vocab/quantitykind/SoundReductionIndex needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/LinearVelocity
  - http://qudt.org/vocab/unit/YD-PER-HR on http://qudt.org/vocab/quantitykind/LinearVelocity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/YD-PER-MIN on http://qudt.org/vocab/quantitykind/LinearVelocity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MicroM-PER-MIN on http://qudt.org/vocab/quantitykind/LinearVelocity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MicroM-PER-SEC on http://qudt.org/vocab/quantitykind/LinearVelocity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/IN-PER-YR on http://qudt.org/vocab/quantitykind/LinearVelocity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/YD-PER-SEC on http://qudt.org/vocab/quantitykind/LinearVelocity needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/144ce5e429c2d05cacd1d80f2b7f6ea3
  - http://speckle.xyz/streams/bf7685a6aa/objects/5751a7a8490e489a1a00976905f9b01b on http://speckle.xyz/streams/bf7685a6aa/objects/144ce5e429c2d05cacd1d80f2b7f6ea3 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/5751a7a8490e489a1a00976905f9b01b on http://speckle.xyz/streams/bf7685a6aa/objects/144ce5e429c2d05cacd1d80f2b7f6ea3 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T-2D0
  - http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T-2D0 expected at most 1 uses of path qudt:latexDefinition
http://qudt.org/vocab/quantitykind/SpecificPower
  - http://qudt.org/vocab/unit/GRAY-PER-MIN on http://qudt.org/vocab/quantitykind/SpecificPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MicroGRAY-PER-MIN on http://qudt.org/vocab/quantitykind/SpecificPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MicroSV-PER-MIN on http://qudt.org/vocab/quantitykind/SpecificPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/NanoSV-PER-SEC on http://qudt.org/vocab/quantitykind/SpecificPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliGRAY-PER-HR on http://qudt.org/vocab/quantitykind/SpecificPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MicroGRAY-PER-HR on http://qudt.org/vocab/quantitykind/SpecificPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliSV-PER-SEC on http://qudt.org/vocab/quantitykind/SpecificPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/NanoSV-PER-MIN on http://qudt.org/vocab/quantitykind/SpecificPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GRAY-PER-HR on http://qudt.org/vocab/quantitykind/SpecificPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliGRAY-PER-SEC on http://qudt.org/vocab/quantitykind/SpecificPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/NanoGRAY-PER-HR on http://qudt.org/vocab/quantitykind/SpecificPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/NanoGRAY-PER-MIN on http://qudt.org/vocab/quantitykind/SpecificPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MicroSV-PER-SEC on http://qudt.org/vocab/quantitykind/SpecificPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/NanoSV-PER-HR on http://qudt.org/vocab/quantitykind/SpecificPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MicroGRAY-PER-SEC on http://qudt.org/vocab/quantitykind/SpecificPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/SV-PER-SEC on http://qudt.org/vocab/quantitykind/SpecificPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliSV-PER-HR on http://qudt.org/vocab/quantitykind/SpecificPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliGRAY-PER-MIN on http://qudt.org/vocab/quantitykind/SpecificPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/REM-PER-SEC on http://qudt.org/vocab/quantitykind/SpecificPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/SV-PER-HR on http://qudt.org/vocab/quantitykind/SpecificPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/SV-PER-MIN on http://qudt.org/vocab/quantitykind/SpecificPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliSV-PER-MIN on http://qudt.org/vocab/quantitykind/SpecificPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/SpecificPower expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/NanoGRAY-PER-SEC on http://qudt.org/vocab/quantitykind/SpecificPower needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/f678e1f0ce4733698da58a5414146b2f
  - http://speckle.xyz/streams/bf7685a6aa/objects/16c0ff093fe0cf359342709f754806e1 on http://speckle.xyz/streams/bf7685a6aa/objects/f678e1f0ce4733698da58a5414146b2f needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/16c0ff093fe0cf359342709f754806e1 on http://speckle.xyz/streams/bf7685a6aa/objects/f678e1f0ce4733698da58a5414146b2f needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/GravitationalAttraction
  - http://qudt.org/vocab/quantitykind/GravitationalAttraction expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/KiloGM-M-PER-SEC2 on http://qudt.org/vocab/quantitykind/GravitationalAttraction needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/POND on http://qudt.org/vocab/quantitykind/GravitationalAttraction needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/P on http://qudt.org/vocab/quantitykind/GravitationalAttraction needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/HeartRate
  - http://qudt.org/vocab/quantitykind/HeartRate expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/Half-Life
  - http://qudt.org/vocab/unit/FemtoSEC on http://qudt.org/vocab/quantitykind/Half-Life needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/AttoSEC on http://qudt.org/vocab/quantitykind/Half-Life needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/DeciSEC on http://qudt.org/vocab/quantitykind/Half-Life needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/YR_Metrology on http://qudt.org/vocab/quantitykind/Half-Life needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MegaSEC on http://qudt.org/vocab/quantitykind/Half-Life needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/POISE-PER-PA on http://qudt.org/vocab/quantitykind/Half-Life needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Half-Life expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/unit/A-PER-MilliM2
  - http://qudt.org/vocab/unit/A-PER-MilliM2 expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/A-PER-MilliM2 expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/2b8a52770d9a7d72786569477aaa7b72
  - http://speckle.xyz/streams/bf7685a6aa/objects/39585c6ef6b03b8dbb18fb8a3bed20a3 on http://speckle.xyz/streams/bf7685a6aa/objects/2b8a52770d9a7d72786569477aaa7b72 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/39585c6ef6b03b8dbb18fb8a3bed20a3 on http://speckle.xyz/streams/bf7685a6aa/objects/2b8a52770d9a7d72786569477aaa7b72 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/SoundPressure
  - http://qudt.org/vocab/unit/IN_H2O_39dot2DEG_F on http://qudt.org/vocab/quantitykind/SoundPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CentiM_H20_4DEG_C on http://qudt.org/vocab/quantitykind/SoundPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/M_H2O on http://qudt.org/vocab/quantitykind/SoundPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/IN_H2O_60DEG_F on http://qudt.org/vocab/quantitykind/SoundPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/FT_H2O_39dot2DEG_F on http://qudt.org/vocab/quantitykind/SoundPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloN-PER-M2 on http://qudt.org/vocab/quantitykind/SoundPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/SoundPressure expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/CentiM_H2O_4DEG_C on http://qudt.org/vocab/quantitykind/SoundPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/IN_HG_32DEG_F on http://qudt.org/vocab/quantitykind/SoundPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/IN_HG_60DEG_F on http://qudt.org/vocab/quantitykind/SoundPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CentiM_HG_0DEG_C on http://qudt.org/vocab/quantitykind/SoundPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PDL-PER-IN2 on http://qudt.org/vocab/quantitykind/SoundPressure needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/unit/PA-PER-BAR
  - http://qudt.org/vocab/unit/PA-PER-BAR expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/PA-PER-BAR expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/MassPerEnergy
  - http://qudt.org/vocab/unit/MilliGM-PER-M3-BAR on http://qudt.org/vocab/quantitykind/MassPerEnergy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloGM-PER-CentiM3-BAR on http://qudt.org/vocab/quantitykind/MassPerEnergy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/LB-PER-FT3-PSI on http://qudt.org/vocab/quantitykind/MassPerEnergy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/TONNE-PER-M3-BAR on http://qudt.org/vocab/quantitykind/MassPerEnergy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GM-PER-CentiM3-BAR on http://qudt.org/vocab/quantitykind/MassPerEnergy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GM-PER-MilliL-BAR on http://qudt.org/vocab/quantitykind/MassPerEnergy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/LB-PER-IN3-PSI on http://qudt.org/vocab/quantitykind/MassPerEnergy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloGM-PER-L-BAR on http://qudt.org/vocab/quantitykind/MassPerEnergy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloGM-PER-DeciM3-BAR on http://qudt.org/vocab/quantitykind/MassPerEnergy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloGM-PER-M3-BAR on http://qudt.org/vocab/quantitykind/MassPerEnergy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MicroGM-PER-M3-BAR on http://qudt.org/vocab/quantitykind/MassPerEnergy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GM-PER-M3-BAR on http://qudt.org/vocab/quantitykind/MassPerEnergy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GM-PER-DeciM3-BAR on http://qudt.org/vocab/quantitykind/MassPerEnergy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GM-PER-L-BAR on http://qudt.org/vocab/quantitykind/MassPerEnergy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloGM-PER-M3-PA on http://qudt.org/vocab/quantitykind/MassPerEnergy needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/KinematicViscosityOrDiffusionConstantOrThermalDiffusivity
  - http://qudt.org/vocab/quantitykind/KinematicViscosityOrDiffusionConstantOrThermalDiffusivity expected at most 1 uses of path qudt:plainTextDescription
http://qudt.org/vocab/dimensionvector/A0E-1L2I0M1H0T-2D0
  - http://qudt.org/vocab/dimensionvector/A0E-1L2I0M1H0T-2D0 expected at most 1 uses of path qudt:latexDefinition
http://qudt.org/vocab/quantitykind/ExitPlanePressure
  - http://qudt.org/vocab/unit/FT_H2O_39dot2DEG_F on http://qudt.org/vocab/quantitykind/ExitPlanePressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/IN_H2O_39dot2DEG_F on http://qudt.org/vocab/quantitykind/ExitPlanePressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/IN_HG_60DEG_F on http://qudt.org/vocab/quantitykind/ExitPlanePressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/M_H2O on http://qudt.org/vocab/quantitykind/ExitPlanePressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CentiM_HG_0DEG_C on http://qudt.org/vocab/quantitykind/ExitPlanePressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/IN_HG_32DEG_F on http://qudt.org/vocab/quantitykind/ExitPlanePressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PDL-PER-IN2 on http://qudt.org/vocab/quantitykind/ExitPlanePressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CentiM_H20_4DEG_C on http://qudt.org/vocab/quantitykind/ExitPlanePressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloN-PER-M2 on http://qudt.org/vocab/quantitykind/ExitPlanePressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CentiM_H2O_4DEG_C on http://qudt.org/vocab/quantitykind/ExitPlanePressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/IN_H2O_60DEG_F on http://qudt.org/vocab/quantitykind/ExitPlanePressure needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/4657bac152a7ce915d18301ce91babce
  - http://speckle.xyz/streams/bf7685a6aa/objects/416e54a4b145034d01f2f05617c72569 on http://speckle.xyz/streams/bf7685a6aa/objects/4657bac152a7ce915d18301ce91babce needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/416e54a4b145034d01f2f05617c72569 on http://speckle.xyz/streams/bf7685a6aa/objects/4657bac152a7ce915d18301ce91babce needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/NonNegativeLength
  - http://qudt.org/vocab/quantitykind/NonNegativeLength expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/GA_Charriere on http://qudt.org/vocab/quantitykind/NonNegativeLength needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/ZOLL on http://qudt.org/vocab/quantitykind/NonNegativeLength needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CHAIN_US on http://qudt.org/vocab/quantitykind/NonNegativeLength needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/AreicHeatFlowRate
  - http://qudt.org/vocab/unit/BTU_IT-PER-FT2-SEC on http://qudt.org/vocab/quantitykind/AreicHeatFlowRate needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/BTU_TH-PER-FT2-SEC on http://qudt.org/vocab/quantitykind/AreicHeatFlowRate needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/AreicHeatFlowRate expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/BTU_IT-PER-IN2-SEC on http://qudt.org/vocab/quantitykind/AreicHeatFlowRate needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/BTU_IT-PER-FT2-HR on http://qudt.org/vocab/quantitykind/AreicHeatFlowRate needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/BTU_TH-PER-FT2-HR on http://qudt.org/vocab/quantitykind/AreicHeatFlowRate needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/BTU_TH-PER-FT2-MIN on http://qudt.org/vocab/quantitykind/AreicHeatFlowRate needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CAL_TH-PER-CentiM2-SEC on http://qudt.org/vocab/quantitykind/AreicHeatFlowRate needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CAL_TH-PER-CentiM2-MIN on http://qudt.org/vocab/quantitykind/AreicHeatFlowRate needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/NanoW-PER-M2 on http://qudt.org/vocab/quantitykind/AreicHeatFlowRate needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/M-PA-PER-SEC on http://qudt.org/vocab/quantitykind/AreicHeatFlowRate needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/02f892239d7aca746203b66e17e80ba2
  - http://speckle.xyz/streams/bf7685a6aa/objects/5556cde6660a613e241f1da37e548290 on http://speckle.xyz/streams/bf7685a6aa/objects/02f892239d7aca746203b66e17e80ba2 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/5556cde6660a613e241f1da37e548290 on http://speckle.xyz/streams/bf7685a6aa/objects/02f892239d7aca746203b66e17e80ba2 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/MicroSEC
  - http://qudt.org/vocab/unit/MicroSEC expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MicroSEC expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/TARGET-BOGIE-MASS
  - http://qudt.org/vocab/unit/MOMME_Pearl on http://qudt.org/vocab/quantitykind/TARGET-BOGIE-MASS needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PFUND on http://qudt.org/vocab/quantitykind/TARGET-BOGIE-MASS needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MegaTONNE on http://qudt.org/vocab/quantitykind/TARGET-BOGIE-MASS needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MegaTON on http://qudt.org/vocab/quantitykind/TARGET-BOGIE-MASS needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/TON on http://qudt.org/vocab/quantitykind/TARGET-BOGIE-MASS needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/TARGET-BOGIE-MASS expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/MOMME_Textile on http://qudt.org/vocab/quantitykind/TARGET-BOGIE-MASS needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/unit/PicoMOL-PER-M2-DAY
  - http://qudt.org/vocab/unit/PicoMOL-PER-M2-DAY expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/PicoMOL-PER-M2-DAY expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/70a1bf824fd8f0cd243e09ae097eab4b
  - http://speckle.xyz/streams/bf7685a6aa/objects/e2c2fcb66699bae88ba79c422b644168 on http://speckle.xyz/streams/bf7685a6aa/objects/70a1bf824fd8f0cd243e09ae097eab4b needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e2c2fcb66699bae88ba79c422b644168 on http://speckle.xyz/streams/bf7685a6aa/objects/70a1bf824fd8f0cd243e09ae097eab4b needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H-4T-3D0
  - http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H-4T-3D0 expected at most 1 uses of path qudt:latexDefinition
http://speckle.xyz/streams/bf7685a6aa/objects/9fff42f308a8c6e92363bafc2813022a
  - http://speckle.xyz/streams/bf7685a6aa/objects/af1446d067d1a6d619cec36730b3234c on http://speckle.xyz/streams/bf7685a6aa/objects/9fff42f308a8c6e92363bafc2813022a needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/af1446d067d1a6d619cec36730b3234c on http://speckle.xyz/streams/bf7685a6aa/objects/9fff42f308a8c6e92363bafc2813022a needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/FT-PER-HR
  - http://qudt.org/vocab/unit/FT-PER-HR expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/FT-PER-HR expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/MeltingPoint
  - http://qudt.org/vocab/quantitykind/MeltingPoint expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/Work
  - http://qudt.org/vocab/unit/THERM_US on http://qudt.org/vocab/quantitykind/Work needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/THERM_EC on http://qudt.org/vocab/quantitykind/Work needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Work expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/NanoJ on http://qudt.org/vocab/quantitykind/Work needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PicoJ on http://qudt.org/vocab/quantitykind/Work needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/unit/PlanckVolume
  - http://qudt.org/vocab/unit/PlanckVolume expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/SurfaceRelatedVolumeFlow
  - http://qudt.org/vocab/unit/M3-PER-HA-YR on http://qudt.org/vocab/quantitykind/SurfaceRelatedVolumeFlow needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/SurfaceRelatedVolumeFlow expected at most 1 uses of path qudt:plainTextDescription
http://speckle.xyz/streams/bf7685a6aa/objects/03a39c403f37b812c13fa9c2f0c339d9
  - http://speckle.xyz/streams/bf7685a6aa/objects/9d0351d65cbbdcd5c9dfed6220ed3795 on http://speckle.xyz/streams/bf7685a6aa/objects/03a39c403f37b812c13fa9c2f0c339d9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/9d0351d65cbbdcd5c9dfed6220ed3795 on http://speckle.xyz/streams/bf7685a6aa/objects/03a39c403f37b812c13fa9c2f0c339d9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/PT
  - http://qudt.org/vocab/unit/PT expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/PT expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/aff18b9a6e1dec8c69d7a405d0292c9e
  - http://speckle.xyz/streams/bf7685a6aa/objects/9bbb96d450ec2617aa02cc6f1b800bba on http://speckle.xyz/streams/bf7685a6aa/objects/aff18b9a6e1dec8c69d7a405d0292c9e needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/9bbb96d450ec2617aa02cc6f1b800bba on http://speckle.xyz/streams/bf7685a6aa/objects/aff18b9a6e1dec8c69d7a405d0292c9e needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/constant/Value_KilogramKelvinRelationship
  - http://qudt.org/vocab/constant/Value_KilogramKelvinRelationship expected at most 1 uses of path qudt:standardUncertainty
http://speckle.xyz/streams/bf7685a6aa/objects/0fe591cba2995ef3aba5202be5e037cc
  - http://speckle.xyz/streams/bf7685a6aa/objects/bd4c1bbaf855ba85dd10beedc3c5f7f4 on http://speckle.xyz/streams/bf7685a6aa/objects/0fe591cba2995ef3aba5202be5e037cc needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/bd4c1bbaf855ba85dd10beedc3c5f7f4 on http://speckle.xyz/streams/bf7685a6aa/objects/0fe591cba2995ef3aba5202be5e037cc needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/ceb497fc1294904cf468aa2ffad4bbf7
  - http://speckle.xyz/streams/bf7685a6aa/objects/90503bd239890ecb4ef6f29e5898c47b on http://speckle.xyz/streams/bf7685a6aa/objects/ceb497fc1294904cf468aa2ffad4bbf7 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/90503bd239890ecb4ef6f29e5898c47b on http://speckle.xyz/streams/bf7685a6aa/objects/ceb497fc1294904cf468aa2ffad4bbf7 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/AreicEnergyFlow
  - http://qudt.org/vocab/unit/BTU_IT-PER-IN2-SEC on http://qudt.org/vocab/quantitykind/AreicEnergyFlow needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/BTU_TH-PER-FT2-SEC on http://qudt.org/vocab/quantitykind/AreicEnergyFlow needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/BTU_TH-PER-FT2-MIN on http://qudt.org/vocab/quantitykind/AreicEnergyFlow needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/BTU_IT-PER-FT2-SEC on http://qudt.org/vocab/quantitykind/AreicEnergyFlow needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/NanoW-PER-M2 on http://qudt.org/vocab/quantitykind/AreicEnergyFlow needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/BTU_IT-PER-FT2-HR on http://qudt.org/vocab/quantitykind/AreicEnergyFlow needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CAL_TH-PER-CentiM2-MIN on http://qudt.org/vocab/quantitykind/AreicEnergyFlow needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/BTU_TH-PER-FT2-HR on http://qudt.org/vocab/quantitykind/AreicEnergyFlow needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/M-PA-PER-SEC on http://qudt.org/vocab/quantitykind/AreicEnergyFlow needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/AreicEnergyFlow expected at most 1 uses of path qudt:plainTextDescription
  - http://qudt.org/vocab/unit/CAL_TH-PER-CentiM2-SEC on http://qudt.org/vocab/quantitykind/AreicEnergyFlow needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/708e5a1faf1d4f6cf3979a64c852af19
  - http://speckle.xyz/streams/bf7685a6aa/objects/22ee737a989391acee4ea60354e91210 on http://speckle.xyz/streams/bf7685a6aa/objects/708e5a1faf1d4f6cf3979a64c852af19 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/22ee737a989391acee4ea60354e91210 on http://speckle.xyz/streams/bf7685a6aa/objects/708e5a1faf1d4f6cf3979a64c852af19 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/KiloCAL-PER-CentiM2
  - http://qudt.org/vocab/unit/KiloCAL-PER-CentiM2 expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/KiloCAL-PER-CentiM2 expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/CAL_TH-PER-GM
  - http://qudt.org/vocab/unit/CAL_TH-PER-GM expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/AtomicAttenuationCoefficient
  - http://qudt.org/vocab/quantitykind/AtomicAttenuationCoefficient expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/KiloM2 on http://qudt.org/vocab/quantitykind/AtomicAttenuationCoefficient needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MI_US2 on http://qudt.org/vocab/quantitykind/AtomicAttenuationCoefficient needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloMIL_Circ on http://qudt.org/vocab/quantitykind/AtomicAttenuationCoefficient needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/Slowing-DownArea
  - http://qudt.org/vocab/unit/KiloMIL_Circ on http://qudt.org/vocab/quantitykind/Slowing-DownArea needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Slowing-DownArea expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/MI_US2 on http://qudt.org/vocab/quantitykind/Slowing-DownArea needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloM2 on http://qudt.org/vocab/quantitykind/Slowing-DownArea needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/MolarConductivity
  - http://qudt.org/vocab/quantitykind/MolarConductivity expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/unit/PPB
  - http://qudt.org/vocab/unit/PPB expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/PPB expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/Viscosity
  - http://qudt.org/vocab/unit/DecaPOISE on http://qudt.org/vocab/quantitykind/Viscosity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PDL-SEC-PER-FT2 on http://qudt.org/vocab/quantitykind/Viscosity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloGM-PER-M-DAY on http://qudt.org/vocab/quantitykind/Viscosity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PDL-SEC-PER-IN2 on http://qudt.org/vocab/quantitykind/Viscosity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GM-PER-CentiM-SEC on http://qudt.org/vocab/quantitykind/Viscosity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/LB-PER-FT-MIN on http://qudt.org/vocab/quantitykind/Viscosity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/N-SEC-PER-M2 on http://qudt.org/vocab/quantitykind/Viscosity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/LB-PER-FT-DAY on http://qudt.org/vocab/quantitykind/Viscosity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Viscosity expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/KiloGM-PER-M-MIN on http://qudt.org/vocab/quantitykind/Viscosity needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/TimeAveragedSoundIntensity
  - http://qudt.org/vocab/unit/BTU_IT-PER-IN2-SEC on http://qudt.org/vocab/quantitykind/TimeAveragedSoundIntensity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CAL_TH-PER-CentiM2-MIN on http://qudt.org/vocab/quantitykind/TimeAveragedSoundIntensity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/NanoW-PER-M2 on http://qudt.org/vocab/quantitykind/TimeAveragedSoundIntensity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/TimeAveragedSoundIntensity expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/BTU_IT-PER-FT2-HR on http://qudt.org/vocab/quantitykind/TimeAveragedSoundIntensity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/BTU_TH-PER-FT2-HR on http://qudt.org/vocab/quantitykind/TimeAveragedSoundIntensity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/BTU_IT-PER-FT2-SEC on http://qudt.org/vocab/quantitykind/TimeAveragedSoundIntensity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/BTU_TH-PER-FT2-MIN on http://qudt.org/vocab/quantitykind/TimeAveragedSoundIntensity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CAL_TH-PER-CentiM2-SEC on http://qudt.org/vocab/quantitykind/TimeAveragedSoundIntensity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/BTU_TH-PER-FT2-SEC on http://qudt.org/vocab/quantitykind/TimeAveragedSoundIntensity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/M-PA-PER-SEC on http://qudt.org/vocab/quantitykind/TimeAveragedSoundIntensity needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/unit/C_Stat-PER-CentiM2
  - http://qudt.org/vocab/unit/C_Stat-PER-CentiM2 expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/C_Stat-PER-CentiM2 expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/RadiantEnergy
  - http://qudt.org/vocab/unit/THERM_US on http://qudt.org/vocab/quantitykind/RadiantEnergy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/NanoJ on http://qudt.org/vocab/quantitykind/RadiantEnergy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PicoJ on http://qudt.org/vocab/quantitykind/RadiantEnergy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/THERM_EC on http://qudt.org/vocab/quantitykind/RadiantEnergy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/RadiantEnergy expected at most 1 uses of path qudt:plainTextDescription
  - http://qudt.org/vocab/quantitykind/RadiantEnergy expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/dimensionvector/A0E0L-2I0M0H0T2D0
  - http://qudt.org/vocab/dimensionvector/A0E0L-2I0M0H0T2D0 expected at most 1 uses of path qudt:latexDefinition
http://qudt.org/vocab/constant/Value_JouleAtomicMassUnitRelationship
  - http://qudt.org/vocab/constant/Value_JouleAtomicMassUnitRelationship expected at most 1 uses of path qudt:standardUncertainty
http://speckle.xyz/streams/bf7685a6aa/objects/3938330e37fa950fd7382904f7d26a48
  - http://speckle.xyz/streams/bf7685a6aa/objects/bd4c1bbaf855ba85dd10beedc3c5f7f4 on http://speckle.xyz/streams/bf7685a6aa/objects/3938330e37fa950fd7382904f7d26a48 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/bd4c1bbaf855ba85dd10beedc3c5f7f4 on http://speckle.xyz/streams/bf7685a6aa/objects/3938330e37fa950fd7382904f7d26a48 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/constant/Value_KilogramHartreeRelationship
  - http://qudt.org/vocab/constant/Value_KilogramHartreeRelationship expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/quantitykind/SourceVoltage
  - http://qudt.org/vocab/unit/PicoV on http://qudt.org/vocab/quantitykind/SourceVoltage needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/TeraV on http://qudt.org/vocab/quantitykind/SourceVoltage needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/FemtoV on http://qudt.org/vocab/quantitykind/SourceVoltage needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/NanoV on http://qudt.org/vocab/quantitykind/SourceVoltage needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/SourceVoltage expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/GigaV on http://qudt.org/vocab/quantitykind/SourceVoltage needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/DragForce
  - http://qudt.org/vocab/unit/POND on http://qudt.org/vocab/quantitykind/DragForce needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloGM-M-PER-SEC2 on http://qudt.org/vocab/quantitykind/DragForce needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/unit/MicroMOL-PER-MOL
  - http://qudt.org/vocab/unit/MicroMOL-PER-MOL expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MicroMOL-PER-MOL expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/BendingMomentOfForce
  - http://qudt.org/vocab/quantitykind/BendingMomentOfForce expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/PDL-IN on http://qudt.org/vocab/quantitykind/BendingMomentOfForce needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/IN-PDL on http://qudt.org/vocab/quantitykind/BendingMomentOfForce needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PDL-FT on http://qudt.org/vocab/quantitykind/BendingMomentOfForce needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/DYN-M on http://qudt.org/vocab/quantitykind/BendingMomentOfForce needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/dimensionvector/A0E1L0I0M0H0T0D1
  - http://qudt.org/vocab/dimensionvector/A0E1L0I0M0H0T0D1 expected at most 1 uses of path qudt:latexDefinition
http://speckle.xyz/streams/bf7685a6aa/objects/291d3872a9276cc54a6fbee9d529f918
  - http://speckle.xyz/streams/bf7685a6aa/objects/11e2de971443671ebd78fe480e1cd147 on http://speckle.xyz/streams/bf7685a6aa/objects/291d3872a9276cc54a6fbee9d529f918 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/11e2de971443671ebd78fe480e1cd147 on http://speckle.xyz/streams/bf7685a6aa/objects/291d3872a9276cc54a6fbee9d529f918 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/846c668233be88c63f0386947dacd531
  - http://speckle.xyz/streams/bf7685a6aa/objects/c8d74312f7bce1c9b6478e66d4f19320 on http://speckle.xyz/streams/bf7685a6aa/objects/846c668233be88c63f0386947dacd531 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/c8d74312f7bce1c9b6478e66d4f19320 on http://speckle.xyz/streams/bf7685a6aa/objects/846c668233be88c63f0386947dacd531 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/TeraJ
  - http://qudt.org/vocab/unit/TeraJ expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/TeraJ expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/TeraJ expected at most 1 uses of path qudt:plainTextDescription
http://qudt.org/vocab/unit/NUM-PER-NanoL
  - http://qudt.org/vocab/unit/NUM-PER-NanoL expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/NUM-PER-NanoL expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/dimensionvector/A0E0L-3I0M1H0T0D0
  - http://qudt.org/vocab/dimensionvector/A0E0L-3I0M1H0T0D0 expected at most 1 uses of path qudt:latexDefinition
http://qudt.org/vocab/quantitykind/LinearMass
  - http://qudt.org/vocab/unit/LB-PER-YD on http://qudt.org/vocab/quantitykind/LinearMass needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloGM-PER-KiloM on http://qudt.org/vocab/quantitykind/LinearMass needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/MultiplicationFactor
  - http://qudt.org/vocab/quantitykind/MultiplicationFactor expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/HamiltonFunction
  - http://qudt.org/vocab/unit/PicoJ on http://qudt.org/vocab/quantitykind/HamiltonFunction needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/NanoJ on http://qudt.org/vocab/quantitykind/HamiltonFunction needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/HamiltonFunction expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/0710fa9d049627f943ae27d44430b0ff
  - http://speckle.xyz/streams/bf7685a6aa/objects/78b0d278cde75c79f13d638e01c2c702 on http://speckle.xyz/streams/bf7685a6aa/objects/0710fa9d049627f943ae27d44430b0ff needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/78b0d278cde75c79f13d638e01c2c702 on http://speckle.xyz/streams/bf7685a6aa/objects/0710fa9d049627f943ae27d44430b0ff needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/75188293e2e233060b59265ed97f7d5c
  - http://speckle.xyz/streams/bf7685a6aa/objects/c8d74312f7bce1c9b6478e66d4f19320 on http://speckle.xyz/streams/bf7685a6aa/objects/75188293e2e233060b59265ed97f7d5c needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/c8d74312f7bce1c9b6478e66d4f19320 on http://speckle.xyz/streams/bf7685a6aa/objects/75188293e2e233060b59265ed97f7d5c needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/PetaBYTE
  - http://qudt.org/vocab/unit/PetaBYTE expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/PetaBYTE expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/1fa86d7479ef11da6919f3d9aed8524a
  - http://speckle.xyz/streams/bf7685a6aa/objects/38fc1c83ce7cd22674c69fd719e87f00 on http://speckle.xyz/streams/bf7685a6aa/objects/1fa86d7479ef11da6919f3d9aed8524a needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/38fc1c83ce7cd22674c69fd719e87f00 on http://speckle.xyz/streams/bf7685a6aa/objects/1fa86d7479ef11da6919f3d9aed8524a needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/Strain
  - http://qudt.org/vocab/unit/PPT on http://qudt.org/vocab/quantitykind/Strain needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Strain expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/PPQ on http://qudt.org/vocab/quantitykind/Strain needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/e1657ab19a3a20efcda89947e2f01d98
  - http://speckle.xyz/streams/bf7685a6aa/objects/2bab3a834da573d903244a9902f78aa1 on http://speckle.xyz/streams/bf7685a6aa/objects/e1657ab19a3a20efcda89947e2f01d98 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/2bab3a834da573d903244a9902f78aa1 on http://speckle.xyz/streams/bf7685a6aa/objects/e1657ab19a3a20efcda89947e2f01d98 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/EarthClosestApproachVehicleVelocity
  - http://qudt.org/vocab/unit/YD-PER-MIN on http://qudt.org/vocab/quantitykind/EarthClosestApproachVehicleVelocity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/IN-PER-YR on http://qudt.org/vocab/quantitykind/EarthClosestApproachVehicleVelocity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MicroM-PER-SEC on http://qudt.org/vocab/quantitykind/EarthClosestApproachVehicleVelocity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/YD-PER-SEC on http://qudt.org/vocab/quantitykind/EarthClosestApproachVehicleVelocity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/YD-PER-HR on http://qudt.org/vocab/quantitykind/EarthClosestApproachVehicleVelocity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MicroM-PER-MIN on http://qudt.org/vocab/quantitykind/EarthClosestApproachVehicleVelocity needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/EnergyFluenceRate
  - http://qudt.org/vocab/unit/M-PA-PER-SEC on http://qudt.org/vocab/quantitykind/EnergyFluenceRate needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/BTU_TH-PER-FT2-MIN on http://qudt.org/vocab/quantitykind/EnergyFluenceRate needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CAL_TH-PER-CentiM2-MIN on http://qudt.org/vocab/quantitykind/EnergyFluenceRate needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/BTU_TH-PER-FT2-HR on http://qudt.org/vocab/quantitykind/EnergyFluenceRate needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/BTU_IT-PER-FT2-HR on http://qudt.org/vocab/quantitykind/EnergyFluenceRate needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CAL_TH-PER-CentiM2-SEC on http://qudt.org/vocab/quantitykind/EnergyFluenceRate needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/NanoW-PER-M2 on http://qudt.org/vocab/quantitykind/EnergyFluenceRate needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/BTU_IT-PER-FT2-SEC on http://qudt.org/vocab/quantitykind/EnergyFluenceRate needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/EnergyFluenceRate expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/BTU_TH-PER-FT2-SEC on http://qudt.org/vocab/quantitykind/EnergyFluenceRate needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/BTU_IT-PER-IN2-SEC on http://qudt.org/vocab/quantitykind/EnergyFluenceRate needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/constant/Value_AtomicUnitOfTime
  - http://qudt.org/vocab/constant/Value_AtomicUnitOfTime expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/constant/Value_LatticeSpacingOfSilicon
  - http://qudt.org/vocab/constant/Value_LatticeSpacingOfSilicon expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/quantitykind/SurfaceTension
  - http://qudt.org/vocab/unit/GigaN-M-PER-M2 on http://qudt.org/vocab/quantitykind/SurfaceTension needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MicroN-M-PER-M2 on http://qudt.org/vocab/quantitykind/SurfaceTension needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/NanoN-M-PER-M2 on http://qudt.org/vocab/quantitykind/SurfaceTension needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloN-M-PER-M2 on http://qudt.org/vocab/quantitykind/SurfaceTension needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MegaN-M-PER-M2 on http://qudt.org/vocab/quantitykind/SurfaceTension needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/SurfaceTension expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/CAL_TH-PER-CentiM2 on http://qudt.org/vocab/quantitykind/SurfaceTension needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/ERG-PER-CentiM2 on http://qudt.org/vocab/quantitykind/SurfaceTension needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/BTU_TH-PER-FT2 on http://qudt.org/vocab/quantitykind/SurfaceTension needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliJ-PER-M2 on http://qudt.org/vocab/quantitykind/SurfaceTension needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CentiN-M-PER-M2 on http://qudt.org/vocab/quantitykind/SurfaceTension needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/LANGLEY on http://qudt.org/vocab/quantitykind/SurfaceTension needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliN-M-PER-M2 on http://qudt.org/vocab/quantitykind/SurfaceTension needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/c8121d98ac9b80f6371f03de2f0f7117
  - http://speckle.xyz/streams/bf7685a6aa/objects/6522948c17f68892a20ab290338e3478 on http://speckle.xyz/streams/bf7685a6aa/objects/c8121d98ac9b80f6371f03de2f0f7117 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/6522948c17f68892a20ab290338e3478 on http://speckle.xyz/streams/bf7685a6aa/objects/c8121d98ac9b80f6371f03de2f0f7117 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/constant/Value_DeuteronRmsChargeRadius
  - http://qudt.org/vocab/constant/Value_DeuteronRmsChargeRadius expected at most 1 uses of path qudt:standardUncertainty
http://speckle.xyz/streams/bf7685a6aa/objects/8353c240f9cefcaa79c140372afcb06c
  - http://speckle.xyz/streams/bf7685a6aa/objects/f031db8cf74c1d34f7ec9caaa44e707f on http://speckle.xyz/streams/bf7685a6aa/objects/8353c240f9cefcaa79c140372afcb06c needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/f031db8cf74c1d34f7ec9caaa44e707f on http://speckle.xyz/streams/bf7685a6aa/objects/8353c240f9cefcaa79c140372afcb06c needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/32945ed34836bb4eff1236d4509d12f8
  - http://speckle.xyz/streams/bf7685a6aa/objects/303a333ea3391daa29509be9eb9bb187 on http://speckle.xyz/streams/bf7685a6aa/objects/32945ed34836bb4eff1236d4509d12f8 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/303a333ea3391daa29509be9eb9bb187 on http://speckle.xyz/streams/bf7685a6aa/objects/32945ed34836bb4eff1236d4509d12f8 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/PlanckFrequency
  - http://qudt.org/vocab/unit/PlanckFrequency expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/PlanckFrequency expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/468cc66805b07c2681eb4185c8dec1e5
  - http://speckle.xyz/streams/bf7685a6aa/objects/ce3f60d6e3b49ebc1f1e6990046a5617 on http://speckle.xyz/streams/bf7685a6aa/objects/468cc66805b07c2681eb4185c8dec1e5 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/ce3f60d6e3b49ebc1f1e6990046a5617 on http://speckle.xyz/streams/bf7685a6aa/objects/468cc66805b07c2681eb4185c8dec1e5 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/1d08797a5e757a37fd9d3fc885acfadd
  - http://speckle.xyz/streams/bf7685a6aa/objects/0dbe61414366819b7df5eff0ff4290d0 on http://speckle.xyz/streams/bf7685a6aa/objects/1d08797a5e757a37fd9d3fc885acfadd needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/0dbe61414366819b7df5eff0ff4290d0 on http://speckle.xyz/streams/bf7685a6aa/objects/1d08797a5e757a37fd9d3fc885acfadd needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/f3b77f66c2de4613f4710943d7b1f9fe
  - http://speckle.xyz/streams/bf7685a6aa/objects/f031db8cf74c1d34f7ec9caaa44e707f on http://speckle.xyz/streams/bf7685a6aa/objects/f3b77f66c2de4613f4710943d7b1f9fe needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/f031db8cf74c1d34f7ec9caaa44e707f on http://speckle.xyz/streams/bf7685a6aa/objects/f3b77f66c2de4613f4710943d7b1f9fe needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/AtomicEnergy
  - http://qudt.org/vocab/unit/THERM_EC on http://qudt.org/vocab/quantitykind/AtomicEnergy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PicoJ on http://qudt.org/vocab/quantitykind/AtomicEnergy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/THERM_US on http://qudt.org/vocab/quantitykind/AtomicEnergy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/AtomicEnergy expected at most 1 uses of path qudt:plainTextDescription
  - http://qudt.org/vocab/unit/NanoJ on http://qudt.org/vocab/quantitykind/AtomicEnergy needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/unit/NanoM2
  - http://qudt.org/vocab/unit/NanoM2 expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/NanoM2 expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/MassFlowRate
  - http://qudt.org/vocab/unit/TONNE-PER-MO on http://qudt.org/vocab/quantitykind/MassFlowRate needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloLB-PER-HR on http://qudt.org/vocab/quantitykind/MassFlowRate needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/MassFlowRate expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/TONNE-PER-YR on http://qudt.org/vocab/quantitykind/MassFlowRate needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloTONNE-PER-YR on http://qudt.org/vocab/quantitykind/MassFlowRate needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloGM-PER-YR on http://qudt.org/vocab/quantitykind/MassFlowRate needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/constant/Value_RydbergConstantTimesCInHz
  - http://qudt.org/vocab/constant/Value_RydbergConstantTimesCInHz expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/unit/C3-M-PER-J2
  - http://qudt.org/vocab/unit/C3-M-PER-J2 expected 1 instance(s) of qudt:QuantityKindDimensionVector on path qudt:hasDimensionVector
http://qudt.org/vocab/quantitykind/StageStructuralMass
  - http://qudt.org/vocab/unit/MegaTONNE on http://qudt.org/vocab/quantitykind/StageStructuralMass needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MOMME_Textile on http://qudt.org/vocab/quantitykind/StageStructuralMass needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MOMME_Pearl on http://qudt.org/vocab/quantitykind/StageStructuralMass needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MegaTON on http://qudt.org/vocab/quantitykind/StageStructuralMass needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PFUND on http://qudt.org/vocab/quantitykind/StageStructuralMass needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/TON on http://qudt.org/vocab/quantitykind/StageStructuralMass needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/CubicExpansionCoefficient
  - http://qudt.org/vocab/unit/M-PER-DEG_C-M on http://qudt.org/vocab/quantitykind/CubicExpansionCoefficient needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PER-MegaK on http://qudt.org/vocab/quantitykind/CubicExpansionCoefficient needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliM-PER-DEG_C-M on http://qudt.org/vocab/quantitykind/CubicExpansionCoefficient needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PER-DEG_F on http://qudt.org/vocab/quantitykind/CubicExpansionCoefficient needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/e68afbfeae8be257c8d5fb75e17b6621
  - http://speckle.xyz/streams/bf7685a6aa/objects/ce3f60d6e3b49ebc1f1e6990046a5617 on http://speckle.xyz/streams/bf7685a6aa/objects/e68afbfeae8be257c8d5fb75e17b6621 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/ce3f60d6e3b49ebc1f1e6990046a5617 on http://speckle.xyz/streams/bf7685a6aa/objects/e68afbfeae8be257c8d5fb75e17b6621 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/KiloBTU_TH
  - http://qudt.org/vocab/unit/KiloBTU_TH expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/KiloBTU_TH expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/MassExcess
  - http://qudt.org/vocab/unit/MOMME_Pearl on http://qudt.org/vocab/quantitykind/MassExcess needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MegaTONNE on http://qudt.org/vocab/quantitykind/MassExcess needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PFUND on http://qudt.org/vocab/quantitykind/MassExcess needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/MassExcess expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/MegaTON on http://qudt.org/vocab/quantitykind/MassExcess needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MOMME_Textile on http://qudt.org/vocab/quantitykind/MassExcess needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/TON on http://qudt.org/vocab/quantitykind/MassExcess needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/bc6caf7c3ef4afc41bf207b1fa8cb467
  - http://speckle.xyz/streams/bf7685a6aa/objects/e9670962d6933d8e0a96caf59912d990 on http://speckle.xyz/streams/bf7685a6aa/objects/bc6caf7c3ef4afc41bf207b1fa8cb467 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e9670962d6933d8e0a96caf59912d990 on http://speckle.xyz/streams/bf7685a6aa/objects/bc6caf7c3ef4afc41bf207b1fa8cb467 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/d3c264c7450a6a7578c2deabb682aa08
  - http://speckle.xyz/streams/bf7685a6aa/objects/03183bd47ce710193f9d15449df4add8 on http://speckle.xyz/streams/bf7685a6aa/objects/d3c264c7450a6a7578c2deabb682aa08 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/03183bd47ce710193f9d15449df4add8 on http://speckle.xyz/streams/bf7685a6aa/objects/d3c264c7450a6a7578c2deabb682aa08 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/1dccfe5086c5697cee77f9c391cd987c
  - http://speckle.xyz/streams/bf7685a6aa/objects/e8908b5eec592c1e9e520605ad787a0c on http://speckle.xyz/streams/bf7685a6aa/objects/1dccfe5086c5697cee77f9c391cd987c needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e8908b5eec592c1e9e520605ad787a0c on http://speckle.xyz/streams/bf7685a6aa/objects/1dccfe5086c5697cee77f9c391cd987c needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/dimensionvector/A0E-1L0I0M1H0T-1D0
  - http://qudt.org/vocab/dimensionvector/A0E-1L0I0M1H0T-1D0 expected at most 1 uses of path qudt:latexDefinition
http://speckle.xyz/streams/bf7685a6aa/objects/e8817b9f75948e8eb8fed852db75ea24
  - http://speckle.xyz/streams/bf7685a6aa/objects/18357be2061a0be61152934dd62335e9 on http://speckle.xyz/streams/bf7685a6aa/objects/e8817b9f75948e8eb8fed852db75ea24 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/18357be2061a0be61152934dd62335e9 on http://speckle.xyz/streams/bf7685a6aa/objects/e8817b9f75948e8eb8fed852db75ea24 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/M3-PER-DAY
  - http://qudt.org/vocab/unit/M3-PER-DAY expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/M3-PER-DAY expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/OZ_VOL_US-PER-DAY
  - http://qudt.org/vocab/unit/OZ_VOL_US-PER-DAY expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/OZ_VOL_US-PER-DAY expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/ElectricCurrentPerUnitTemperature
  - http://qudt.org/vocab/unit/MicroA-PER-K on http://qudt.org/vocab/quantitykind/ElectricCurrentPerUnitTemperature needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliA-PER-K on http://qudt.org/vocab/quantitykind/ElectricCurrentPerUnitTemperature needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/NanoA-PER-K on http://qudt.org/vocab/quantitykind/ElectricCurrentPerUnitTemperature needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/ElectricCurrentPerUnitTemperature expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/KiloA-PER-K on http://qudt.org/vocab/quantitykind/ElectricCurrentPerUnitTemperature needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/A-PER-K on http://qudt.org/vocab/quantitykind/ElectricCurrentPerUnitTemperature needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/OsmoticCoefficient
  - http://qudt.org/vocab/quantitykind/OsmoticCoefficient expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/CostPerEnergy
  - http://qudt.org/vocab/unit/EUR-PER-W-SEC on http://qudt.org/vocab/quantitykind/CostPerEnergy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/EUR-PER-KiloW-HR on http://qudt.org/vocab/quantitykind/CostPerEnergy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/EUR-PER-W-HR on http://qudt.org/vocab/quantitykind/CostPerEnergy needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/unit/H_Stat
  - http://qudt.org/vocab/unit/H_Stat expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/H_Stat expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/4c99678c14e2cf26e756fa778442c2c4
  - http://speckle.xyz/streams/bf7685a6aa/objects/5751a7a8490e489a1a00976905f9b01b on http://speckle.xyz/streams/bf7685a6aa/objects/4c99678c14e2cf26e756fa778442c2c4 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/5751a7a8490e489a1a00976905f9b01b on http://speckle.xyz/streams/bf7685a6aa/objects/4c99678c14e2cf26e756fa778442c2c4 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/LengthRatio
  - http://qudt.org/vocab/unit/PPQ on http://qudt.org/vocab/quantitykind/LengthRatio needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PPT on http://qudt.org/vocab/quantitykind/LengthRatio needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/Pressure
  - http://qudt.org/vocab/unit/IN_H2O_39dot2DEG_F on http://qudt.org/vocab/quantitykind/Pressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloN-PER-M2 on http://qudt.org/vocab/quantitykind/Pressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Pressure expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/IN_HG_32DEG_F on http://qudt.org/vocab/quantitykind/Pressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CentiM_HG_0DEG_C on http://qudt.org/vocab/quantitykind/Pressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CentiM_H20_4DEG_C on http://qudt.org/vocab/quantitykind/Pressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PDL-PER-IN2 on http://qudt.org/vocab/quantitykind/Pressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/M_H2O on http://qudt.org/vocab/quantitykind/Pressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/FT_H2O_39dot2DEG_F on http://qudt.org/vocab/quantitykind/Pressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/IN_H2O_60DEG_F on http://qudt.org/vocab/quantitykind/Pressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CentiM_H2O_4DEG_C on http://qudt.org/vocab/quantitykind/Pressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/IN_HG_60DEG_F on http://qudt.org/vocab/quantitykind/Pressure needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/IonCurrent
  - http://qudt.org/vocab/unit/FemtoA on http://qudt.org/vocab/quantitykind/IonCurrent needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GigaA on http://qudt.org/vocab/quantitykind/IonCurrent needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PetaA on http://qudt.org/vocab/quantitykind/IonCurrent needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/AttoA on http://qudt.org/vocab/quantitykind/IonCurrent needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/TeraA on http://qudt.org/vocab/quantitykind/IonCurrent needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/IonCurrent expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/dc0b6a627c9f4acae140118aa50b4d12
  - http://speckle.xyz/streams/bf7685a6aa/objects/03183bd47ce710193f9d15449df4add8 on http://speckle.xyz/streams/bf7685a6aa/objects/dc0b6a627c9f4acae140118aa50b4d12 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/03183bd47ce710193f9d15449df4add8 on http://speckle.xyz/streams/bf7685a6aa/objects/dc0b6a627c9f4acae140118aa50b4d12 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/LatticeVector
  - http://qudt.org/vocab/quantitykind/LatticeVector expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/GA_Charriere on http://qudt.org/vocab/quantitykind/LatticeVector needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CHAIN_US on http://qudt.org/vocab/quantitykind/LatticeVector needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/ZOLL on http://qudt.org/vocab/quantitykind/LatticeVector needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/constant/Value_NeutronMagneticMomentToBohrMagnetonRatio
  - http://qudt.org/vocab/constant/Value_NeutronMagneticMomentToBohrMagnetonRatio expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/quantitykind/Tension
  - http://qudt.org/vocab/unit/POND on http://qudt.org/vocab/quantitykind/Tension needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloGM-M-PER-SEC2 on http://qudt.org/vocab/quantitykind/Tension needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/P on http://qudt.org/vocab/quantitykind/Tension needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/de33611b92056881534ae9b0de4ee87d
  - http://speckle.xyz/streams/bf7685a6aa/objects/39585c6ef6b03b8dbb18fb8a3bed20a3 on http://speckle.xyz/streams/bf7685a6aa/objects/de33611b92056881534ae9b0de4ee87d needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/39585c6ef6b03b8dbb18fb8a3bed20a3 on http://speckle.xyz/streams/bf7685a6aa/objects/de33611b92056881534ae9b0de4ee87d needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/AverageHeadEndPressure
  - http://qudt.org/vocab/unit/CentiM_H20_4DEG_C on http://qudt.org/vocab/quantitykind/AverageHeadEndPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PDL-PER-IN2 on http://qudt.org/vocab/quantitykind/AverageHeadEndPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CentiM_HG_0DEG_C on http://qudt.org/vocab/quantitykind/AverageHeadEndPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/IN_H2O_60DEG_F on http://qudt.org/vocab/quantitykind/AverageHeadEndPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/M_H2O on http://qudt.org/vocab/quantitykind/AverageHeadEndPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/IN_H2O_39dot2DEG_F on http://qudt.org/vocab/quantitykind/AverageHeadEndPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CentiM_H2O_4DEG_C on http://qudt.org/vocab/quantitykind/AverageHeadEndPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/IN_HG_60DEG_F on http://qudt.org/vocab/quantitykind/AverageHeadEndPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloN-PER-M2 on http://qudt.org/vocab/quantitykind/AverageHeadEndPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/FT_H2O_39dot2DEG_F on http://qudt.org/vocab/quantitykind/AverageHeadEndPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/IN_HG_32DEG_F on http://qudt.org/vocab/quantitykind/AverageHeadEndPressure needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/33985cfbace662bf244c9a8e8e516558
  - http://speckle.xyz/streams/bf7685a6aa/objects/8d3ab9635d58bfdfc81c3f647c553b97 on http://speckle.xyz/streams/bf7685a6aa/objects/33985cfbace662bf244c9a8e8e516558 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/8d3ab9635d58bfdfc81c3f647c553b97 on http://speckle.xyz/streams/bf7685a6aa/objects/33985cfbace662bf244c9a8e8e516558 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/df50892b089712d0c652e43a98c397cf
  - http://speckle.xyz/streams/bf7685a6aa/objects/39585c6ef6b03b8dbb18fb8a3bed20a3 on http://speckle.xyz/streams/bf7685a6aa/objects/df50892b089712d0c652e43a98c397cf needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/39585c6ef6b03b8dbb18fb8a3bed20a3 on http://speckle.xyz/streams/bf7685a6aa/objects/df50892b089712d0c652e43a98c397cf needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/ec4385f81e8a7ec992d353f4bd7b55b5
  - http://speckle.xyz/streams/bf7685a6aa/objects/a2275be1b771646099111ea05863ea68 on http://speckle.xyz/streams/bf7685a6aa/objects/ec4385f81e8a7ec992d353f4bd7b55b5 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/a2275be1b771646099111ea05863ea68 on http://speckle.xyz/streams/bf7685a6aa/objects/ec4385f81e8a7ec992d353f4bd7b55b5 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/V_Ab-PER-CentiM
  - http://qudt.org/vocab/unit/V_Ab-PER-CentiM expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/V_Ab-PER-CentiM expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/PK_US_DRY-PER-HR
  - http://qudt.org/vocab/unit/PK_US_DRY-PER-HR expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/PK_US_DRY-PER-HR expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/Force
  - http://qudt.org/vocab/unit/POND on http://qudt.org/vocab/quantitykind/Force needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloGM-M-PER-SEC2 on http://qudt.org/vocab/quantitykind/Force needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Force expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/P on http://qudt.org/vocab/quantitykind/Force needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/87ad685a56fdebae5353cc7a05f55fb6
  - http://speckle.xyz/streams/bf7685a6aa/objects/18dcb5c6b06a1df3084d52f7b75783a1 on http://speckle.xyz/streams/bf7685a6aa/objects/87ad685a56fdebae5353cc7a05f55fb6 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/18dcb5c6b06a1df3084d52f7b75783a1 on http://speckle.xyz/streams/bf7685a6aa/objects/87ad685a56fdebae5353cc7a05f55fb6 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/7f7632aa28edd205710e4a759ac0dbb4
  - http://speckle.xyz/streams/bf7685a6aa/objects/c2fc93ee9dec1445af89da62458be10d on http://speckle.xyz/streams/bf7685a6aa/objects/7f7632aa28edd205710e4a759ac0dbb4 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/c2fc93ee9dec1445af89da62458be10d on http://speckle.xyz/streams/bf7685a6aa/objects/7f7632aa28edd205710e4a759ac0dbb4 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/PlanckEnergy
  - http://qudt.org/vocab/unit/PlanckEnergy expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/PlanckEnergy expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/effd1de05dbb8c679d3571d1beffa1c7
  - http://speckle.xyz/streams/bf7685a6aa/objects/5751a7a8490e489a1a00976905f9b01b on http://speckle.xyz/streams/bf7685a6aa/objects/effd1de05dbb8c679d3571d1beffa1c7 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/5751a7a8490e489a1a00976905f9b01b on http://speckle.xyz/streams/bf7685a6aa/objects/effd1de05dbb8c679d3571d1beffa1c7 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/6bd2d206e442a08a55c313e366936f17
  - http://speckle.xyz/streams/bf7685a6aa/objects/598a0c5bed585c4e7fdfeb688cc62eb2 on http://speckle.xyz/streams/bf7685a6aa/objects/6bd2d206e442a08a55c313e366936f17 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/598a0c5bed585c4e7fdfeb688cc62eb2 on http://speckle.xyz/streams/bf7685a6aa/objects/6bd2d206e442a08a55c313e366936f17 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/952ee1136309b5ddd9bb5f6ade240b39
  - http://speckle.xyz/streams/bf7685a6aa/objects/5113048d9de5edce9a56ff05c5feb804 on http://speckle.xyz/streams/bf7685a6aa/objects/952ee1136309b5ddd9bb5f6ade240b39 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/5113048d9de5edce9a56ff05c5feb804 on http://speckle.xyz/streams/bf7685a6aa/objects/952ee1136309b5ddd9bb5f6ade240b39 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/S_Ab
  - http://qudt.org/vocab/unit/S_Ab expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/S_Ab expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/2db10a18ddd6df1f60e0ac67152c3d6c
  - http://speckle.xyz/streams/bf7685a6aa/objects/c1f8ba2020eb6468b1d37e4445924aa6 on http://speckle.xyz/streams/bf7685a6aa/objects/2db10a18ddd6df1f60e0ac67152c3d6c needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/c1f8ba2020eb6468b1d37e4445924aa6 on http://speckle.xyz/streams/bf7685a6aa/objects/2db10a18ddd6df1f60e0ac67152c3d6c needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/AtmosphericPressure
  - http://qudt.org/vocab/unit/KiloN-PER-M2 on http://qudt.org/vocab/quantitykind/AtmosphericPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/FT_H2O_39dot2DEG_F on http://qudt.org/vocab/quantitykind/AtmosphericPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/M_H2O on http://qudt.org/vocab/quantitykind/AtmosphericPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PDL-PER-IN2 on http://qudt.org/vocab/quantitykind/AtmosphericPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/IN_HG_60DEG_F on http://qudt.org/vocab/quantitykind/AtmosphericPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CentiM_H2O_4DEG_C on http://qudt.org/vocab/quantitykind/AtmosphericPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/IN_H2O_39dot2DEG_F on http://qudt.org/vocab/quantitykind/AtmosphericPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/IN_H2O_60DEG_F on http://qudt.org/vocab/quantitykind/AtmosphericPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CentiM_H20_4DEG_C on http://qudt.org/vocab/quantitykind/AtmosphericPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CentiM_HG_0DEG_C on http://qudt.org/vocab/quantitykind/AtmosphericPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/IN_HG_32DEG_F on http://qudt.org/vocab/quantitykind/AtmosphericPressure needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/EffectiveExhaustVelocity
  - http://qudt.org/vocab/quantitykind/EffectiveExhaustVelocity expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/IN-PER-YR on http://qudt.org/vocab/quantitykind/EffectiveExhaustVelocity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/YD-PER-MIN on http://qudt.org/vocab/quantitykind/EffectiveExhaustVelocity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MicroM-PER-MIN on http://qudt.org/vocab/quantitykind/EffectiveExhaustVelocity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MicroM-PER-SEC on http://qudt.org/vocab/quantitykind/EffectiveExhaustVelocity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/YD-PER-HR on http://qudt.org/vocab/quantitykind/EffectiveExhaustVelocity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/YD-PER-SEC on http://qudt.org/vocab/quantitykind/EffectiveExhaustVelocity needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/CartesianArea
  - http://qudt.org/vocab/quantitykind/CartesianArea expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/KiloMIL_Circ on http://qudt.org/vocab/quantitykind/CartesianArea needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MI_US2 on http://qudt.org/vocab/quantitykind/CartesianArea needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloM2 on http://qudt.org/vocab/quantitykind/CartesianArea needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/dbb0ad23bfdd33a424f747d681e9e278
  - http://speckle.xyz/streams/bf7685a6aa/objects/03183bd47ce710193f9d15449df4add8 on http://speckle.xyz/streams/bf7685a6aa/objects/dbb0ad23bfdd33a424f747d681e9e278 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/03183bd47ce710193f9d15449df4add8 on http://speckle.xyz/streams/bf7685a6aa/objects/dbb0ad23bfdd33a424f747d681e9e278 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/SpecificModulus
  - http://qudt.org/vocab/quantitykind/SpecificModulus expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/GigaPA-CentiM3-PER-GM on http://qudt.org/vocab/quantitykind/SpecificModulus needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloM2-PER-SEC2 on http://qudt.org/vocab/quantitykind/SpecificModulus needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/f2e3d17100471b28ce7ba44fc266fbd2
  - http://speckle.xyz/streams/bf7685a6aa/objects/0dbe61414366819b7df5eff0ff4290d0 on http://speckle.xyz/streams/bf7685a6aa/objects/f2e3d17100471b28ce7ba44fc266fbd2 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/0dbe61414366819b7df5eff0ff4290d0 on http://speckle.xyz/streams/bf7685a6aa/objects/f2e3d17100471b28ce7ba44fc266fbd2 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/SecondStageMassRatio
  - http://qudt.org/vocab/unit/LB-PER-LB on http://qudt.org/vocab/quantitykind/SecondStageMassRatio needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/SecondStageMassRatio expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/46f87a2985de8ebb017940921a44984f
  - http://speckle.xyz/streams/bf7685a6aa/objects/e9670962d6933d8e0a96caf59912d990 on http://speckle.xyz/streams/bf7685a6aa/objects/46f87a2985de8ebb017940921a44984f needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e9670962d6933d8e0a96caf59912d990 on http://speckle.xyz/streams/bf7685a6aa/objects/46f87a2985de8ebb017940921a44984f needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/EquilibriumConstantBasedOnConcentration
  - http://qudt.org/vocab/quantitykind/EquilibriumConstantBasedOnConcentration expected at most 1 uses of path qudt:plainTextDescription
http://speckle.xyz/streams/bf7685a6aa/objects/0457df03eaeaf68d3249994634a6c208
  - http://speckle.xyz/streams/bf7685a6aa/objects/b1704240e49d5b4aa831d684c64ab3e7 on http://speckle.xyz/streams/bf7685a6aa/objects/0457df03eaeaf68d3249994634a6c208 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/b1704240e49d5b4aa831d684c64ab3e7 on http://speckle.xyz/streams/bf7685a6aa/objects/0457df03eaeaf68d3249994634a6c208 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/MaxExpectedOperatingThrust
  - http://qudt.org/vocab/unit/KiloGM-M-PER-SEC2 on http://qudt.org/vocab/quantitykind/MaxExpectedOperatingThrust needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/P on http://qudt.org/vocab/quantitykind/MaxExpectedOperatingThrust needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/POND on http://qudt.org/vocab/quantitykind/MaxExpectedOperatingThrust needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/9e4cd7f1ae927f24dcf172e78dfe506f
  - http://speckle.xyz/streams/bf7685a6aa/objects/e9490e3512dab7db58f40a947313427f on http://speckle.xyz/streams/bf7685a6aa/objects/9e4cd7f1ae927f24dcf172e78dfe506f needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e9490e3512dab7db58f40a947313427f on http://speckle.xyz/streams/bf7685a6aa/objects/9e4cd7f1ae927f24dcf172e78dfe506f needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/TemperatureGradient
  - http://qudt.org/vocab/quantitykind/TemperatureGradient expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/unit/H_Stat-PER-CentiM
  - http://qudt.org/vocab/unit/H_Stat-PER-CentiM expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/H_Stat-PER-CentiM expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/7ed83cdb8867b8ef44c794f9577a1b5b
  - http://speckle.xyz/streams/bf7685a6aa/objects/688eea56b7b78e0f7c7b90dced966926 on http://speckle.xyz/streams/bf7685a6aa/objects/7ed83cdb8867b8ef44c794f9577a1b5b needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/688eea56b7b78e0f7c7b90dced966926 on http://speckle.xyz/streams/bf7685a6aa/objects/7ed83cdb8867b8ef44c794f9577a1b5b needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/NanoM-PER-MilliM-MegaPA
  - http://qudt.org/vocab/unit/NanoM-PER-MilliM-MegaPA expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/NanoM-PER-MilliM-MegaPA expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/bd2699d30f292778691b9bd43dd9de5e
  - http://speckle.xyz/streams/bf7685a6aa/objects/e5eb69c71be84f5da9e07df2de08c8eb on http://speckle.xyz/streams/bf7685a6aa/objects/bd2699d30f292778691b9bd43dd9de5e needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e5eb69c71be84f5da9e07df2de08c8eb on http://speckle.xyz/streams/bf7685a6aa/objects/bd2699d30f292778691b9bd43dd9de5e needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/Distance
  - http://qudt.org/vocab/quantitykind/Distance expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/PT_BIG on http://qudt.org/vocab/quantitykind/Distance needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/7dcd54a134f22cd9971e72e8fa414b5f
  - http://speckle.xyz/streams/bf7685a6aa/objects/66cce2bdb57b61f2d10f6cee8c508243 on http://speckle.xyz/streams/bf7685a6aa/objects/7dcd54a134f22cd9971e72e8fa414b5f needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/66cce2bdb57b61f2d10f6cee8c508243 on http://speckle.xyz/streams/bf7685a6aa/objects/7dcd54a134f22cd9971e72e8fa414b5f needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/590c4d5aa62a9aea298191cd1ae744fe
  - http://speckle.xyz/streams/bf7685a6aa/objects/d8233308d858417f63d96f5f694e9538 on http://speckle.xyz/streams/bf7685a6aa/objects/590c4d5aa62a9aea298191cd1ae744fe needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/d8233308d858417f63d96f5f694e9538 on http://speckle.xyz/streams/bf7685a6aa/objects/590c4d5aa62a9aea298191cd1ae744fe needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/NuclearRadius
  - http://qudt.org/vocab/unit/CHAIN_US on http://qudt.org/vocab/quantitykind/NuclearRadius needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GA_Charriere on http://qudt.org/vocab/quantitykind/NuclearRadius needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/ZOLL on http://qudt.org/vocab/quantitykind/NuclearRadius needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/NuclearRadius expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/StochasticProcess
  - http://qudt.org/vocab/unit/PetaHZ on http://qudt.org/vocab/quantitykind/StochasticProcess needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/StochasticProcess expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/MilliHZ on http://qudt.org/vocab/quantitykind/StochasticProcess needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PERCENT-PER-MO on http://qudt.org/vocab/quantitykind/StochasticProcess needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PERCENT-PER-YR on http://qudt.org/vocab/quantitykind/StochasticProcess needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/unit/TEX
  - http://qudt.org/vocab/unit/TEX expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/TEX expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/TEX expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/2d278a84e0030031d7d2b5951f01e0f9
  - http://speckle.xyz/streams/bf7685a6aa/objects/1aa18520ad959a6b477ce9a6cd61c432 on http://speckle.xyz/streams/bf7685a6aa/objects/2d278a84e0030031d7d2b5951f01e0f9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/1aa18520ad959a6b477ce9a6cd61c432 on http://speckle.xyz/streams/bf7685a6aa/objects/2d278a84e0030031d7d2b5951f01e0f9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/Frequency
  - http://qudt.org/vocab/unit/PERCENT-PER-MO on http://qudt.org/vocab/quantitykind/Frequency needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PetaHZ on http://qudt.org/vocab/quantitykind/Frequency needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliHZ on http://qudt.org/vocab/quantitykind/Frequency needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PERCENT-PER-YR on http://qudt.org/vocab/quantitykind/Frequency needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Frequency expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/98be3674c609a22879b092e909675795
  - http://speckle.xyz/streams/bf7685a6aa/objects/18357be2061a0be61152934dd62335e9 on http://speckle.xyz/streams/bf7685a6aa/objects/98be3674c609a22879b092e909675795 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/18357be2061a0be61152934dd62335e9 on http://speckle.xyz/streams/bf7685a6aa/objects/98be3674c609a22879b092e909675795 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/ElectromagneticPermeabilityRatio
  - http://qudt.org/vocab/quantitykind/ElectromagneticPermeabilityRatio expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/UpperCriticalMagneticFluxDensity
  - http://qudt.org/vocab/quantitykind/UpperCriticalMagneticFluxDensity expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/KiloT on http://qudt.org/vocab/quantitykind/UpperCriticalMagneticFluxDensity needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/ResonanceEnergy
  - http://qudt.org/vocab/unit/THERM_US on http://qudt.org/vocab/quantitykind/ResonanceEnergy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/THERM_EC on http://qudt.org/vocab/quantitykind/ResonanceEnergy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/NanoJ on http://qudt.org/vocab/quantitykind/ResonanceEnergy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PicoJ on http://qudt.org/vocab/quantitykind/ResonanceEnergy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/ResonanceEnergy expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/unit/PlanckFrequency_Ang
  - http://qudt.org/vocab/unit/PlanckFrequency_Ang expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/PlanckFrequency_Ang expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/PressureBurningRateIndex
  - http://qudt.org/vocab/unit/FLIGHT on http://qudt.org/vocab/quantitykind/PressureBurningRateIndex needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/MechanicalEnergy
  - http://qudt.org/vocab/unit/NanoJ on http://qudt.org/vocab/quantitykind/MechanicalEnergy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PicoJ on http://qudt.org/vocab/quantitykind/MechanicalEnergy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/MechanicalEnergy expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/THERM_EC on http://qudt.org/vocab/quantitykind/MechanicalEnergy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/THERM_US on http://qudt.org/vocab/quantitykind/MechanicalEnergy needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/constant/Value_ElectronGyromagneticRatioOver2Pi
  - http://qudt.org/vocab/constant/Value_ElectronGyromagneticRatioOver2Pi expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/constant/Value_ShieldedHelionGyromagneticRatioOver2Pi
  - http://qudt.org/vocab/constant/Value_ShieldedHelionGyromagneticRatioOver2Pi expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/quantitykind/RadiantFluenceRate
  - http://qudt.org/vocab/unit/CAL_TH-PER-CentiM2-SEC on http://qudt.org/vocab/quantitykind/RadiantFluenceRate needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/BTU_TH-PER-FT2-HR on http://qudt.org/vocab/quantitykind/RadiantFluenceRate needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/BTU_IT-PER-FT2-SEC on http://qudt.org/vocab/quantitykind/RadiantFluenceRate needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/M-PA-PER-SEC on http://qudt.org/vocab/quantitykind/RadiantFluenceRate needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/RadiantFluenceRate expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/NanoW-PER-M2 on http://qudt.org/vocab/quantitykind/RadiantFluenceRate needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/BTU_TH-PER-FT2-SEC on http://qudt.org/vocab/quantitykind/RadiantFluenceRate needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/BTU_IT-PER-IN2-SEC on http://qudt.org/vocab/quantitykind/RadiantFluenceRate needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CAL_TH-PER-CentiM2-MIN on http://qudt.org/vocab/quantitykind/RadiantFluenceRate needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/BTU_IT-PER-FT2-HR on http://qudt.org/vocab/quantitykind/RadiantFluenceRate needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/BTU_TH-PER-FT2-MIN on http://qudt.org/vocab/quantitykind/RadiantFluenceRate needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/VolumetricBitDensity
  - http://qudt.org/vocab/unit/PebiBIT-PER-M3 on http://qudt.org/vocab/quantitykind/VolumetricBitDensity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/BIT-PER-M3 on http://qudt.org/vocab/quantitykind/VolumetricBitDensity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/ExbiBIT-PER-M3 on http://qudt.org/vocab/quantitykind/VolumetricBitDensity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GibiBIT-PER-M3 on http://qudt.org/vocab/quantitykind/VolumetricBitDensity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/TebiBIT-PER-M3 on http://qudt.org/vocab/quantitykind/VolumetricBitDensity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MebiBIT-PER-M3 on http://qudt.org/vocab/quantitykind/VolumetricBitDensity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KibiBIT-PER-M3 on http://qudt.org/vocab/quantitykind/VolumetricBitDensity needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/SpecificHeatCapacityAtConstantVolume
  - http://qudt.org/vocab/quantitykind/SpecificHeatCapacityAtConstantVolume expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/J-PER-GM-DEG_C on http://qudt.org/vocab/quantitykind/SpecificHeatCapacityAtConstantVolume needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/J-PER-KiloGM-DEG_C on http://qudt.org/vocab/quantitykind/SpecificHeatCapacityAtConstantVolume needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/DisplacementCurrent
  - http://qudt.org/vocab/unit/PetaA on http://qudt.org/vocab/quantitykind/DisplacementCurrent needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/AttoA on http://qudt.org/vocab/quantitykind/DisplacementCurrent needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GigaA on http://qudt.org/vocab/quantitykind/DisplacementCurrent needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/FemtoA on http://qudt.org/vocab/quantitykind/DisplacementCurrent needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/TeraA on http://qudt.org/vocab/quantitykind/DisplacementCurrent needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/DisplacementCurrent expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/ActivityRelatedByMass
  - http://qudt.org/vocab/unit/KiloBQ-PER-KiloGM on http://qudt.org/vocab/quantitykind/ActivityRelatedByMass needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/ActivityRelatedByMass expected at most 1 uses of path qudt:plainTextDescription
  - http://qudt.org/vocab/unit/CI-PER-KiloGM on http://qudt.org/vocab/quantitykind/ActivityRelatedByMass needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/ActivityRelatedByMass expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/quantitykind/ActivityRelatedByMass expected at most 1 uses of path qudt:plainTextDescription
  - http://qudt.org/vocab/unit/MegaBQ-PER-KiloGM on http://qudt.org/vocab/quantitykind/ActivityRelatedByMass needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/ActivityRelatedByMass expected at most 1 uses of path qudt:plainTextDescription
http://speckle.xyz/streams/bf7685a6aa/objects/5afc6756b7114517303815d08a2d476c
  - http://speckle.xyz/streams/bf7685a6aa/objects/659672eeff56fe3536315764b764a663 on http://speckle.xyz/streams/bf7685a6aa/objects/5afc6756b7114517303815d08a2d476c needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/659672eeff56fe3536315764b764a663 on http://speckle.xyz/streams/bf7685a6aa/objects/5afc6756b7114517303815d08a2d476c needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/SecondMomentOfArea
  - http://qudt.org/vocab/unit/FT4 on http://qudt.org/vocab/quantitykind/SecondMomentOfArea needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/SecondMomentOfArea expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/CentiM4 on http://qudt.org/vocab/quantitykind/SecondMomentOfArea needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/unit/FARAD_Stat
  - http://qudt.org/vocab/unit/FARAD_Stat expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/FARAD_Stat expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/TBSP
  - http://qudt.org/vocab/unit/TBSP expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/TBSP expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/AmountOfSubstancePerMassPressure
  - http://qudt.org/vocab/unit/MOL-PER-KiloGM-BAR on http://qudt.org/vocab/quantitykind/AmountOfSubstancePerMassPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/dimensionvector/A0E0L-1I0M2H0T-2D0 on http://qudt.org/vocab/quantitykind/AmountOfSubstancePerMassPressure needs to be a http://qudt.org/schema/qudt/QuantityKindDimensionVector
http://speckle.xyz/streams/bf7685a6aa/objects/9eaaf31cf9923c900506c4026e213703
  - http://speckle.xyz/streams/bf7685a6aa/objects/17592c23e3930128143ddd679cd6a0d0 on http://speckle.xyz/streams/bf7685a6aa/objects/9eaaf31cf9923c900506c4026e213703 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/17592c23e3930128143ddd679cd6a0d0 on http://speckle.xyz/streams/bf7685a6aa/objects/9eaaf31cf9923c900506c4026e213703 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/PERMEABILITY_REL
  - http://qudt.org/vocab/unit/PERMEABILITY_REL expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/PERMEABILITY_REL expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/RelaxationTIme
  - http://qudt.org/vocab/unit/DeciSEC on http://qudt.org/vocab/quantitykind/RelaxationTIme needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/POISE-PER-PA on http://qudt.org/vocab/quantitykind/RelaxationTIme needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MegaSEC on http://qudt.org/vocab/quantitykind/RelaxationTIme needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/RelaxationTIme expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/FemtoSEC on http://qudt.org/vocab/quantitykind/RelaxationTIme needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/AttoSEC on http://qudt.org/vocab/quantitykind/RelaxationTIme needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/YR_Metrology on http://qudt.org/vocab/quantitykind/RelaxationTIme needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/27a034c616a6cb91a845fab31f798b6b
  - http://speckle.xyz/streams/bf7685a6aa/objects/af1446d067d1a6d619cec36730b3234c on http://speckle.xyz/streams/bf7685a6aa/objects/27a034c616a6cb91a845fab31f798b6b needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/af1446d067d1a6d619cec36730b3234c on http://speckle.xyz/streams/bf7685a6aa/objects/27a034c616a6cb91a845fab31f798b6b needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/44144f3ef688581756ff283ab87478c9
  - http://speckle.xyz/streams/bf7685a6aa/objects/5113048d9de5edce9a56ff05c5feb804 on http://speckle.xyz/streams/bf7685a6aa/objects/44144f3ef688581756ff283ab87478c9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/5113048d9de5edce9a56ff05c5feb804 on http://speckle.xyz/streams/bf7685a6aa/objects/44144f3ef688581756ff283ab87478c9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/ComplexPower
  - http://qudt.org/vocab/unit/PicoV-A on http://qudt.org/vocab/quantitykind/ComplexPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/NanoV-A on http://qudt.org/vocab/quantitykind/ComplexPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/ComplexPower expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/PetaV-A on http://qudt.org/vocab/quantitykind/ComplexPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MicroV-A on http://qudt.org/vocab/quantitykind/ComplexPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/TeraV-A on http://qudt.org/vocab/quantitykind/ComplexPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/ExaV-A on http://qudt.org/vocab/quantitykind/ComplexPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliV-A on http://qudt.org/vocab/quantitykind/ComplexPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GigaV-A on http://qudt.org/vocab/quantitykind/ComplexPower needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/32d70db0b14adcf7e6fe615a0daad03f
  - http://speckle.xyz/streams/bf7685a6aa/objects/077fed24ea7f83e4fab775c9a2571143 on http://speckle.xyz/streams/bf7685a6aa/objects/32d70db0b14adcf7e6fe615a0daad03f needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/077fed24ea7f83e4fab775c9a2571143 on http://speckle.xyz/streams/bf7685a6aa/objects/32d70db0b14adcf7e6fe615a0daad03f needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/GAL_UK-PER-HR
  - http://qudt.org/vocab/unit/GAL_UK-PER-HR expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/GAL_UK-PER-HR expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/MilliGM-PER-SEC
  - http://qudt.org/vocab/unit/MilliGM-PER-SEC expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MilliGM-PER-SEC expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/b3669fbea91536c95606f4870813d289
  - http://speckle.xyz/streams/bf7685a6aa/objects/5aa8dbce5ed730aeaaab18a2c23b2dae on http://speckle.xyz/streams/bf7685a6aa/objects/b3669fbea91536c95606f4870813d289 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/5aa8dbce5ed730aeaaab18a2c23b2dae on http://speckle.xyz/streams/bf7685a6aa/objects/b3669fbea91536c95606f4870813d289 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/PK_US_DRY-PER-DAY
  - http://qudt.org/vocab/unit/PK_US_DRY-PER-DAY expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/PK_US_DRY-PER-DAY expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/AverageEnergyLossPerElementaryChargeProduced
  - http://qudt.org/vocab/unit/PicoJ on http://qudt.org/vocab/quantitykind/AverageEnergyLossPerElementaryChargeProduced needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/THERM_US on http://qudt.org/vocab/quantitykind/AverageEnergyLossPerElementaryChargeProduced needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/AverageEnergyLossPerElementaryChargeProduced expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/NanoJ on http://qudt.org/vocab/quantitykind/AverageEnergyLossPerElementaryChargeProduced needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/THERM_EC on http://qudt.org/vocab/quantitykind/AverageEnergyLossPerElementaryChargeProduced needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/StateDensityAsExpressionOfAngularFrequency
  - http://qudt.org/vocab/quantitykind/StateDensityAsExpressionOfAngularFrequency expected at most 1 uses of path qudt:plainTextDescription
http://speckle.xyz/streams/bf7685a6aa/objects/c1785c860b1a8bf0bd350ae766b70787
  - http://speckle.xyz/streams/bf7685a6aa/objects/1a82242a9320f719b8162c37bd9c580e on http://speckle.xyz/streams/bf7685a6aa/objects/c1785c860b1a8bf0bd350ae766b70787 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/1a82242a9320f719b8162c37bd9c580e on http://speckle.xyz/streams/bf7685a6aa/objects/c1785c860b1a8bf0bd350ae766b70787 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/FUEL-BIAS
  - http://qudt.org/vocab/unit/FLIGHT on http://qudt.org/vocab/quantitykind/FUEL-BIAS needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/FUEL-BIAS expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/2b04213bf756a2c9b3595f9671edf666
  - http://speckle.xyz/streams/bf7685a6aa/objects/3efdbbd7d157786885a7c74d641c8fae on http://speckle.xyz/streams/bf7685a6aa/objects/2b04213bf756a2c9b3595f9671edf666 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/3efdbbd7d157786885a7c74d641c8fae on http://speckle.xyz/streams/bf7685a6aa/objects/2b04213bf756a2c9b3595f9671edf666 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/IgnitionIntervalTime
  - http://qudt.org/vocab/unit/MegaSEC on http://qudt.org/vocab/quantitykind/IgnitionIntervalTime needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/DeciSEC on http://qudt.org/vocab/quantitykind/IgnitionIntervalTime needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/YR_Metrology on http://qudt.org/vocab/quantitykind/IgnitionIntervalTime needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/FemtoSEC on http://qudt.org/vocab/quantitykind/IgnitionIntervalTime needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/AttoSEC on http://qudt.org/vocab/quantitykind/IgnitionIntervalTime needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/POISE-PER-PA on http://qudt.org/vocab/quantitykind/IgnitionIntervalTime needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/5c35de656ffefc1ec9bc1966331ec55e
  - http://speckle.xyz/streams/bf7685a6aa/objects/2bab3a834da573d903244a9902f78aa1 on http://speckle.xyz/streams/bf7685a6aa/objects/5c35de656ffefc1ec9bc1966331ec55e needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/2bab3a834da573d903244a9902f78aa1 on http://speckle.xyz/streams/bf7685a6aa/objects/5c35de656ffefc1ec9bc1966331ec55e needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/a7e43b48cd93ad597a6ac351403f1e2a
  - http://speckle.xyz/streams/bf7685a6aa/objects/6b7f1aad6288ea44a0b709fbf06a8918 on http://speckle.xyz/streams/bf7685a6aa/objects/a7e43b48cd93ad597a6ac351403f1e2a needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/6b7f1aad6288ea44a0b709fbf06a8918 on http://speckle.xyz/streams/bf7685a6aa/objects/a7e43b48cd93ad597a6ac351403f1e2a needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/a182bfe2fcad1d6a6c5fe6896424c602
  - http://speckle.xyz/streams/bf7685a6aa/objects/303a333ea3391daa29509be9eb9bb187 on http://speckle.xyz/streams/bf7685a6aa/objects/a182bfe2fcad1d6a6c5fe6896424c602 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/303a333ea3391daa29509be9eb9bb187 on http://speckle.xyz/streams/bf7685a6aa/objects/a182bfe2fcad1d6a6c5fe6896424c602 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/7e18e5bbe54c6690ad6de514fce1322f
  - http://speckle.xyz/streams/bf7685a6aa/objects/e8908b5eec592c1e9e520605ad787a0c on http://speckle.xyz/streams/bf7685a6aa/objects/7e18e5bbe54c6690ad6de514fce1322f needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e8908b5eec592c1e9e520605ad787a0c on http://speckle.xyz/streams/bf7685a6aa/objects/7e18e5bbe54c6690ad6de514fce1322f needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/SpectralRadiantEnergyDensity
  - http://qudt.org/vocab/quantitykind/SpectralRadiantEnergyDensity expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/unit/SH
  - http://qudt.org/vocab/unit/SH expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/SH expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/Compressibility
  - http://qudt.org/vocab/unit/PERCENT-PER-BAR on http://qudt.org/vocab/quantitykind/Compressibility needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PERCENT-PER-HectoBAR on http://qudt.org/vocab/quantitykind/Compressibility needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PER-MegaPA on http://qudt.org/vocab/quantitykind/Compressibility needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Compressibility expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/PER-MILLE-PSI on http://qudt.org/vocab/quantitykind/Compressibility needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/constant/Value_MolarGasConstant
  - http://qudt.org/vocab/constant/Value_MolarGasConstant expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/quantitykind/AreaPerPower
  - http://qudt.org/vocab/unit/M2-PER-W on http://qudt.org/vocab/quantitykind/AreaPerPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/M2-PER-KiloW on http://qudt.org/vocab/quantitykind/AreaPerPower needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/unit/KiloCi
  - http://qudt.org/vocab/unit/KiloCi expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/KiloCi expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/366c1439e7281b0ce53da056b5fe6d69
  - http://speckle.xyz/streams/bf7685a6aa/objects/230bee4acdd75163083829e8ab8a39f2 on http://speckle.xyz/streams/bf7685a6aa/objects/366c1439e7281b0ce53da056b5fe6d69 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/230bee4acdd75163083829e8ab8a39f2 on http://speckle.xyz/streams/bf7685a6aa/objects/366c1439e7281b0ce53da056b5fe6d69 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/ee8ba974ee09b82f84cb78d425c4bd2f
  - http://speckle.xyz/streams/bf7685a6aa/objects/f6d5b4ca6cd4e394b60620e0abbab45f on http://speckle.xyz/streams/bf7685a6aa/objects/ee8ba974ee09b82f84cb78d425c4bd2f needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/f6d5b4ca6cd4e394b60620e0abbab45f on http://speckle.xyz/streams/bf7685a6aa/objects/ee8ba974ee09b82f84cb78d425c4bd2f needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/4f7aa6a72e7c75f7bfd14dd12d2bac25
  - http://speckle.xyz/streams/bf7685a6aa/objects/ce3f60d6e3b49ebc1f1e6990046a5617 on http://speckle.xyz/streams/bf7685a6aa/objects/4f7aa6a72e7c75f7bfd14dd12d2bac25 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/ce3f60d6e3b49ebc1f1e6990046a5617 on http://speckle.xyz/streams/bf7685a6aa/objects/4f7aa6a72e7c75f7bfd14dd12d2bac25 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/3f113a487be1ec36ac511ca81fd2377a
  - http://speckle.xyz/streams/bf7685a6aa/objects/c8fb46fc939728e45252377481a55e6a on http://speckle.xyz/streams/bf7685a6aa/objects/3f113a487be1ec36ac511ca81fd2377a needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/c8fb46fc939728e45252377481a55e6a on http://speckle.xyz/streams/bf7685a6aa/objects/3f113a487be1ec36ac511ca81fd2377a needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/Time_Squared
  - http://qudt.org/vocab/unit/GM-PER-CentiM-BAR on http://qudt.org/vocab/quantitykind/Time_Squared needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GM-PER-MilliM-BAR on http://qudt.org/vocab/quantitykind/Time_Squared needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/c4e9e071031590fabf9501115f1c1c2c
  - http://speckle.xyz/streams/bf7685a6aa/objects/5751a7a8490e489a1a00976905f9b01b on http://speckle.xyz/streams/bf7685a6aa/objects/c4e9e071031590fabf9501115f1c1c2c needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/5751a7a8490e489a1a00976905f9b01b on http://speckle.xyz/streams/bf7685a6aa/objects/c4e9e071031590fabf9501115f1c1c2c needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/d80bbfc6d9803e97c71d1e4bf8719ba1
  - http://speckle.xyz/streams/bf7685a6aa/objects/3efdbbd7d157786885a7c74d641c8fae on http://speckle.xyz/streams/bf7685a6aa/objects/d80bbfc6d9803e97c71d1e4bf8719ba1 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/3efdbbd7d157786885a7c74d641c8fae on http://speckle.xyz/streams/bf7685a6aa/objects/d80bbfc6d9803e97c71d1e4bf8719ba1 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/TonEnergy
  - http://qudt.org/vocab/unit/TonEnergy expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/TonEnergy expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/0a44ee96bf49e6de1fe0cacc0d2b5639
  - http://speckle.xyz/streams/bf7685a6aa/objects/bd4c1bbaf855ba85dd10beedc3c5f7f4 on http://speckle.xyz/streams/bf7685a6aa/objects/0a44ee96bf49e6de1fe0cacc0d2b5639 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/bd4c1bbaf855ba85dd10beedc3c5f7f4 on http://speckle.xyz/streams/bf7685a6aa/objects/0a44ee96bf49e6de1fe0cacc0d2b5639 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/GigaPA
  - http://qudt.org/vocab/unit/GigaPA expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/GigaPA expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/constant/Value_AlphaParticleMassEnergyEquivalent
  - http://qudt.org/vocab/constant/Value_AlphaParticleMassEnergyEquivalent expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/unit/MilliM-PER-YR
  - http://qudt.org/vocab/unit/MilliM-PER-YR expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MilliM-PER-YR expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/b774bf5c9c8c398c5af5f6dbfc26c0d0
  - http://speckle.xyz/streams/bf7685a6aa/objects/671f0fd33000e3c39075ec98e1126a0a on http://speckle.xyz/streams/bf7685a6aa/objects/b774bf5c9c8c398c5af5f6dbfc26c0d0 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/671f0fd33000e3c39075ec98e1126a0a on http://speckle.xyz/streams/bf7685a6aa/objects/b774bf5c9c8c398c5af5f6dbfc26c0d0 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/OHM_Stat
  - http://qudt.org/vocab/unit/OHM_Stat expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/OHM_Stat expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/MolarEntropy
  - http://qudt.org/vocab/quantitykind/MolarEntropy expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/InverseMass
  - http://qudt.org/vocab/unit/PER-KiloGM on http://qudt.org/vocab/quantitykind/InverseMass needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PER-OZ on http://qudt.org/vocab/quantitykind/InverseMass needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PER-MilliGM on http://qudt.org/vocab/quantitykind/InverseMass needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PER-TONNE on http://qudt.org/vocab/quantitykind/InverseMass needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PER-TON on http://qudt.org/vocab/quantitykind/InverseMass needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PER-LB on http://qudt.org/vocab/quantitykind/InverseMass needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/unit/MilliM3
  - http://qudt.org/vocab/unit/MilliM3 expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MilliM3 expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/MegaJ-PER-KiloGM
  - http://qudt.org/vocab/unit/MegaJ-PER-KiloGM expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MegaJ-PER-KiloGM expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/c7cdebd6503d00bcc33baa632aa3c0b6
  - http://speckle.xyz/streams/bf7685a6aa/objects/3bba482343b8d72c580af14e0b0e05df on http://speckle.xyz/streams/bf7685a6aa/objects/c7cdebd6503d00bcc33baa632aa3c0b6 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/3bba482343b8d72c580af14e0b0e05df on http://speckle.xyz/streams/bf7685a6aa/objects/c7cdebd6503d00bcc33baa632aa3c0b6 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/ATM-M3-PER-MOL
  - http://qudt.org/vocab/unit/ATM-M3-PER-MOL expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/ATM-M3-PER-MOL expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/0754602c73b9887065ef69f8495083a6
  - http://speckle.xyz/streams/bf7685a6aa/objects/87f74a2a608ccd6932697eb7aea3ec7c on http://speckle.xyz/streams/bf7685a6aa/objects/0754602c73b9887065ef69f8495083a6 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/87f74a2a608ccd6932697eb7aea3ec7c on http://speckle.xyz/streams/bf7685a6aa/objects/0754602c73b9887065ef69f8495083a6 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/a5dfeb03190420f57d3335789cc9c769
  - http://speckle.xyz/streams/bf7685a6aa/objects/c1e7bac9cc9cff56ce6fff37c81afd27 on http://speckle.xyz/streams/bf7685a6aa/objects/a5dfeb03190420f57d3335789cc9c769 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/c1e7bac9cc9cff56ce6fff37c81afd27 on http://speckle.xyz/streams/bf7685a6aa/objects/a5dfeb03190420f57d3335789cc9c769 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/LuminousEnergy
  - http://qudt.org/vocab/unit/LM-HR on http://qudt.org/vocab/quantitykind/LuminousEnergy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/LuminousEnergy expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/unit/MilliGM-PER-M2
  - http://qudt.org/vocab/unit/MilliGM-PER-M2 expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MilliGM-PER-M2 expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/constant/Value_TauMuonMassRatio
  - http://qudt.org/vocab/constant/Value_TauMuonMassRatio expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/unit/GI_US-PER-MIN
  - http://qudt.org/vocab/unit/GI_US-PER-MIN expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/GI_US-PER-MIN expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/PK_UK-PER-DAY
  - http://qudt.org/vocab/unit/PK_UK-PER-DAY expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/PK_UK-PER-DAY expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/e4c83ad3e38f1736668b0f59531eeada
  - http://speckle.xyz/streams/bf7685a6aa/objects/8d3ab9635d58bfdfc81c3f647c553b97 on http://speckle.xyz/streams/bf7685a6aa/objects/e4c83ad3e38f1736668b0f59531eeada needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/8d3ab9635d58bfdfc81c3f647c553b97 on http://speckle.xyz/streams/bf7685a6aa/objects/e4c83ad3e38f1736668b0f59531eeada needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/VolumeOrSectionModulus
  - http://qudt.org/vocab/quantitykind/VolumeOrSectionModulus expected at most 1 uses of path qudt:plainTextDescription
http://qudt.org/vocab/unit/NanoS-PER-M
  - http://qudt.org/vocab/unit/NanoS-PER-M expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/NanoS-PER-M expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/PINT_US-PER-DAY
  - http://qudt.org/vocab/unit/PINT_US-PER-DAY expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/PINT_US-PER-DAY expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/Activity
  - http://qudt.org/vocab/quantitykind/Activity expected at most 1 uses of path qudt:latexDefinition
  - http://qudt.org/vocab/unit/CI on http://qudt.org/vocab/quantitykind/Activity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Activity expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/TeraBQ on http://qudt.org/vocab/quantitykind/Activity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PetaBQ on http://qudt.org/vocab/quantitykind/Activity needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/PathLength
  - http://qudt.org/vocab/unit/GA_Charriere on http://qudt.org/vocab/quantitykind/PathLength needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/ZOLL on http://qudt.org/vocab/quantitykind/PathLength needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CHAIN_US on http://qudt.org/vocab/quantitykind/PathLength needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/PathLength expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/9fc1207872d7476eecebb1e176177bc7
  - http://speckle.xyz/streams/bf7685a6aa/objects/1a82242a9320f719b8162c37bd9c580e on http://speckle.xyz/streams/bf7685a6aa/objects/9fc1207872d7476eecebb1e176177bc7 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/1a82242a9320f719b8162c37bd9c580e on http://speckle.xyz/streams/bf7685a6aa/objects/9fc1207872d7476eecebb1e176177bc7 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/MicroRAD
  - http://qudt.org/vocab/unit/MicroRAD expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MicroRAD expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/ElectronAffinity
  - http://qudt.org/vocab/unit/THERM_US on http://qudt.org/vocab/quantitykind/ElectronAffinity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/NanoJ on http://qudt.org/vocab/quantitykind/ElectronAffinity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/THERM_EC on http://qudt.org/vocab/quantitykind/ElectronAffinity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PicoJ on http://qudt.org/vocab/quantitykind/ElectronAffinity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/ElectronAffinity expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/unit/MicroJ
  - http://qudt.org/vocab/unit/MicroJ expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MicroJ expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/SectionModulus
  - http://qudt.org/vocab/unit/TON_Register on http://qudt.org/vocab/quantitykind/SectionModulus needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/SectionModulus expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/MI_UK3 on http://qudt.org/vocab/quantitykind/SectionModulus needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/4cf3069ba657229de19f2fc7be0175e3
  - http://speckle.xyz/streams/bf7685a6aa/objects/1dc2c8fcc6faad709669a1da5c22f1fb on http://speckle.xyz/streams/bf7685a6aa/objects/4cf3069ba657229de19f2fc7be0175e3 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/1dc2c8fcc6faad709669a1da5c22f1fb on http://speckle.xyz/streams/bf7685a6aa/objects/4cf3069ba657229de19f2fc7be0175e3 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/8cf0ecfd16edda2d08820783667bba7f
  - http://speckle.xyz/streams/bf7685a6aa/objects/5751a7a8490e489a1a00976905f9b01b on http://speckle.xyz/streams/bf7685a6aa/objects/8cf0ecfd16edda2d08820783667bba7f needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/5751a7a8490e489a1a00976905f9b01b on http://speckle.xyz/streams/bf7685a6aa/objects/8cf0ecfd16edda2d08820783667bba7f needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/e57364817a2af8cca1a60210555204c9
  - http://speckle.xyz/streams/bf7685a6aa/objects/f7c769a50d39f020556ab74d468269a2 on http://speckle.xyz/streams/bf7685a6aa/objects/e57364817a2af8cca1a60210555204c9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/f7c769a50d39f020556ab74d468269a2 on http://speckle.xyz/streams/bf7685a6aa/objects/e57364817a2af8cca1a60210555204c9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/constant/Value_NeutronMolarMass
  - http://qudt.org/vocab/constant/Value_NeutronMolarMass expected at most 1 uses of path qudt:standardUncertainty
http://speckle.xyz/streams/bf7685a6aa/objects/fd940a00b55584cbb6636a56939a6521
  - http://speckle.xyz/streams/bf7685a6aa/objects/5751a7a8490e489a1a00976905f9b01b on http://speckle.xyz/streams/bf7685a6aa/objects/fd940a00b55584cbb6636a56939a6521 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/5751a7a8490e489a1a00976905f9b01b on http://speckle.xyz/streams/bf7685a6aa/objects/fd940a00b55584cbb6636a56939a6521 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/FloatingPointCalculationCapability
  - http://qudt.org/vocab/unit/TeraFLOPS on http://qudt.org/vocab/quantitykind/FloatingPointCalculationCapability needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PetaFLOPS on http://qudt.org/vocab/quantitykind/FloatingPointCalculationCapability needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MegaFLOPS on http://qudt.org/vocab/quantitykind/FloatingPointCalculationCapability needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GigaFLOPS on http://qudt.org/vocab/quantitykind/FloatingPointCalculationCapability needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/1f920d5d911ff00e00b38fc99837c1b0
  - http://speckle.xyz/streams/bf7685a6aa/objects/5751a7a8490e489a1a00976905f9b01b on http://speckle.xyz/streams/bf7685a6aa/objects/1f920d5d911ff00e00b38fc99837c1b0 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/5751a7a8490e489a1a00976905f9b01b on http://speckle.xyz/streams/bf7685a6aa/objects/1f920d5d911ff00e00b38fc99837c1b0 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/3eebefa9a5b44e69d1948a5437fea76c
  - http://speckle.xyz/streams/bf7685a6aa/objects/2ae3884269b0a46e5ece05ce9e1fcd71 on http://speckle.xyz/streams/bf7685a6aa/objects/3eebefa9a5b44e69d1948a5437fea76c needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/2ae3884269b0a46e5ece05ce9e1fcd71 on http://speckle.xyz/streams/bf7685a6aa/objects/3eebefa9a5b44e69d1948a5437fea76c needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/a2fc5ce48c84b025c23a50f943c31481
  - http://speckle.xyz/streams/bf7685a6aa/objects/688eea56b7b78e0f7c7b90dced966926 on http://speckle.xyz/streams/bf7685a6aa/objects/a2fc5ce48c84b025c23a50f943c31481 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/688eea56b7b78e0f7c7b90dced966926 on http://speckle.xyz/streams/bf7685a6aa/objects/a2fc5ce48c84b025c23a50f943c31481 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/a9a694071404bfedd6c477b6a2fa6a83
  - http://speckle.xyz/streams/bf7685a6aa/objects/f7c769a50d39f020556ab74d468269a2 on http://speckle.xyz/streams/bf7685a6aa/objects/a9a694071404bfedd6c477b6a2fa6a83 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/f7c769a50d39f020556ab74d468269a2 on http://speckle.xyz/streams/bf7685a6aa/objects/a9a694071404bfedd6c477b6a2fa6a83 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/765cb88cd8d30fdfd839e5ba512bfdb0
  - http://speckle.xyz/streams/bf7685a6aa/objects/c1f8ba2020eb6468b1d37e4445924aa6 on http://speckle.xyz/streams/bf7685a6aa/objects/765cb88cd8d30fdfd839e5ba512bfdb0 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/c1f8ba2020eb6468b1d37e4445924aa6 on http://speckle.xyz/streams/bf7685a6aa/objects/765cb88cd8d30fdfd839e5ba512bfdb0 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/PicoS-PER-M
  - http://qudt.org/vocab/unit/PicoS-PER-M expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/PicoS-PER-M expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H0T-1D0
  - http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H0T-1D0 expected at most 1 uses of path qudt:latexDefinition
http://qudt.org/vocab/quantitykind/PhotosyntheticPhotonFluxDensity
  - http://qudt.org/vocab/quantitykind/PhotosyntheticPhotonFluxDensity expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/dimensionvector/A0E0L-2I1M0H0T0D1
  - http://qudt.org/vocab/dimensionvector/A0E0L-2I1M0H0T0D1 expected at most 1 uses of path qudt:latexDefinition
http://speckle.xyz/streams/bf7685a6aa/objects/c3030bdcaade98280df7231f15368c86
  - http://speckle.xyz/streams/bf7685a6aa/objects/c1e7bac9cc9cff56ce6fff37c81afd27 on http://speckle.xyz/streams/bf7685a6aa/objects/c3030bdcaade98280df7231f15368c86 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/c1e7bac9cc9cff56ce6fff37c81afd27 on http://speckle.xyz/streams/bf7685a6aa/objects/c3030bdcaade98280df7231f15368c86 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/constant/Value_ElectronNeutronMassRatio
  - http://qudt.org/vocab/constant/Value_ElectronNeutronMassRatio expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/unit/QT_US-PER-HR
  - http://qudt.org/vocab/unit/QT_US-PER-HR expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/QT_US-PER-HR expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/MicroMOL-PER-GM-HR
  - http://qudt.org/vocab/unit/MicroMOL-PER-GM-HR expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MicroMOL-PER-GM-HR expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/255d201b3405fe0973589626a6e41d2f
  - http://speckle.xyz/streams/bf7685a6aa/objects/768970d137816ceece03741af232ae99 on http://speckle.xyz/streams/bf7685a6aa/objects/255d201b3405fe0973589626a6e41d2f needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/768970d137816ceece03741af232ae99 on http://speckle.xyz/streams/bf7685a6aa/objects/255d201b3405fe0973589626a6e41d2f needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/DigitRate
  - http://qudt.org/vocab/unit/MegaBAUD on http://qudt.org/vocab/quantitykind/DigitRate needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloBD on http://qudt.org/vocab/quantitykind/DigitRate needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/BAUD on http://qudt.org/vocab/quantitykind/DigitRate needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloBAUD on http://qudt.org/vocab/quantitykind/DigitRate needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/AtomicMass
  - http://qudt.org/vocab/unit/MegaTONNE on http://qudt.org/vocab/quantitykind/AtomicMass needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MOMME_Pearl on http://qudt.org/vocab/quantitykind/AtomicMass needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MegaTON on http://qudt.org/vocab/quantitykind/AtomicMass needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MOMME_Textile on http://qudt.org/vocab/quantitykind/AtomicMass needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/TON on http://qudt.org/vocab/quantitykind/AtomicMass needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PFUND on http://qudt.org/vocab/quantitykind/AtomicMass needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/AtomicMass expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/unit/MilliL-PER-MIN
  - http://qudt.org/vocab/unit/MilliL-PER-MIN expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MilliL-PER-MIN expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/VolumePerTime
  - http://qudt.org/vocab/unit/M3-PER-YR on http://qudt.org/vocab/quantitykind/VolumePerTime needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/unit/MilliIN
  - http://qudt.org/vocab/unit/MilliIN expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MilliIN expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/FirstStageMassRatio
  - http://qudt.org/vocab/unit/LB-PER-LB on http://qudt.org/vocab/quantitykind/FirstStageMassRatio needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/FirstStageMassRatio expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/unit/S_Stat
  - http://qudt.org/vocab/unit/S_Stat expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/S_Stat expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/TON_FG
  - http://qudt.org/vocab/unit/TON_FG expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/1122759a213ad9a08f3aeea8ec56992e
  - http://speckle.xyz/streams/bf7685a6aa/objects/30fb4b69fa549ef9a7e18ead4885dec5 on http://speckle.xyz/streams/bf7685a6aa/objects/1122759a213ad9a08f3aeea8ec56992e needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/30fb4b69fa549ef9a7e18ead4885dec5 on http://speckle.xyz/streams/bf7685a6aa/objects/1122759a213ad9a08f3aeea8ec56992e needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/ec094d073b30d8aa08927176d16807b4
  - http://speckle.xyz/streams/bf7685a6aa/objects/6522948c17f68892a20ab290338e3478 on http://speckle.xyz/streams/bf7685a6aa/objects/ec094d073b30d8aa08927176d16807b4 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/6522948c17f68892a20ab290338e3478 on http://speckle.xyz/streams/bf7685a6aa/objects/ec094d073b30d8aa08927176d16807b4 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/Exposure
  - http://qudt.org/vocab/unit/A-HR-PER-KiloGM on http://qudt.org/vocab/quantitykind/Exposure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Exposure expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/43d091949878e54b8fe224e2686e4527
  - http://speckle.xyz/streams/bf7685a6aa/objects/0dbe61414366819b7df5eff0ff4290d0 on http://speckle.xyz/streams/bf7685a6aa/objects/43d091949878e54b8fe224e2686e4527 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/0dbe61414366819b7df5eff0ff4290d0 on http://speckle.xyz/streams/bf7685a6aa/objects/43d091949878e54b8fe224e2686e4527 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/d57494bf0a02fde2a6642c2d5935043c
  - http://speckle.xyz/streams/bf7685a6aa/objects/42b77602b43873e4fbc17acb6b3b7f34 on http://speckle.xyz/streams/bf7685a6aa/objects/d57494bf0a02fde2a6642c2d5935043c needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/42b77602b43873e4fbc17acb6b3b7f34 on http://speckle.xyz/streams/bf7685a6aa/objects/d57494bf0a02fde2a6642c2d5935043c needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/EnergyPerArea
  - http://qudt.org/vocab/unit/BTU_TH-PER-FT2 on http://qudt.org/vocab/quantitykind/EnergyPerArea needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/ERG-PER-CentiM2 on http://qudt.org/vocab/quantitykind/EnergyPerArea needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CentiN-M-PER-M2 on http://qudt.org/vocab/quantitykind/EnergyPerArea needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/EnergyPerArea expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/NanoN-M-PER-M2 on http://qudt.org/vocab/quantitykind/EnergyPerArea needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/LANGLEY on http://qudt.org/vocab/quantitykind/EnergyPerArea needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MicroN-M-PER-M2 on http://qudt.org/vocab/quantitykind/EnergyPerArea needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GigaN-M-PER-M2 on http://qudt.org/vocab/quantitykind/EnergyPerArea needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloN-M-PER-M2 on http://qudt.org/vocab/quantitykind/EnergyPerArea needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliN-M-PER-M2 on http://qudt.org/vocab/quantitykind/EnergyPerArea needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CAL_TH-PER-CentiM2 on http://qudt.org/vocab/quantitykind/EnergyPerArea needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliJ-PER-M2 on http://qudt.org/vocab/quantitykind/EnergyPerArea needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MegaN-M-PER-M2 on http://qudt.org/vocab/quantitykind/EnergyPerArea needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/5e9d3adac5c10cf0726d408779b5097d
  - http://speckle.xyz/streams/bf7685a6aa/objects/5aa8dbce5ed730aeaaab18a2c23b2dae on http://speckle.xyz/streams/bf7685a6aa/objects/5e9d3adac5c10cf0726d408779b5097d needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/5aa8dbce5ed730aeaaab18a2c23b2dae on http://speckle.xyz/streams/bf7685a6aa/objects/5e9d3adac5c10cf0726d408779b5097d needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/9c456b1fb6c5c6bae16b3f9ce0c954f3
  - http://speckle.xyz/streams/bf7685a6aa/objects/57b18a74ff93e5a9428e838f72c71067 on http://speckle.xyz/streams/bf7685a6aa/objects/9c456b1fb6c5c6bae16b3f9ce0c954f3 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/57b18a74ff93e5a9428e838f72c71067 on http://speckle.xyz/streams/bf7685a6aa/objects/9c456b1fb6c5c6bae16b3f9ce0c954f3 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/ActivePower
  - http://qudt.org/vocab/unit/TeraJ-PER-SEC on http://qudt.org/vocab/quantitykind/ActivePower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PFERDESTAERKE on http://qudt.org/vocab/quantitykind/ActivePower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/HP_H2O on http://qudt.org/vocab/quantitykind/ActivePower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/ExaW on http://qudt.org/vocab/quantitykind/ActivePower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PetaW on http://qudt.org/vocab/quantitykind/ActivePower needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/ModulusOfImpedance
  - http://qudt.org/vocab/quantitykind/ModulusOfImpedance expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/MeanEnergyImparted
  - http://qudt.org/vocab/quantitykind/MeanEnergyImparted expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/THERM_EC on http://qudt.org/vocab/quantitykind/MeanEnergyImparted needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/NanoJ on http://qudt.org/vocab/quantitykind/MeanEnergyImparted needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PicoJ on http://qudt.org/vocab/quantitykind/MeanEnergyImparted needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/THERM_US on http://qudt.org/vocab/quantitykind/MeanEnergyImparted needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/32ac382e477416ccf1699fe74ac70686
  - http://speckle.xyz/streams/bf7685a6aa/objects/e8908b5eec592c1e9e520605ad787a0c on http://speckle.xyz/streams/bf7685a6aa/objects/32ac382e477416ccf1699fe74ac70686 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e8908b5eec592c1e9e520605ad787a0c on http://speckle.xyz/streams/bf7685a6aa/objects/32ac382e477416ccf1699fe74ac70686 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/a9c6f73980e3d53d3ecbd5ce5fb5d6eb
  - http://speckle.xyz/streams/bf7685a6aa/objects/815aa4f3a6e9b6bd3d666fe7d5662428 on http://speckle.xyz/streams/bf7685a6aa/objects/a9c6f73980e3d53d3ecbd5ce5fb5d6eb needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/815aa4f3a6e9b6bd3d666fe7d5662428 on http://speckle.xyz/streams/bf7685a6aa/objects/a9c6f73980e3d53d3ecbd5ce5fb5d6eb needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/100bb27a8f5a8cb80b98042540200494
  - http://speckle.xyz/streams/bf7685a6aa/objects/0e5bab348c0d7a43d3197d71b2ecdff0 on http://speckle.xyz/streams/bf7685a6aa/objects/100bb27a8f5a8cb80b98042540200494 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/0e5bab348c0d7a43d3197d71b2ecdff0 on http://speckle.xyz/streams/bf7685a6aa/objects/100bb27a8f5a8cb80b98042540200494 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/constant/Value_DeuteronGFactor
  - http://qudt.org/vocab/constant/Value_DeuteronGFactor expected at most 1 uses of path qudt:standardUncertainty
http://speckle.xyz/streams/bf7685a6aa/objects/af23706b5fe867981278c95d7d437ef2
  - http://speckle.xyz/streams/bf7685a6aa/objects/9bbb96d450ec2617aa02cc6f1b800bba on http://speckle.xyz/streams/bf7685a6aa/objects/af23706b5fe867981278c95d7d437ef2 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/9bbb96d450ec2617aa02cc6f1b800bba on http://speckle.xyz/streams/bf7685a6aa/objects/af23706b5fe867981278c95d7d437ef2 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/7d4726da3591353c66702af87d1a73e0
  - http://speckle.xyz/streams/bf7685a6aa/objects/1a82242a9320f719b8162c37bd9c580e on http://speckle.xyz/streams/bf7685a6aa/objects/7d4726da3591353c66702af87d1a73e0 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/1a82242a9320f719b8162c37bd9c580e on http://speckle.xyz/streams/bf7685a6aa/objects/7d4726da3591353c66702af87d1a73e0 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/DoseEquivalentQualityFactor
  - http://qudt.org/vocab/quantitykind/DoseEquivalentQualityFactor expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/OsmoticPressure
  - http://qudt.org/vocab/unit/CentiM_HG_0DEG_C on http://qudt.org/vocab/quantitykind/OsmoticPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CentiM_H2O_4DEG_C on http://qudt.org/vocab/quantitykind/OsmoticPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/M_H2O on http://qudt.org/vocab/quantitykind/OsmoticPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PDL-PER-IN2 on http://qudt.org/vocab/quantitykind/OsmoticPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/IN_H2O_60DEG_F on http://qudt.org/vocab/quantitykind/OsmoticPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/FT_H2O_39dot2DEG_F on http://qudt.org/vocab/quantitykind/OsmoticPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/IN_HG_60DEG_F on http://qudt.org/vocab/quantitykind/OsmoticPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloN-PER-M2 on http://qudt.org/vocab/quantitykind/OsmoticPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/IN_H2O_39dot2DEG_F on http://qudt.org/vocab/quantitykind/OsmoticPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/IN_HG_32DEG_F on http://qudt.org/vocab/quantitykind/OsmoticPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CentiM_H20_4DEG_C on http://qudt.org/vocab/quantitykind/OsmoticPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/OsmoticPressure expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/MacroscopicCrossSection
  - http://qudt.org/vocab/unit/KiloMIL_Circ on http://qudt.org/vocab/quantitykind/MacroscopicCrossSection needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MI_US2 on http://qudt.org/vocab/quantitykind/MacroscopicCrossSection needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/MacroscopicCrossSection expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/KiloM2 on http://qudt.org/vocab/quantitykind/MacroscopicCrossSection needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/AreaPerLength
  - http://qudt.org/vocab/unit/M2-PER-M on http://qudt.org/vocab/quantitykind/AreaPerLength needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/WaterHorsepower
  - http://qudt.org/vocab/unit/ExaJ-PER-SEC on http://qudt.org/vocab/quantitykind/WaterHorsepower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PetaW on http://qudt.org/vocab/quantitykind/WaterHorsepower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/ExaW on http://qudt.org/vocab/quantitykind/WaterHorsepower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/TeraJ-PER-SEC on http://qudt.org/vocab/quantitykind/WaterHorsepower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliJ-PER-SEC on http://qudt.org/vocab/quantitykind/WaterHorsepower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloJ-PER-HR on http://qudt.org/vocab/quantitykind/WaterHorsepower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/J-PER-MIN on http://qudt.org/vocab/quantitykind/WaterHorsepower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloJ-PER-DAY on http://qudt.org/vocab/quantitykind/WaterHorsepower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GigaJ-PER-SEC on http://qudt.org/vocab/quantitykind/WaterHorsepower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/NanoJ-PER-SEC on http://qudt.org/vocab/quantitykind/WaterHorsepower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MicroJ-PER-SEC on http://qudt.org/vocab/quantitykind/WaterHorsepower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PicoJ-PER-SEC on http://qudt.org/vocab/quantitykind/WaterHorsepower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloJ-PER-MIN on http://qudt.org/vocab/quantitykind/WaterHorsepower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/J-PER-DAY on http://qudt.org/vocab/quantitykind/WaterHorsepower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PFERDESTAERKE on http://qudt.org/vocab/quantitykind/WaterHorsepower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloJ-PER-SEC on http://qudt.org/vocab/quantitykind/WaterHorsepower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PetaJ-PER-SEC on http://qudt.org/vocab/quantitykind/WaterHorsepower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/TeraW-HR-PER-YR on http://qudt.org/vocab/quantitykind/WaterHorsepower needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/unit/NanoBQ-PER-L
  - http://qudt.org/vocab/unit/NanoBQ-PER-L expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/NanoBQ-PER-L expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/constant/Value_ShieldedProtonMagneticMomentToBohrMagnetonRatio
  - http://qudt.org/vocab/constant/Value_ShieldedProtonMagneticMomentToBohrMagnetonRatio expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/quantitykind/AuditoryThresholds
  - http://qudt.org/vocab/unit/DeciB_A on http://qudt.org/vocab/quantitykind/AuditoryThresholds needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/DeciB_ISO on http://qudt.org/vocab/quantitykind/AuditoryThresholds needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/AuditoryThresholds expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/DeciB_Z on http://qudt.org/vocab/quantitykind/AuditoryThresholds needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/unit/MicroL
  - http://qudt.org/vocab/unit/MicroL expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MicroL expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/ShannonDiversityIndex
  - http://qudt.org/vocab/quantitykind/ShannonDiversityIndex expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/constant/Value_ProtonMuonMassRatio
  - http://qudt.org/vocab/constant/Value_ProtonMuonMassRatio expected at most 1 uses of path qudt:standardUncertainty
http://speckle.xyz/streams/bf7685a6aa/objects/327405c1083f8df7a6e763f84f90e721
  - http://speckle.xyz/streams/bf7685a6aa/objects/5751a7a8490e489a1a00976905f9b01b on http://speckle.xyz/streams/bf7685a6aa/objects/327405c1083f8df7a6e763f84f90e721 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/5751a7a8490e489a1a00976905f9b01b on http://speckle.xyz/streams/bf7685a6aa/objects/327405c1083f8df7a6e763f84f90e721 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/HeatFlowRatePerUnitArea
  - http://qudt.org/vocab/unit/BTU_IT-PER-IN2-SEC on http://qudt.org/vocab/quantitykind/HeatFlowRatePerUnitArea needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CAL_TH-PER-CentiM2-SEC on http://qudt.org/vocab/quantitykind/HeatFlowRatePerUnitArea needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/M-PA-PER-SEC on http://qudt.org/vocab/quantitykind/HeatFlowRatePerUnitArea needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CAL_TH-PER-CentiM2-MIN on http://qudt.org/vocab/quantitykind/HeatFlowRatePerUnitArea needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/BTU_TH-PER-FT2-HR on http://qudt.org/vocab/quantitykind/HeatFlowRatePerUnitArea needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/BTU_TH-PER-FT2-SEC on http://qudt.org/vocab/quantitykind/HeatFlowRatePerUnitArea needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/BTU_IT-PER-FT2-HR on http://qudt.org/vocab/quantitykind/HeatFlowRatePerUnitArea needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/BTU_IT-PER-FT2-SEC on http://qudt.org/vocab/quantitykind/HeatFlowRatePerUnitArea needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/NanoW-PER-M2 on http://qudt.org/vocab/quantitykind/HeatFlowRatePerUnitArea needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/BTU_TH-PER-FT2-MIN on http://qudt.org/vocab/quantitykind/HeatFlowRatePerUnitArea needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/41b35e221309f17846bcab0e5bc6598f
  - http://speckle.xyz/streams/bf7685a6aa/objects/2bab3a834da573d903244a9902f78aa1 on http://speckle.xyz/streams/bf7685a6aa/objects/41b35e221309f17846bcab0e5bc6598f needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/2bab3a834da573d903244a9902f78aa1 on http://speckle.xyz/streams/bf7685a6aa/objects/41b35e221309f17846bcab0e5bc6598f needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/constant/Value_ProtonTauMassRatio
  - http://qudt.org/vocab/constant/Value_ProtonTauMassRatio expected at most 1 uses of path qudt:standardUncertainty
http://speckle.xyz/streams/bf7685a6aa/objects/4cef3dbde48b0522c277c3f9a02921cc
  - http://speckle.xyz/streams/bf7685a6aa/objects/c59d0357cccce2c360fa88610cfb9dc0 on http://speckle.xyz/streams/bf7685a6aa/objects/4cef3dbde48b0522c277c3f9a02921cc needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/c59d0357cccce2c360fa88610cfb9dc0 on http://speckle.xyz/streams/bf7685a6aa/objects/4cef3dbde48b0522c277c3f9a02921cc needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/EquilibriumPositionVectorOfIon
  - http://qudt.org/vocab/unit/ZOLL on http://qudt.org/vocab/quantitykind/EquilibriumPositionVectorOfIon needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/EquilibriumPositionVectorOfIon expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/CHAIN_US on http://qudt.org/vocab/quantitykind/EquilibriumPositionVectorOfIon needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GA_Charriere on http://qudt.org/vocab/quantitykind/EquilibriumPositionVectorOfIon needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/2f14fe288c60fa10841a66707b730ff4
  - http://speckle.xyz/streams/bf7685a6aa/objects/ea809d7a6106eaba6d818bfdb3e3e5b9 on http://speckle.xyz/streams/bf7685a6aa/objects/2f14fe288c60fa10841a66707b730ff4 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/ea809d7a6106eaba6d818bfdb3e3e5b9 on http://speckle.xyz/streams/bf7685a6aa/objects/2f14fe288c60fa10841a66707b730ff4 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/5e8bfa0ae9db9bbb725a48af5aa624a6
  - http://speckle.xyz/streams/bf7685a6aa/objects/815aa4f3a6e9b6bd3d666fe7d5662428 on http://speckle.xyz/streams/bf7685a6aa/objects/5e8bfa0ae9db9bbb725a48af5aa624a6 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/815aa4f3a6e9b6bd3d666fe7d5662428 on http://speckle.xyz/streams/bf7685a6aa/objects/5e8bfa0ae9db9bbb725a48af5aa624a6 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/a8d35e250b53412b39a2834f66ee1635
  - http://speckle.xyz/streams/bf7685a6aa/objects/1a82242a9320f719b8162c37bd9c580e on http://speckle.xyz/streams/bf7685a6aa/objects/a8d35e250b53412b39a2834f66ee1635 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/1a82242a9320f719b8162c37bd9c580e on http://speckle.xyz/streams/bf7685a6aa/objects/a8d35e250b53412b39a2834f66ee1635 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/f856ff546cef6621f3c3d8d01c7e0261
  - http://speckle.xyz/streams/bf7685a6aa/objects/4889cd9870fe6a53e7dd4c43f0048a0a on http://speckle.xyz/streams/bf7685a6aa/objects/f856ff546cef6621f3c3d8d01c7e0261 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/4889cd9870fe6a53e7dd4c43f0048a0a on http://speckle.xyz/streams/bf7685a6aa/objects/f856ff546cef6621f3c3d8d01c7e0261 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T-3D-1
  - http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T-3D-1 expected at most 1 uses of path qudt:latexDefinition
http://qudt.org/vocab/constant/Value_AtomicUnitOf2ndHyperpolarizability
  - http://qudt.org/vocab/constant/Value_AtomicUnitOf2ndHyperpolarizability expected at most 1 uses of path qudt:standardUncertainty
http://speckle.xyz/streams/bf7685a6aa/objects/f0d385a445ab41519e5bb4558f4f6034
  - http://speckle.xyz/streams/bf7685a6aa/objects/1aa18520ad959a6b477ce9a6cd61c432 on http://speckle.xyz/streams/bf7685a6aa/objects/f0d385a445ab41519e5bb4558f4f6034 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/1aa18520ad959a6b477ce9a6cd61c432 on http://speckle.xyz/streams/bf7685a6aa/objects/f0d385a445ab41519e5bb4558f4f6034 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/ReverberationTime
  - http://qudt.org/vocab/quantitykind/ReverberationTime expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/FemtoSEC on http://qudt.org/vocab/quantitykind/ReverberationTime needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/POISE-PER-PA on http://qudt.org/vocab/quantitykind/ReverberationTime needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/YR_Metrology on http://qudt.org/vocab/quantitykind/ReverberationTime needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MegaSEC on http://qudt.org/vocab/quantitykind/ReverberationTime needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/AttoSEC on http://qudt.org/vocab/quantitykind/ReverberationTime needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/DeciSEC on http://qudt.org/vocab/quantitykind/ReverberationTime needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/CartesianVolume
  - http://qudt.org/vocab/unit/NT on http://qudt.org/vocab/quantitykind/CartesianVolume needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloCubicFT on http://qudt.org/vocab/quantitykind/CartesianVolume needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/TON_SHIPPING_UK on http://qudt.org/vocab/quantitykind/CartesianVolume needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/CartesianVolume expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/MI_UK3 on http://qudt.org/vocab/quantitykind/CartesianVolume needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/AC-FT_US on http://qudt.org/vocab/quantitykind/CartesianVolume needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/TON_Register on http://qudt.org/vocab/quantitykind/CartesianVolume needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/LinearThermalExpansion
  - http://qudt.org/vocab/quantitykind/LinearThermalExpansion expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/unit/BU_UK-PER-HR
  - http://qudt.org/vocab/unit/BU_UK-PER-HR expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/BU_UK-PER-HR expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/IN3-PER-MIN
  - http://qudt.org/vocab/unit/IN3-PER-MIN expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/IN3-PER-MIN expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/55f7c6c78244a26ff8039eb1dd8a74ec
  - http://speckle.xyz/streams/bf7685a6aa/objects/e8908b5eec592c1e9e520605ad787a0c on http://speckle.xyz/streams/bf7685a6aa/objects/55f7c6c78244a26ff8039eb1dd8a74ec needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e8908b5eec592c1e9e520605ad787a0c on http://speckle.xyz/streams/bf7685a6aa/objects/55f7c6c78244a26ff8039eb1dd8a74ec needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/0773a9a6ad5fc3d42a974affb9ca289c
  - http://speckle.xyz/streams/bf7685a6aa/objects/671f0fd33000e3c39075ec98e1126a0a on http://speckle.xyz/streams/bf7685a6aa/objects/0773a9a6ad5fc3d42a974affb9ca289c needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/671f0fd33000e3c39075ec98e1126a0a on http://speckle.xyz/streams/bf7685a6aa/objects/0773a9a6ad5fc3d42a974affb9ca289c needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/MilliW-PER-M2-NanoM
  - http://qudt.org/vocab/unit/MilliW-PER-M2-NanoM expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MilliW-PER-M2-NanoM expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/ElectricCharge
  - http://qudt.org/vocab/quantitykind/ElectricCharge expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/KiloJ-PER-KiloV on http://qudt.org/vocab/quantitykind/ElectricCharge needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliA-SEC on http://qudt.org/vocab/quantitykind/ElectricCharge needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/unit/MegaOHM
  - http://qudt.org/vocab/unit/MegaOHM expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MegaOHM expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/26dc7fea8e6aa7cb63838f4a3ab1277b
  - http://speckle.xyz/streams/bf7685a6aa/objects/e7c9e2f9a7a0a501d31eab5423876669 on http://speckle.xyz/streams/bf7685a6aa/objects/26dc7fea8e6aa7cb63838f4a3ab1277b needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e7c9e2f9a7a0a501d31eab5423876669 on http://speckle.xyz/streams/bf7685a6aa/objects/26dc7fea8e6aa7cb63838f4a3ab1277b needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/RelativeMassExcess
  - http://qudt.org/vocab/quantitykind/RelativeMassExcess expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/NumberOfParticles
  - http://qudt.org/vocab/quantitykind/NumberOfParticles expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/MeanFreePath
  - http://qudt.org/vocab/unit/ZOLL on http://qudt.org/vocab/quantitykind/MeanFreePath needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GA_Charriere on http://qudt.org/vocab/quantitykind/MeanFreePath needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CHAIN_US on http://qudt.org/vocab/quantitykind/MeanFreePath needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/MeanFreePath expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/67970e051d594df3b23a43df75330b53
  - http://speckle.xyz/streams/bf7685a6aa/objects/06c67bfcd6d2f5b575f38dba0f51b672 on http://speckle.xyz/streams/bf7685a6aa/objects/67970e051d594df3b23a43df75330b53 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/06c67bfcd6d2f5b575f38dba0f51b672 on http://speckle.xyz/streams/bf7685a6aa/objects/67970e051d594df3b23a43df75330b53 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/CentiGM
  - http://qudt.org/vocab/unit/CentiGM expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/CentiGM expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/constant/Value_ShieldedHelionMagneticMomentToBohrMagnetonRatio
  - http://qudt.org/vocab/constant/Value_ShieldedHelionMagneticMomentToBohrMagnetonRatio expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/quantitykind/SecondOrderReactionRateConstant
  - http://qudt.org/vocab/unit/L-PER-MOL-SEC on http://qudt.org/vocab/quantitykind/SecondOrderReactionRateConstant needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/SecondOrderReactionRateConstant expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/a659967afc6666beb1cbe55817a8446a
  - http://speckle.xyz/streams/bf7685a6aa/objects/11e2de971443671ebd78fe480e1cd147 on http://speckle.xyz/streams/bf7685a6aa/objects/a659967afc6666beb1cbe55817a8446a needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/11e2de971443671ebd78fe480e1cd147 on http://speckle.xyz/streams/bf7685a6aa/objects/a659967afc6666beb1cbe55817a8446a needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/YoctoC
  - http://qudt.org/vocab/unit/YoctoC expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/YoctoC expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/constant/Value_ElectronChargeToMassQuotient
  - http://qudt.org/vocab/constant/Value_ElectronChargeToMassQuotient expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/constant/Value_AtomicMassConstant
  - http://qudt.org/vocab/constant/Value_AtomicMassConstant expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/constant/Value_LatticeParameterOfSilicon
  - http://qudt.org/vocab/constant/Value_LatticeParameterOfSilicon expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/dimensionvector/A0E0L1I0M1H0T-2D0
  - http://qudt.org/vocab/dimensionvector/A0E0L1I0M1H0T-2D0 expected at most 1 uses of path qudt:latexDefinition
http://speckle.xyz/streams/bf7685a6aa/objects/edcbec2d610b9063fd137874817a1921
  - http://speckle.xyz/streams/bf7685a6aa/objects/1dc2c8fcc6faad709669a1da5c22f1fb on http://speckle.xyz/streams/bf7685a6aa/objects/edcbec2d610b9063fd137874817a1921 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/1dc2c8fcc6faad709669a1da5c22f1fb on http://speckle.xyz/streams/bf7685a6aa/objects/edcbec2d610b9063fd137874817a1921 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/PER-PlanckMass2
  - http://qudt.org/vocab/unit/PER-PlanckMass2 expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/PER-PlanckMass2 expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/MicroOHM
  - http://qudt.org/vocab/unit/MicroOHM expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MicroOHM expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/MicroGRAY
  - http://qudt.org/vocab/unit/MicroGRAY expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MicroGRAY expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/constant/Value_FirstRadiationConstant
  - http://qudt.org/vocab/constant/Value_FirstRadiationConstant expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/unit/PicoMOL-PER-L-HR
  - http://qudt.org/vocab/unit/PicoMOL-PER-L-HR expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/PicoMOL-PER-L-HR expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/4f463894bb9db08a3be0c791e94b4130
  - http://speckle.xyz/streams/bf7685a6aa/objects/5aa8dbce5ed730aeaaab18a2c23b2dae on http://speckle.xyz/streams/bf7685a6aa/objects/4f463894bb9db08a3be0c791e94b4130 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/5aa8dbce5ed730aeaaab18a2c23b2dae on http://speckle.xyz/streams/bf7685a6aa/objects/4f463894bb9db08a3be0c791e94b4130 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/MicroFARAD-PER-KiloM
  - http://qudt.org/vocab/unit/MicroFARAD-PER-KiloM expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MicroFARAD-PER-KiloM expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/FissionMultiplicationFactor
  - http://qudt.org/vocab/unit/FLIGHT on http://qudt.org/vocab/quantitykind/FissionMultiplicationFactor needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/FissionMultiplicationFactor expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/26603ad27e683b68e6d04b0a459dd6f6
  - http://speckle.xyz/streams/bf7685a6aa/objects/15b9f1bbc651a81dea26684ad543f70a on http://speckle.xyz/streams/bf7685a6aa/objects/26603ad27e683b68e6d04b0a459dd6f6 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/15b9f1bbc651a81dea26684ad543f70a on http://speckle.xyz/streams/bf7685a6aa/objects/26603ad27e683b68e6d04b0a459dd6f6 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/6d566dad943b16c62bcbb068be4bc385
  - http://speckle.xyz/streams/bf7685a6aa/objects/39585c6ef6b03b8dbb18fb8a3bed20a3 on http://speckle.xyz/streams/bf7685a6aa/objects/6d566dad943b16c62bcbb068be4bc385 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/39585c6ef6b03b8dbb18fb8a3bed20a3 on http://speckle.xyz/streams/bf7685a6aa/objects/6d566dad943b16c62bcbb068be4bc385 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/MassPerArea
  - http://qudt.org/vocab/unit/MicroGM-PER-IN2 on http://qudt.org/vocab/quantitykind/MassPerArea needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/LB-PER-YD2 on http://qudt.org/vocab/quantitykind/MassPerArea needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/OZ-PER-IN2 on http://qudt.org/vocab/quantitykind/MassPerArea needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/NanoGM-PER-CentiM2 on http://qudt.org/vocab/quantitykind/MassPerArea needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MicroGM-PER-CentiM2 on http://qudt.org/vocab/quantitykind/MassPerArea needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GM-PER-MilliM2 on http://qudt.org/vocab/quantitykind/MassPerArea needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/MassDefect
  - http://qudt.org/vocab/unit/MegaTONNE on http://qudt.org/vocab/quantitykind/MassDefect needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MegaTON on http://qudt.org/vocab/quantitykind/MassDefect needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MOMME_Textile on http://qudt.org/vocab/quantitykind/MassDefect needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MOMME_Pearl on http://qudt.org/vocab/quantitykind/MassDefect needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/MassDefect expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/TON on http://qudt.org/vocab/quantitykind/MassDefect needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PFUND on http://qudt.org/vocab/quantitykind/MassDefect needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/ThermalTransmittance
  - http://qudt.org/vocab/unit/BTU_TH-PER-SEC-FT2-DEG_F on http://qudt.org/vocab/quantitykind/ThermalTransmittance needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloW-PER-M2-K on http://qudt.org/vocab/quantitykind/ThermalTransmittance needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/ThermalTransmittance expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/BTU_IT-PER-SEC-FT2-DEG_F on http://qudt.org/vocab/quantitykind/ThermalTransmittance needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloGM-PER-SEC3-K on http://qudt.org/vocab/quantitykind/ThermalTransmittance needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/BTU_TH-PER-HR-FT2-DEG_F on http://qudt.org/vocab/quantitykind/ThermalTransmittance needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/BTU_IT-PER-HR-FT2-DEG_F on http://qudt.org/vocab/quantitykind/ThermalTransmittance needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/unit/NanoMOL-PER-MicroMOL-DAY
  - http://qudt.org/vocab/unit/NanoMOL-PER-MicroMOL-DAY expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/NanoMOL-PER-MicroMOL-DAY expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/ExaBYTE
  - http://qudt.org/vocab/unit/ExaBYTE expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/ExaBYTE expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/AverageLogarithmicEnergyDecrement
  - http://qudt.org/vocab/quantitykind/AverageLogarithmicEnergyDecrement expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/unit/MilliM2-PER-SEC
  - http://qudt.org/vocab/unit/MilliM2-PER-SEC expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MilliM2-PER-SEC expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/SurgeImpedanceOfTheMedium
  - http://qudt.org/vocab/quantitykind/SurgeImpedanceOfTheMedium expected at most 1 uses of path qudt:plainTextDescription
http://speckle.xyz/streams/bf7685a6aa/objects/e79fa9b5beca777bec86c93e87382c08
  - http://speckle.xyz/streams/bf7685a6aa/objects/af1446d067d1a6d619cec36730b3234c on http://speckle.xyz/streams/bf7685a6aa/objects/e79fa9b5beca777bec86c93e87382c08 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/af1446d067d1a6d619cec36730b3234c on http://speckle.xyz/streams/bf7685a6aa/objects/e79fa9b5beca777bec86c93e87382c08 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/55fe7778d7009d53ad0a18526c17a741
  - http://speckle.xyz/streams/bf7685a6aa/objects/688eea56b7b78e0f7c7b90dced966926 on http://speckle.xyz/streams/bf7685a6aa/objects/55fe7778d7009d53ad0a18526c17a741 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/688eea56b7b78e0f7c7b90dced966926 on http://speckle.xyz/streams/bf7685a6aa/objects/55fe7778d7009d53ad0a18526c17a741 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/BodyMassIndex
  - http://qudt.org/vocab/unit/LB-PER-YD2 on http://qudt.org/vocab/quantitykind/BodyMassIndex needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GM-PER-MilliM2 on http://qudt.org/vocab/quantitykind/BodyMassIndex needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/OZ-PER-IN2 on http://qudt.org/vocab/quantitykind/BodyMassIndex needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/unit/MicroGM-PER-L
  - http://qudt.org/vocab/unit/MicroGM-PER-L expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MicroGM-PER-L expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T-1D0
  - http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T-1D0 expected at most 1 uses of path qudt:latexDefinition
http://speckle.xyz/streams/bf7685a6aa/objects/b6cde906ac018d0ce00ec850ba3db853
  - http://speckle.xyz/streams/bf7685a6aa/objects/1a6afbdfd275e54fbec0848e9cc9a48d on http://speckle.xyz/streams/bf7685a6aa/objects/b6cde906ac018d0ce00ec850ba3db853 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/1a6afbdfd275e54fbec0848e9cc9a48d on http://speckle.xyz/streams/bf7685a6aa/objects/b6cde906ac018d0ce00ec850ba3db853 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/MicroM-PER-L-DAY
  - http://qudt.org/vocab/unit/MicroM-PER-L-DAY expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MicroM-PER-L-DAY expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/Stress
  - http://qudt.org/vocab/unit/IN_HG_60DEG_F on http://qudt.org/vocab/quantitykind/Stress needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloN-PER-M2 on http://qudt.org/vocab/quantitykind/Stress needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CentiM_HG_0DEG_C on http://qudt.org/vocab/quantitykind/Stress needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/IN_HG_32DEG_F on http://qudt.org/vocab/quantitykind/Stress needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/IN_H2O_39dot2DEG_F on http://qudt.org/vocab/quantitykind/Stress needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/IN_H2O_60DEG_F on http://qudt.org/vocab/quantitykind/Stress needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PDL-PER-IN2 on http://qudt.org/vocab/quantitykind/Stress needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CentiM_H20_4DEG_C on http://qudt.org/vocab/quantitykind/Stress needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/M_H2O on http://qudt.org/vocab/quantitykind/Stress needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CentiM_H2O_4DEG_C on http://qudt.org/vocab/quantitykind/Stress needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/FT_H2O_39dot2DEG_F on http://qudt.org/vocab/quantitykind/Stress needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/ElectricPropulsionPropellantMass
  - http://qudt.org/vocab/unit/TON on http://qudt.org/vocab/quantitykind/ElectricPropulsionPropellantMass needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MOMME_Pearl on http://qudt.org/vocab/quantitykind/ElectricPropulsionPropellantMass needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PFUND on http://qudt.org/vocab/quantitykind/ElectricPropulsionPropellantMass needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MOMME_Textile on http://qudt.org/vocab/quantitykind/ElectricPropulsionPropellantMass needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MegaTONNE on http://qudt.org/vocab/quantitykind/ElectricPropulsionPropellantMass needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MegaTON on http://qudt.org/vocab/quantitykind/ElectricPropulsionPropellantMass needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/Irradiance
  - http://qudt.org/vocab/unit/BTU_TH-PER-FT2-SEC on http://qudt.org/vocab/quantitykind/Irradiance needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/BTU_TH-PER-FT2-MIN on http://qudt.org/vocab/quantitykind/Irradiance needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/BTU_IT-PER-FT2-SEC on http://qudt.org/vocab/quantitykind/Irradiance needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CAL_TH-PER-CentiM2-SEC on http://qudt.org/vocab/quantitykind/Irradiance needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/M-PA-PER-SEC on http://qudt.org/vocab/quantitykind/Irradiance needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/BTU_TH-PER-FT2-HR on http://qudt.org/vocab/quantitykind/Irradiance needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/BTU_IT-PER-FT2-HR on http://qudt.org/vocab/quantitykind/Irradiance needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/NanoW-PER-M2 on http://qudt.org/vocab/quantitykind/Irradiance needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/BTU_IT-PER-IN2-SEC on http://qudt.org/vocab/quantitykind/Irradiance needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CAL_TH-PER-CentiM2-MIN on http://qudt.org/vocab/quantitykind/Irradiance needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Irradiance expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/058f5b99f6c0af355eaeb072f076db59
  - http://speckle.xyz/streams/bf7685a6aa/objects/e13dd4b578872dbd32e09626f5d25240 on http://speckle.xyz/streams/bf7685a6aa/objects/058f5b99f6c0af355eaeb072f076db59 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e13dd4b578872dbd32e09626f5d25240 on http://speckle.xyz/streams/bf7685a6aa/objects/058f5b99f6c0af355eaeb072f076db59 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/d0f12ce9e5554ac58cd1d2744189ee4c
  - http://speckle.xyz/streams/bf7685a6aa/objects/96b50d6b8d4e936c2c04a6876aa61c37 on http://speckle.xyz/streams/bf7685a6aa/objects/d0f12ce9e5554ac58cd1d2744189ee4c needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/96b50d6b8d4e936c2c04a6876aa61c37 on http://speckle.xyz/streams/bf7685a6aa/objects/d0f12ce9e5554ac58cd1d2744189ee4c needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/f199a7b1998fd26a3bac0cec6658a31a
  - http://speckle.xyz/streams/bf7685a6aa/objects/8492684344e3fa16fe12d0303f24fe0d on http://speckle.xyz/streams/bf7685a6aa/objects/f199a7b1998fd26a3bac0cec6658a31a needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/8492684344e3fa16fe12d0303f24fe0d on http://speckle.xyz/streams/bf7685a6aa/objects/f199a7b1998fd26a3bac0cec6658a31a needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/LuminousExitance
  - http://qudt.org/vocab/quantitykind/LuminousExitance expected at most 1 uses of path qudt:plainTextDescription
  - http://qudt.org/vocab/quantitykind/LuminousExitance expected at most 1 uses of path qudt:plainTextDescription
  - http://qudt.org/vocab/quantitykind/LuminousExitance expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/quantitykind/LuminousExitance expected at most 1 uses of path qudt:plainTextDescription
http://qudt.org/vocab/quantitykind/GROSS-LIFT-OFF-WEIGHT
  - http://qudt.org/vocab/unit/MOMME_Pearl on http://qudt.org/vocab/quantitykind/GROSS-LIFT-OFF-WEIGHT needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MOMME_Textile on http://qudt.org/vocab/quantitykind/GROSS-LIFT-OFF-WEIGHT needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MegaTON on http://qudt.org/vocab/quantitykind/GROSS-LIFT-OFF-WEIGHT needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MegaTONNE on http://qudt.org/vocab/quantitykind/GROSS-LIFT-OFF-WEIGHT needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/TON on http://qudt.org/vocab/quantitykind/GROSS-LIFT-OFF-WEIGHT needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PFUND on http://qudt.org/vocab/quantitykind/GROSS-LIFT-OFF-WEIGHT needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/GROSS-LIFT-OFF-WEIGHT expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/IonDensity
  - http://qudt.org/vocab/unit/NUM-PER-MilliL on http://qudt.org/vocab/quantitykind/IonDensity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/IonDensity expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/SpecificEntropy
  - http://qudt.org/vocab/unit/J-PER-KiloGM-DEG_C on http://qudt.org/vocab/quantitykind/SpecificEntropy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/SpecificEntropy expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/J-PER-GM-DEG_C on http://qudt.org/vocab/quantitykind/SpecificEntropy needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/ElectricPotential
  - http://qudt.org/vocab/unit/NanoV on http://qudt.org/vocab/quantitykind/ElectricPotential needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GigaV on http://qudt.org/vocab/quantitykind/ElectricPotential needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/FemtoV on http://qudt.org/vocab/quantitykind/ElectricPotential needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/TeraV on http://qudt.org/vocab/quantitykind/ElectricPotential needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PicoV on http://qudt.org/vocab/quantitykind/ElectricPotential needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/FlightPathAngle
  - http://qudt.org/vocab/quantitykind/FlightPathAngle expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/MolalityOfSolute
  - http://qudt.org/vocab/unit/MOL_LB-PER-LB on http://qudt.org/vocab/quantitykind/MolalityOfSolute needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/MolalityOfSolute expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/MASS-DELIVERED
  - http://qudt.org/vocab/quantitykind/MASS-DELIVERED expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/TON on http://qudt.org/vocab/quantitykind/MASS-DELIVERED needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MegaTONNE on http://qudt.org/vocab/quantitykind/MASS-DELIVERED needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MegaTON on http://qudt.org/vocab/quantitykind/MASS-DELIVERED needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PFUND on http://qudt.org/vocab/quantitykind/MASS-DELIVERED needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MOMME_Pearl on http://qudt.org/vocab/quantitykind/MASS-DELIVERED needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MOMME_Textile on http://qudt.org/vocab/quantitykind/MASS-DELIVERED needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/80eb3bb712bc067b080e3360b9d40afd
  - http://speckle.xyz/streams/bf7685a6aa/objects/0c99cbe31ea235d05bdcd5ce3a0ab2af on http://speckle.xyz/streams/bf7685a6aa/objects/80eb3bb712bc067b080e3360b9d40afd needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/0c99cbe31ea235d05bdcd5ce3a0ab2af on http://speckle.xyz/streams/bf7685a6aa/objects/80eb3bb712bc067b080e3360b9d40afd needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/LorenzCoefficient
  - http://qudt.org/vocab/quantitykind/LorenzCoefficient expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/RotaryShock
  - http://qudt.org/vocab/quantitykind/RotaryShock expected at most 1 uses of path qudt:plainTextDescription
http://speckle.xyz/streams/bf7685a6aa/objects/798fbf9a185831a6829961a6a62c04aa
  - http://speckle.xyz/streams/bf7685a6aa/objects/38b821c823fa96dd85042fa050adfcd0 on http://speckle.xyz/streams/bf7685a6aa/objects/798fbf9a185831a6829961a6a62c04aa needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/38b821c823fa96dd85042fa050adfcd0 on http://speckle.xyz/streams/bf7685a6aa/objects/798fbf9a185831a6829961a6a62c04aa needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/1927afa22a042690ee63b910f15a9e9b
  - http://speckle.xyz/streams/bf7685a6aa/objects/0e5bab348c0d7a43d3197d71b2ecdff0 on http://speckle.xyz/streams/bf7685a6aa/objects/1927afa22a042690ee63b910f15a9e9b needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/0e5bab348c0d7a43d3197d71b2ecdff0 on http://speckle.xyz/streams/bf7685a6aa/objects/1927afa22a042690ee63b910f15a9e9b needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/49b0560d8c9de1d65b005240db98dc0b
  - http://speckle.xyz/streams/bf7685a6aa/objects/303a333ea3391daa29509be9eb9bb187 on http://speckle.xyz/streams/bf7685a6aa/objects/49b0560d8c9de1d65b005240db98dc0b needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/303a333ea3391daa29509be9eb9bb187 on http://speckle.xyz/streams/bf7685a6aa/objects/49b0560d8c9de1d65b005240db98dc0b needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/c9da743b36371900fb3a79106f262c4e
  - http://speckle.xyz/streams/bf7685a6aa/objects/5751a7a8490e489a1a00976905f9b01b on http://speckle.xyz/streams/bf7685a6aa/objects/c9da743b36371900fb3a79106f262c4e needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/5751a7a8490e489a1a00976905f9b01b on http://speckle.xyz/streams/bf7685a6aa/objects/c9da743b36371900fb3a79106f262c4e needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/OHM_Ab
  - http://qudt.org/vocab/unit/OHM_Ab expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/OHM_Ab expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/690cc1debc36c07d5e0dcd6ada4dc1dc
  - http://speckle.xyz/streams/bf7685a6aa/objects/f81349f450082607823b374cbf6090c1 on http://speckle.xyz/streams/bf7685a6aa/objects/690cc1debc36c07d5e0dcd6ada4dc1dc needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/f81349f450082607823b374cbf6090c1 on http://speckle.xyz/streams/bf7685a6aa/objects/690cc1debc36c07d5e0dcd6ada4dc1dc needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/EnergyImparted
  - http://qudt.org/vocab/unit/PicoJ on http://qudt.org/vocab/quantitykind/EnergyImparted needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/NanoJ on http://qudt.org/vocab/quantitykind/EnergyImparted needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/THERM_EC on http://qudt.org/vocab/quantitykind/EnergyImparted needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/EnergyImparted expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/THERM_US on http://qudt.org/vocab/quantitykind/EnergyImparted needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/e22ab08130fb1b34d6505c2a68b929aa
  - http://speckle.xyz/streams/bf7685a6aa/objects/2bab3a834da573d903244a9902f78aa1 on http://speckle.xyz/streams/bf7685a6aa/objects/e22ab08130fb1b34d6505c2a68b929aa needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/2bab3a834da573d903244a9902f78aa1 on http://speckle.xyz/streams/bf7685a6aa/objects/e22ab08130fb1b34d6505c2a68b929aa needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/constant/Value_AtomicMassUnitHartreeRelationship
  - http://qudt.org/vocab/constant/Value_AtomicMassUnitHartreeRelationship expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/quantitykind/SpecificSurfaceArea
  - http://qudt.org/vocab/unit/CentiM2-PER-GM on http://qudt.org/vocab/quantitykind/SpecificSurfaceArea needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/SpecificSurfaceArea expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/unit/PicoMOL-PER-M3-SEC
  - http://qudt.org/vocab/unit/PicoMOL-PER-M3-SEC expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/PicoMOL-PER-M3-SEC expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/79b5c24808527c68c49640025e599477
  - http://speckle.xyz/streams/bf7685a6aa/objects/d77f0206f793d366dcf43a6875c39716 on http://speckle.xyz/streams/bf7685a6aa/objects/79b5c24808527c68c49640025e599477 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/d77f0206f793d366dcf43a6875c39716 on http://speckle.xyz/streams/bf7685a6aa/objects/79b5c24808527c68c49640025e599477 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/ThermalCapacitance
  - http://qudt.org/vocab/quantitykind/ThermalCapacitance expected at most 1 uses of path qudt:plainTextDescription
  - http://qudt.org/vocab/unit/BTU_TH-PER-DEG_F on http://qudt.org/vocab/quantitykind/ThermalCapacitance needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/BTU_TH-PER-DEG_R on http://qudt.org/vocab/quantitykind/ThermalCapacitance needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/unit/PINT_UK-PER-DAY
  - http://qudt.org/vocab/unit/PINT_UK-PER-DAY expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/PINT_UK-PER-DAY expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/41fbd265b42e7a47581fe189d6c19a3b
  - http://speckle.xyz/streams/bf7685a6aa/objects/16c0ff093fe0cf359342709f754806e1 on http://speckle.xyz/streams/bf7685a6aa/objects/41fbd265b42e7a47581fe189d6c19a3b needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/16c0ff093fe0cf359342709f754806e1 on http://speckle.xyz/streams/bf7685a6aa/objects/41fbd265b42e7a47581fe189d6c19a3b needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/dc9ba63a5ac0837f9c1310702eedcb4e
  - http://speckle.xyz/streams/bf7685a6aa/objects/230bee4acdd75163083829e8ab8a39f2 on http://speckle.xyz/streams/bf7685a6aa/objects/dc9ba63a5ac0837f9c1310702eedcb4e needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/230bee4acdd75163083829e8ab8a39f2 on http://speckle.xyz/streams/bf7685a6aa/objects/dc9ba63a5ac0837f9c1310702eedcb4e needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/2867f3b4f8d2b164818998283b87cdce
  - http://speckle.xyz/streams/bf7685a6aa/objects/82270a0b3589a9ebc714fbf580619e80 on http://speckle.xyz/streams/bf7685a6aa/objects/2867f3b4f8d2b164818998283b87cdce needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/82270a0b3589a9ebc714fbf580619e80 on http://speckle.xyz/streams/bf7685a6aa/objects/2867f3b4f8d2b164818998283b87cdce needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/dimensionvector/A0E1L-3I0M0H0T1D0
  - http://qudt.org/vocab/dimensionvector/A0E1L-3I0M0H0T1D0 expected at most 1 uses of path qudt:latexDefinition
http://qudt.org/vocab/quantitykind/ElectricChargeSurfaceDensity
  - http://qudt.org/vocab/quantitykind/ElectricChargeSurfaceDensity expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/A-HR-PER-M2 on http://qudt.org/vocab/quantitykind/ElectricChargeSurfaceDensity needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/unit/NanoMOL-PER-CentiM3-HR
  - http://qudt.org/vocab/unit/NanoMOL-PER-CentiM3-HR expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/NanoMOL-PER-CentiM3-HR expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/Slowing-DownDensity
  - http://qudt.org/vocab/unit/PER-SEC-M3 on http://qudt.org/vocab/quantitykind/Slowing-DownDensity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Slowing-DownDensity expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/4c9120e4a53749c1baba0865711d53dc
  - http://speckle.xyz/streams/bf7685a6aa/objects/8290128282ec5e0854b6b095c1cfbe9b on http://speckle.xyz/streams/bf7685a6aa/objects/4c9120e4a53749c1baba0865711d53dc needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/8290128282ec5e0854b6b095c1cfbe9b on http://speckle.xyz/streams/bf7685a6aa/objects/4c9120e4a53749c1baba0865711d53dc needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/ZettaC
  - http://qudt.org/vocab/unit/ZettaC expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/ZettaC expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/ed46dfe72b13fa0b9bd32e3c24235fe3
  - http://speckle.xyz/streams/bf7685a6aa/objects/6522948c17f68892a20ab290338e3478 on http://speckle.xyz/streams/bf7685a6aa/objects/ed46dfe72b13fa0b9bd32e3c24235fe3 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/6522948c17f68892a20ab290338e3478 on http://speckle.xyz/streams/bf7685a6aa/objects/ed46dfe72b13fa0b9bd32e3c24235fe3 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/60f25fa75fb376c8c0699ff800b7b2e6
  - http://speckle.xyz/streams/bf7685a6aa/objects/c8d74312f7bce1c9b6478e66d4f19320 on http://speckle.xyz/streams/bf7685a6aa/objects/60f25fa75fb376c8c0699ff800b7b2e6 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/c8d74312f7bce1c9b6478e66d4f19320 on http://speckle.xyz/streams/bf7685a6aa/objects/60f25fa75fb376c8c0699ff800b7b2e6 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/Solubility_Water
  - http://qudt.org/vocab/quantitykind/Solubility_Water expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/IonConcentration
  - http://qudt.org/vocab/quantitykind/IonConcentration expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/47633e13217fb030218c15a084203262
  - http://speckle.xyz/streams/bf7685a6aa/objects/1aa18520ad959a6b477ce9a6cd61c432 on http://speckle.xyz/streams/bf7685a6aa/objects/47633e13217fb030218c15a084203262 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/1aa18520ad959a6b477ce9a6cd61c432 on http://speckle.xyz/streams/bf7685a6aa/objects/47633e13217fb030218c15a084203262 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/RF-Power
  - http://qudt.org/vocab/quantitykind/RF-Power expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/870e1936958efe2fd681365af1e51f4d
  - http://speckle.xyz/streams/bf7685a6aa/objects/ea809d7a6106eaba6d818bfdb3e3e5b9 on http://speckle.xyz/streams/bf7685a6aa/objects/870e1936958efe2fd681365af1e51f4d needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/ea809d7a6106eaba6d818bfdb3e3e5b9 on http://speckle.xyz/streams/bf7685a6aa/objects/870e1936958efe2fd681365af1e51f4d needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/FishBiotransformationHalfLife
  - http://qudt.org/vocab/quantitykind/FishBiotransformationHalfLife expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/ElectricFluxDensity
  - http://qudt.org/vocab/unit/A-HR-PER-M2 on http://qudt.org/vocab/quantitykind/ElectricFluxDensity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/ElectricFluxDensity expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/MortalityRate
  - http://qudt.org/vocab/quantitykind/MortalityRate expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/MassFractionOfWater
  - http://qudt.org/vocab/quantitykind/MassFractionOfWater expected at most 1 uses of path qudt:plainTextDescription
  - http://qudt.org/vocab/quantitykind/MassFractionOfWater expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/b4e7fcbe0d7778c35684ff2bff202fe9
  - http://speckle.xyz/streams/bf7685a6aa/objects/2e7fcf08c8c16097c4fb8b7074f6b8a3 on http://speckle.xyz/streams/bf7685a6aa/objects/b4e7fcbe0d7778c35684ff2bff202fe9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/2e7fcf08c8c16097c4fb8b7074f6b8a3 on http://speckle.xyz/streams/bf7685a6aa/objects/b4e7fcbe0d7778c35684ff2bff202fe9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/ElectronMobility
  - http://qudt.org/vocab/unit/CentiM2-PER-V-SEC on http://qudt.org/vocab/quantitykind/ElectronMobility needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/unit/NanoGM-PER-DAY
  - http://qudt.org/vocab/unit/NanoGM-PER-DAY expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/NanoGM-PER-DAY expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/e016f8aa8a9a52cec1d3be0491159956
  - http://speckle.xyz/streams/bf7685a6aa/objects/0d245daa39fba4d252d07553fdb4c419 on http://speckle.xyz/streams/bf7685a6aa/objects/e016f8aa8a9a52cec1d3be0491159956 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/0d245daa39fba4d252d07553fdb4c419 on http://speckle.xyz/streams/bf7685a6aa/objects/e016f8aa8a9a52cec1d3be0491159956 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/ElectricCurrentPerTemperature
  - http://qudt.org/vocab/unit/KiloA-PER-K on http://qudt.org/vocab/quantitykind/ElectricCurrentPerTemperature needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MicroA-PER-K on http://qudt.org/vocab/quantitykind/ElectricCurrentPerTemperature needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliA-PER-K on http://qudt.org/vocab/quantitykind/ElectricCurrentPerTemperature needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/NanoA-PER-K on http://qudt.org/vocab/quantitykind/ElectricCurrentPerTemperature needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/A-PER-K on http://qudt.org/vocab/quantitykind/ElectricCurrentPerTemperature needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/Inductance
  - http://qudt.org/vocab/quantitykind/Inductance expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/KiloH on http://qudt.org/vocab/quantitykind/Inductance needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/unit/NanoFARAD
  - http://qudt.org/vocab/unit/NanoFARAD expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/NanoFARAD expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/MicroH-PER-M
  - http://qudt.org/vocab/unit/MicroH-PER-M expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MicroH-PER-M expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/AmountOfSubstanceConcentration
  - http://qudt.org/vocab/quantitykind/AmountOfSubstanceConcentration expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/AcceptorIonizationEnergy
  - http://qudt.org/vocab/unit/THERM_EC on http://qudt.org/vocab/quantitykind/AcceptorIonizationEnergy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/THERM_US on http://qudt.org/vocab/quantitykind/AcceptorIonizationEnergy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/NanoJ on http://qudt.org/vocab/quantitykind/AcceptorIonizationEnergy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PicoJ on http://qudt.org/vocab/quantitykind/AcceptorIonizationEnergy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/AcceptorIonizationEnergy expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H1T-2D0
  - http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H1T-2D0 expected at most 1 uses of path qudt:latexDefinition
http://speckle.xyz/streams/bf7685a6aa/objects/1e89f74326756df21a7d192bee5bfe6a
  - http://speckle.xyz/streams/bf7685a6aa/objects/03183bd47ce710193f9d15449df4add8 on http://speckle.xyz/streams/bf7685a6aa/objects/1e89f74326756df21a7d192bee5bfe6a needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/03183bd47ce710193f9d15449df4add8 on http://speckle.xyz/streams/bf7685a6aa/objects/1e89f74326756df21a7d192bee5bfe6a needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/PicoMOL-PER-M3
  - http://qudt.org/vocab/unit/PicoMOL-PER-M3 expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/PicoMOL-PER-M3 expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/a918da635d8b36ae688c2ed5a7718032
  - http://speckle.xyz/streams/bf7685a6aa/objects/c1f8ba2020eb6468b1d37e4445924aa6 on http://speckle.xyz/streams/bf7685a6aa/objects/a918da635d8b36ae688c2ed5a7718032 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/c1f8ba2020eb6468b1d37e4445924aa6 on http://speckle.xyz/streams/bf7685a6aa/objects/a918da635d8b36ae688c2ed5a7718032 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-1D0
  - http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-1D0 expected at most 1 uses of path qudt:latexDefinition
http://speckle.xyz/streams/bf7685a6aa/objects/2fd0fc1f9545c2a939b3f85fbdee848d
  - http://speckle.xyz/streams/bf7685a6aa/objects/b1704240e49d5b4aa831d684c64ab3e7 on http://speckle.xyz/streams/bf7685a6aa/objects/2fd0fc1f9545c2a939b3f85fbdee848d needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/b1704240e49d5b4aa831d684c64ab3e7 on http://speckle.xyz/streams/bf7685a6aa/objects/2fd0fc1f9545c2a939b3f85fbdee848d needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/VehicleVelocity
  - http://qudt.org/vocab/unit/YD-PER-HR on http://qudt.org/vocab/quantitykind/VehicleVelocity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/YD-PER-SEC on http://qudt.org/vocab/quantitykind/VehicleVelocity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MicroM-PER-MIN on http://qudt.org/vocab/quantitykind/VehicleVelocity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/YD-PER-MIN on http://qudt.org/vocab/quantitykind/VehicleVelocity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MicroM-PER-SEC on http://qudt.org/vocab/quantitykind/VehicleVelocity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/IN-PER-YR on http://qudt.org/vocab/quantitykind/VehicleVelocity needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/unit/ATM_T
  - http://qudt.org/vocab/unit/ATM_T expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/ATM_T expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/966ce826e6029fa0c01e9a5c3edf352c
  - http://speckle.xyz/streams/bf7685a6aa/objects/e2c2fcb66699bae88ba79c422b644168 on http://speckle.xyz/streams/bf7685a6aa/objects/966ce826e6029fa0c01e9a5c3edf352c needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e2c2fcb66699bae88ba79c422b644168 on http://speckle.xyz/streams/bf7685a6aa/objects/966ce826e6029fa0c01e9a5c3edf352c needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/36e9fc706748f7f3514515fd7a4c5570
  - http://speckle.xyz/streams/bf7685a6aa/objects/22ee737a989391acee4ea60354e91210 on http://speckle.xyz/streams/bf7685a6aa/objects/36e9fc706748f7f3514515fd7a4c5570 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/22ee737a989391acee4ea60354e91210 on http://speckle.xyz/streams/bf7685a6aa/objects/36e9fc706748f7f3514515fd7a4c5570 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/FM
  - http://qudt.org/vocab/unit/FM expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/FM expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/UnitPole
  - http://qudt.org/vocab/unit/UnitPole expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/UnitPole expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/7c3003592698133fdfafb531bfe6f76c
  - http://speckle.xyz/streams/bf7685a6aa/objects/11e2de971443671ebd78fe480e1cd147 on http://speckle.xyz/streams/bf7685a6aa/objects/7c3003592698133fdfafb531bfe6f76c needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/11e2de971443671ebd78fe480e1cd147 on http://speckle.xyz/streams/bf7685a6aa/objects/7c3003592698133fdfafb531bfe6f76c needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/AreaThermalExpansion
  - http://qudt.org/vocab/quantitykind/AreaThermalExpansion expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/AbsoluteHumidity
  - http://qudt.org/vocab/quantitykind/AbsoluteHumidity expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/unit/KiloPA-M2-PER-GM
  - http://qudt.org/vocab/unit/KiloPA-M2-PER-GM expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/KiloPA-M2-PER-GM expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/00d34f796756f7c44c534f770f9f3e09
  - http://speckle.xyz/streams/bf7685a6aa/objects/0d245daa39fba4d252d07553fdb4c419 on http://speckle.xyz/streams/bf7685a6aa/objects/00d34f796756f7c44c534f770f9f3e09 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/0d245daa39fba4d252d07553fdb4c419 on http://speckle.xyz/streams/bf7685a6aa/objects/00d34f796756f7c44c534f770f9f3e09 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/M2-PER-M2
  - http://qudt.org/vocab/unit/M2-PER-M2 expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/M2-PER-M2 expected at most 1 uses of path qudt:conversionOffset
  - http://qudt.org/vocab/unit/M2-PER-M2 expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/M2-PER-M2 expected at most 1 uses of path qudt:conversionOffset
http://speckle.xyz/streams/bf7685a6aa/objects/7fe3aae44b84c3b46839e4759e83c55d
  - http://speckle.xyz/streams/bf7685a6aa/objects/0e5bab348c0d7a43d3197d71b2ecdff0 on http://speckle.xyz/streams/bf7685a6aa/objects/7fe3aae44b84c3b46839e4759e83c55d needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/0e5bab348c0d7a43d3197d71b2ecdff0 on http://speckle.xyz/streams/bf7685a6aa/objects/7fe3aae44b84c3b46839e4759e83c55d needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/constant/Value_ShieldedHelionGyromagneticRatio
  - http://qudt.org/vocab/constant/Value_ShieldedHelionGyromagneticRatio expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/quantitykind/ExchangeIntegral
  - http://qudt.org/vocab/unit/PicoJ on http://qudt.org/vocab/quantitykind/ExchangeIntegral needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/ExchangeIntegral expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/NanoJ on http://qudt.org/vocab/quantitykind/ExchangeIntegral needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/40797224d8f8e1f397e096377fed31bd
  - http://speckle.xyz/streams/bf7685a6aa/objects/2bab3a834da573d903244a9902f78aa1 on http://speckle.xyz/streams/bf7685a6aa/objects/40797224d8f8e1f397e096377fed31bd needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/2bab3a834da573d903244a9902f78aa1 on http://speckle.xyz/streams/bf7685a6aa/objects/40797224d8f8e1f397e096377fed31bd needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/Debye
  - http://qudt.org/vocab/unit/Debye expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/Debye expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/546bbe9373d1e4767d247115b062c217
  - http://speckle.xyz/streams/bf7685a6aa/objects/9bbb96d450ec2617aa02cc6f1b800bba on http://speckle.xyz/streams/bf7685a6aa/objects/546bbe9373d1e4767d247115b062c217 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/9bbb96d450ec2617aa02cc6f1b800bba on http://speckle.xyz/streams/bf7685a6aa/objects/546bbe9373d1e4767d247115b062c217 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/ElectronRadius
  - http://qudt.org/vocab/unit/ZOLL on http://qudt.org/vocab/quantitykind/ElectronRadius needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/ElectronRadius expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/CHAIN_US on http://qudt.org/vocab/quantitykind/ElectronRadius needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GA_Charriere on http://qudt.org/vocab/quantitykind/ElectronRadius needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/SuperconductionTransitionTemperature
  - http://qudt.org/vocab/quantitykind/SuperconductionTransitionTemperature expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/b68c6894ade696d5124979b6e0d825f0
  - http://speckle.xyz/streams/bf7685a6aa/objects/1aa18520ad959a6b477ce9a6cd61c432 on http://speckle.xyz/streams/bf7685a6aa/objects/b68c6894ade696d5124979b6e0d825f0 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/1aa18520ad959a6b477ce9a6cd61c432 on http://speckle.xyz/streams/bf7685a6aa/objects/b68c6894ade696d5124979b6e0d825f0 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/constant/Value_TritonProtonMagneticMomentRatio
  - http://qudt.org/vocab/constant/Value_TritonProtonMagneticMomentRatio expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/quantitykind/MaxOperatingThrust
  - http://qudt.org/vocab/unit/P on http://qudt.org/vocab/quantitykind/MaxOperatingThrust needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/POND on http://qudt.org/vocab/quantitykind/MaxOperatingThrust needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloGM-M-PER-SEC2 on http://qudt.org/vocab/quantitykind/MaxOperatingThrust needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/PositiveDimensionlessRatio
  - http://qudt.org/vocab/quantitykind/PositiveDimensionlessRatio expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/PPT on http://qudt.org/vocab/quantitykind/PositiveDimensionlessRatio needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PPQ on http://qudt.org/vocab/quantitykind/PositiveDimensionlessRatio needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/3907b5486f168d678ba581de66f8fcb4
  - http://speckle.xyz/streams/bf7685a6aa/objects/1a82242a9320f719b8162c37bd9c580e on http://speckle.xyz/streams/bf7685a6aa/objects/3907b5486f168d678ba581de66f8fcb4 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/1a82242a9320f719b8162c37bd9c580e on http://speckle.xyz/streams/bf7685a6aa/objects/3907b5486f168d678ba581de66f8fcb4 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/MegaHZ
  - http://qudt.org/vocab/unit/MegaHZ expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MegaHZ expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/6832bd7c883018f4c6594bccc74d194c
  - http://speckle.xyz/streams/bf7685a6aa/objects/0d245daa39fba4d252d07553fdb4c419 on http://speckle.xyz/streams/bf7685a6aa/objects/6832bd7c883018f4c6594bccc74d194c needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/0d245daa39fba4d252d07553fdb4c419 on http://speckle.xyz/streams/bf7685a6aa/objects/6832bd7c883018f4c6594bccc74d194c needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/cd9c39355a5e849a947fedde46ee5a86
  - http://speckle.xyz/streams/bf7685a6aa/objects/c2c965eb3fae861fbf679d2fd79cae7a on http://speckle.xyz/streams/bf7685a6aa/objects/cd9c39355a5e849a947fedde46ee5a86 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/c2c965eb3fae861fbf679d2fd79cae7a on http://speckle.xyz/streams/bf7685a6aa/objects/cd9c39355a5e849a947fedde46ee5a86 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/8e9b706ba9671e0a854b430ff14726ee
  - http://speckle.xyz/streams/bf7685a6aa/objects/9909d4e8918567000c9be885ac99b3cd on http://speckle.xyz/streams/bf7685a6aa/objects/8e9b706ba9671e0a854b430ff14726ee needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/9909d4e8918567000c9be885ac99b3cd on http://speckle.xyz/streams/bf7685a6aa/objects/8e9b706ba9671e0a854b430ff14726ee needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/HeadEndPressure
  - http://qudt.org/vocab/unit/IN_H2O_39dot2DEG_F on http://qudt.org/vocab/quantitykind/HeadEndPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/IN_HG_32DEG_F on http://qudt.org/vocab/quantitykind/HeadEndPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CentiM_HG_0DEG_C on http://qudt.org/vocab/quantitykind/HeadEndPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CentiM_H20_4DEG_C on http://qudt.org/vocab/quantitykind/HeadEndPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloN-PER-M2 on http://qudt.org/vocab/quantitykind/HeadEndPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/IN_HG_60DEG_F on http://qudt.org/vocab/quantitykind/HeadEndPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/M_H2O on http://qudt.org/vocab/quantitykind/HeadEndPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PDL-PER-IN2 on http://qudt.org/vocab/quantitykind/HeadEndPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/FT_H2O_39dot2DEG_F on http://qudt.org/vocab/quantitykind/HeadEndPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CentiM_H2O_4DEG_C on http://qudt.org/vocab/quantitykind/HeadEndPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/IN_H2O_60DEG_F on http://qudt.org/vocab/quantitykind/HeadEndPressure needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/unit/V-PER-MicroSEC
  - http://qudt.org/vocab/unit/V-PER-MicroSEC expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/V-PER-MicroSEC expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/fcc54c1c385d5f00a6b36c649f2c19a9
  - http://speckle.xyz/streams/bf7685a6aa/objects/c8fb46fc939728e45252377481a55e6a on http://speckle.xyz/streams/bf7685a6aa/objects/fcc54c1c385d5f00a6b36c649f2c19a9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/c8fb46fc939728e45252377481a55e6a on http://speckle.xyz/streams/bf7685a6aa/objects/fcc54c1c385d5f00a6b36c649f2c19a9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/4e1b4a5da141acdbfe0f1d1221ec318e
  - http://speckle.xyz/streams/bf7685a6aa/objects/a5893cbf3605b39a09225a1ca64b0b2e on http://speckle.xyz/streams/bf7685a6aa/objects/4e1b4a5da141acdbfe0f1d1221ec318e needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/a5893cbf3605b39a09225a1ca64b0b2e on http://speckle.xyz/streams/bf7685a6aa/objects/4e1b4a5da141acdbfe0f1d1221ec318e needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/LogarithmicMedianInformationFlow_SourceToBase10
  - http://qudt.org/vocab/quantitykind/LogarithmicMedianInformationFlow_SourceToBase10 expected at most 1 uses of path qudt:plainTextDescription
http://qudt.org/vocab/quantitykind/DiffusionCoefficientForFluenceRate
  - http://qudt.org/vocab/unit/GA_Charriere on http://qudt.org/vocab/quantitykind/DiffusionCoefficientForFluenceRate needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/ZOLL on http://qudt.org/vocab/quantitykind/DiffusionCoefficientForFluenceRate needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/DiffusionCoefficientForFluenceRate expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/CHAIN_US on http://qudt.org/vocab/quantitykind/DiffusionCoefficientForFluenceRate needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/constant/Value_ShieldedProtonGyromagneticRatio
  - http://qudt.org/vocab/constant/Value_ShieldedProtonGyromagneticRatio expected at most 1 uses of path qudt:standardUncertainty
http://speckle.xyz/streams/bf7685a6aa/objects/0ffd08111a61d5b6e54ec2c39fc4cea1
  - http://speckle.xyz/streams/bf7685a6aa/objects/e9670962d6933d8e0a96caf59912d990 on http://speckle.xyz/streams/bf7685a6aa/objects/0ffd08111a61d5b6e54ec2c39fc4cea1 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e9670962d6933d8e0a96caf59912d990 on http://speckle.xyz/streams/bf7685a6aa/objects/0ffd08111a61d5b6e54ec2c39fc4cea1 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/SoundPowerLevel
  - http://qudt.org/vocab/unit/DeciB_A on http://qudt.org/vocab/quantitykind/SoundPowerLevel needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/DeciB_ISO on http://qudt.org/vocab/quantitykind/SoundPowerLevel needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/DeciB_Z on http://qudt.org/vocab/quantitykind/SoundPowerLevel needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/ca4dccab7eccceabf296346b335d6804
  - http://speckle.xyz/streams/bf7685a6aa/objects/0e5bab348c0d7a43d3197d71b2ecdff0 on http://speckle.xyz/streams/bf7685a6aa/objects/ca4dccab7eccceabf296346b335d6804 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/0e5bab348c0d7a43d3197d71b2ecdff0 on http://speckle.xyz/streams/bf7685a6aa/objects/ca4dccab7eccceabf296346b335d6804 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/MicroMHO
  - http://qudt.org/vocab/unit/MicroMHO expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MicroMHO expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/CentiM3-PER-M3
  - http://qudt.org/vocab/unit/CentiM3-PER-M3 expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/CentiM3-PER-M3 expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/CentiM3-PER-M3 expected at most 1 uses of path qudt:plainTextDescription
http://speckle.xyz/streams/bf7685a6aa/objects/9c71b6b8b8aefae381adb309b422703a
  - http://speckle.xyz/streams/bf7685a6aa/objects/61392c60c3f0f6583028d86c3528cd5c on http://speckle.xyz/streams/bf7685a6aa/objects/9c71b6b8b8aefae381adb309b422703a needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/61392c60c3f0f6583028d86c3528cd5c on http://speckle.xyz/streams/bf7685a6aa/objects/9c71b6b8b8aefae381adb309b422703a needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/MicroV
  - http://qudt.org/vocab/unit/MicroV expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MicroV expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/HeatingValue
  - http://qudt.org/vocab/quantitykind/HeatingValue expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/W-HR-PER-KiloGM on http://qudt.org/vocab/quantitykind/HeatingValue needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/6dc7ef25c420b4af9edc2fe074dd9620
  - http://speckle.xyz/streams/bf7685a6aa/objects/61392c60c3f0f6583028d86c3528cd5c on http://speckle.xyz/streams/bf7685a6aa/objects/6dc7ef25c420b4af9edc2fe074dd9620 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/61392c60c3f0f6583028d86c3528cd5c on http://speckle.xyz/streams/bf7685a6aa/objects/6dc7ef25c420b4af9edc2fe074dd9620 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/2065296d9a6ea135790b87ed4481c58a
  - http://speckle.xyz/streams/bf7685a6aa/objects/0e5bab348c0d7a43d3197d71b2ecdff0 on http://speckle.xyz/streams/bf7685a6aa/objects/2065296d9a6ea135790b87ed4481c58a needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/0e5bab348c0d7a43d3197d71b2ecdff0 on http://speckle.xyz/streams/bf7685a6aa/objects/2065296d9a6ea135790b87ed4481c58a needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/ThermalExpansionCoefficient
  - http://qudt.org/vocab/unit/PER-DEG_C on http://qudt.org/vocab/quantitykind/ThermalExpansionCoefficient needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PER-MegaK on http://qudt.org/vocab/quantitykind/ThermalExpansionCoefficient needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PERCENT-PER-DEG_C on http://qudt.org/vocab/quantitykind/ThermalExpansionCoefficient needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliM-PER-DEG_C-M on http://qudt.org/vocab/quantitykind/ThermalExpansionCoefficient needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/ThermalExpansionCoefficient expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/M-PER-DEG_C-M on http://qudt.org/vocab/quantitykind/ThermalExpansionCoefficient needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PER-DEG_F on http://qudt.org/vocab/quantitykind/ThermalExpansionCoefficient needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/unit/TONNE-PER-HA-YR
  - http://qudt.org/vocab/unit/TONNE-PER-HA-YR expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/TONNE-PER-HA-YR expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/ERG-SEC
  - http://qudt.org/vocab/unit/ERG-SEC expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/ERG-SEC expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/MicroPOISE
  - http://qudt.org/vocab/unit/MicroPOISE expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MicroPOISE expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/1f3049e63fe4d2597e5f1197a9952113
  - http://speckle.xyz/streams/bf7685a6aa/objects/17592c23e3930128143ddd679cd6a0d0 on http://speckle.xyz/streams/bf7685a6aa/objects/1f3049e63fe4d2597e5f1197a9952113 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/17592c23e3930128143ddd679cd6a0d0 on http://speckle.xyz/streams/bf7685a6aa/objects/1f3049e63fe4d2597e5f1197a9952113 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/MilliM4
  - http://qudt.org/vocab/unit/MilliM4 expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MilliM4 expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/dimensionvector/A0E2L-2I0M-1H0T2D0
  - http://qudt.org/vocab/dimensionvector/A0E2L-2I0M-1H0T2D0 expected at most 1 uses of path qudt:latexDefinition
http://speckle.xyz/streams/bf7685a6aa/objects/af69e64ed42240e1c542ea0836d700ad
  - http://speckle.xyz/streams/bf7685a6aa/objects/03183bd47ce710193f9d15449df4add8 on http://speckle.xyz/streams/bf7685a6aa/objects/af69e64ed42240e1c542ea0836d700ad needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/03183bd47ce710193f9d15449df4add8 on http://speckle.xyz/streams/bf7685a6aa/objects/af69e64ed42240e1c542ea0836d700ad needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/d50f429c394f2fa6af3b6f651e304d2e
  - http://speckle.xyz/streams/bf7685a6aa/objects/f031db8cf74c1d34f7ec9caaa44e707f on http://speckle.xyz/streams/bf7685a6aa/objects/d50f429c394f2fa6af3b6f651e304d2e needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/f031db8cf74c1d34f7ec9caaa44e707f on http://speckle.xyz/streams/bf7685a6aa/objects/d50f429c394f2fa6af3b6f651e304d2e needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/TorsionalSpringConstant
  - http://qudt.org/vocab/unit/N-M-PER-MIN_Angle on http://qudt.org/vocab/quantitykind/TorsionalSpringConstant needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloN-M-PER-DEG on http://qudt.org/vocab/quantitykind/TorsionalSpringConstant needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/N-M-PER-DEG on http://qudt.org/vocab/quantitykind/TorsionalSpringConstant needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/TorsionalSpringConstant expected at most 1 uses of path qudt:plainTextDescription
  - http://qudt.org/vocab/quantitykind/TorsionalSpringConstant expected at most 1 uses of path qudt:plainTextDescription
  - http://qudt.org/vocab/unit/N-M-PER-ARCMIN on http://qudt.org/vocab/quantitykind/TorsionalSpringConstant needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/ddefab1afa168248a69b1d33ee1fdf5c
  - http://speckle.xyz/streams/bf7685a6aa/objects/1a82242a9320f719b8162c37bd9c580e on http://speckle.xyz/streams/bf7685a6aa/objects/ddefab1afa168248a69b1d33ee1fdf5c needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/1a82242a9320f719b8162c37bd9c580e on http://speckle.xyz/streams/bf7685a6aa/objects/ddefab1afa168248a69b1d33ee1fdf5c needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/a9e236444e70ca0a6344482b258302b5
  - http://speckle.xyz/streams/bf7685a6aa/objects/e9670962d6933d8e0a96caf59912d990 on http://speckle.xyz/streams/bf7685a6aa/objects/a9e236444e70ca0a6344482b258302b5 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e9670962d6933d8e0a96caf59912d990 on http://speckle.xyz/streams/bf7685a6aa/objects/a9e236444e70ca0a6344482b258302b5 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/MicroGM-PER-L-HR
  - http://qudt.org/vocab/unit/MicroGM-PER-L-HR expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MicroGM-PER-L-HR expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/555a5e0ffcee53069ef2847c779cf2bc
  - http://speckle.xyz/streams/bf7685a6aa/objects/88e5f0e92bf4bbc79c68bfdbe2675e55 on http://speckle.xyz/streams/bf7685a6aa/objects/555a5e0ffcee53069ef2847c779cf2bc needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/88e5f0e92bf4bbc79c68bfdbe2675e55 on http://speckle.xyz/streams/bf7685a6aa/objects/555a5e0ffcee53069ef2847c779cf2bc needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/NUM-PER-MilliGM
  - http://qudt.org/vocab/unit/NUM-PER-MilliGM expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/NUM-PER-MilliGM expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/MicroT
  - http://qudt.org/vocab/unit/MicroT expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MicroT expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/SpatialSummationFunction
  - http://qudt.org/vocab/unit/GA_Charriere on http://qudt.org/vocab/quantitykind/SpatialSummationFunction needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CHAIN_US on http://qudt.org/vocab/quantitykind/SpatialSummationFunction needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/SpatialSummationFunction expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/ZOLL on http://qudt.org/vocab/quantitykind/SpatialSummationFunction needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/9e7b594ca872f5e4abb7069a5e2b071f
  - http://speckle.xyz/streams/bf7685a6aa/objects/e13dd4b578872dbd32e09626f5d25240 on http://speckle.xyz/streams/bf7685a6aa/objects/9e7b594ca872f5e4abb7069a5e2b071f needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e13dd4b578872dbd32e09626f5d25240 on http://speckle.xyz/streams/bf7685a6aa/objects/9e7b594ca872f5e4abb7069a5e2b071f needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/dd02e0e8312bf586fbaa773d58ef3576
  - http://speckle.xyz/streams/bf7685a6aa/objects/d1d7be0d0eb1a25441be555456d8728d on http://speckle.xyz/streams/bf7685a6aa/objects/dd02e0e8312bf586fbaa773d58ef3576 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/d1d7be0d0eb1a25441be555456d8728d on http://speckle.xyz/streams/bf7685a6aa/objects/dd02e0e8312bf586fbaa773d58ef3576 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/MicroM3-PER-M3
  - http://qudt.org/vocab/unit/MicroM3-PER-M3 expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MicroM3-PER-M3 expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/IncidenceRate
  - http://qudt.org/vocab/quantitykind/IncidenceRate expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/a496bbba6b3f7cb6f1e67a0aa8151637
  - http://speckle.xyz/streams/bf7685a6aa/objects/e9670962d6933d8e0a96caf59912d990 on http://speckle.xyz/streams/bf7685a6aa/objects/a496bbba6b3f7cb6f1e67a0aa8151637 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e9670962d6933d8e0a96caf59912d990 on http://speckle.xyz/streams/bf7685a6aa/objects/a496bbba6b3f7cb6f1e67a0aa8151637 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/Area
  - http://qudt.org/vocab/unit/MI_US2 on http://qudt.org/vocab/quantitykind/Area needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloMIL_Circ on http://qudt.org/vocab/quantitykind/Area needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Area expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/KiloM2 on http://qudt.org/vocab/quantitykind/Area needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/schema/qudt/CT_COUNTABLY-INFINITE
  - http://qudt.org/schema/qudt/CT_COUNTABLY-INFINITE expected at most 1 uses of path dcterms:description
  - http://qudt.org/schema/qudt/CT_COUNTABLY-INFINITE expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/8f533e0b9a18d64dfec95c4daced132c
  - http://speckle.xyz/streams/bf7685a6aa/objects/bd4c1bbaf855ba85dd10beedc3c5f7f4 on http://speckle.xyz/streams/bf7685a6aa/objects/8f533e0b9a18d64dfec95c4daced132c needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/bd4c1bbaf855ba85dd10beedc3c5f7f4 on http://speckle.xyz/streams/bf7685a6aa/objects/8f533e0b9a18d64dfec95c4daced132c needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/GrowingDegreeDay_Cereal
  - http://qudt.org/vocab/quantitykind/GrowingDegreeDay_Cereal expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/OverRangeDistance
  - http://qudt.org/vocab/unit/GA_Charriere on http://qudt.org/vocab/quantitykind/OverRangeDistance needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CHAIN_US on http://qudt.org/vocab/quantitykind/OverRangeDistance needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/ZOLL on http://qudt.org/vocab/quantitykind/OverRangeDistance needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/OverRangeDistance expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/unit/NanoGM-PER-M3
  - http://qudt.org/vocab/unit/NanoGM-PER-M3 expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/NanoGM-PER-M3 expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/MicroGM-PER-M3
  - http://qudt.org/vocab/unit/MicroGM-PER-M3 expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MicroGM-PER-M3 expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/constant/Value_MolarPlanckConstant
  - http://qudt.org/vocab/constant/Value_MolarPlanckConstant expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/quantitykind/CenterOfGravity_Y
  - http://qudt.org/vocab/unit/CHAIN_US on http://qudt.org/vocab/quantitykind/CenterOfGravity_Y needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/ZOLL on http://qudt.org/vocab/quantitykind/CenterOfGravity_Y needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GA_Charriere on http://qudt.org/vocab/quantitykind/CenterOfGravity_Y needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/unit/MegaEV
  - http://qudt.org/vocab/unit/MegaEV expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MegaEV expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/57c8d95677b14af073451d92c72bd9db
  - http://speckle.xyz/streams/bf7685a6aa/objects/a1d67b4208f6eed0293c478ac7f2db72 on http://speckle.xyz/streams/bf7685a6aa/objects/57c8d95677b14af073451d92c72bd9db needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/a1d67b4208f6eed0293c478ac7f2db72 on http://speckle.xyz/streams/bf7685a6aa/objects/57c8d95677b14af073451d92c72bd9db needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/bdc9ed50dd84d9ce42c951ddce8a698f
  - http://speckle.xyz/streams/bf7685a6aa/objects/3efdbbd7d157786885a7c74d641c8fae on http://speckle.xyz/streams/bf7685a6aa/objects/bdc9ed50dd84d9ce42c951ddce8a698f needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/3efdbbd7d157786885a7c74d641c8fae on http://speckle.xyz/streams/bf7685a6aa/objects/bdc9ed50dd84d9ce42c951ddce8a698f needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/PlanckVolt
  - http://qudt.org/vocab/unit/PlanckVolt expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/PlanckVolt expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/TotalMassStoppingPower
  - http://qudt.org/vocab/unit/ERG-CentiM2-PER-GM on http://qudt.org/vocab/quantitykind/TotalMassStoppingPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/EV-M2-PER-KiloGM on http://qudt.org/vocab/quantitykind/TotalMassStoppingPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/TotalMassStoppingPower expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/MaxSeaLevelThrust
  - http://qudt.org/vocab/unit/POND on http://qudt.org/vocab/quantitykind/MaxSeaLevelThrust needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloGM-M-PER-SEC2 on http://qudt.org/vocab/quantitykind/MaxSeaLevelThrust needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/P on http://qudt.org/vocab/quantitykind/MaxSeaLevelThrust needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/ParticleSourceDensity
  - http://qudt.org/vocab/quantitykind/ParticleSourceDensity expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/CostPerMass
  - http://qudt.org/vocab/unit/CHF-PER-KiloGM on http://qudt.org/vocab/quantitykind/CostPerMass needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/constant/Value_NeutronElectronMassRatio
  - http://qudt.org/vocab/constant/Value_NeutronElectronMassRatio expected at most 1 uses of path qudt:standardUncertainty
http://speckle.xyz/streams/bf7685a6aa/objects/8aa431cae1987ef83331592de7578f33
  - http://speckle.xyz/streams/bf7685a6aa/objects/874a3138d2a825dffee742833b559af8 on http://speckle.xyz/streams/bf7685a6aa/objects/8aa431cae1987ef83331592de7578f33 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/874a3138d2a825dffee742833b559af8 on http://speckle.xyz/streams/bf7685a6aa/objects/8aa431cae1987ef83331592de7578f33 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/BurgersVector
  - http://qudt.org/vocab/unit/CHAIN_US on http://qudt.org/vocab/quantitykind/BurgersVector needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/BurgersVector expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/ZOLL on http://qudt.org/vocab/quantitykind/BurgersVector needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GA_Charriere on http://qudt.org/vocab/quantitykind/BurgersVector needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/unit/ANGSTROM3
  - http://qudt.org/vocab/unit/ANGSTROM3 expected 1 instance(s) of qudt:QuantityKindDimensionVector on path qudt:hasDimensionVector
  - http://qudt.org/vocab/unit/ANGSTROM3 expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/ANGSTROM3 expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/c2b8c1420e011e1d6754127d8413570d
  - http://speckle.xyz/streams/bf7685a6aa/objects/c1e7bac9cc9cff56ce6fff37c81afd27 on http://speckle.xyz/streams/bf7685a6aa/objects/c2b8c1420e011e1d6754127d8413570d needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/c1e7bac9cc9cff56ce6fff37c81afd27 on http://speckle.xyz/streams/bf7685a6aa/objects/c2b8c1420e011e1d6754127d8413570d needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/constant/Value_ProtonMolarMass
  - http://qudt.org/vocab/constant/Value_ProtonMolarMass expected at most 1 uses of path qudt:standardUncertainty
http://speckle.xyz/streams/bf7685a6aa/objects/98091c12cd6391f42dfb284cb94a7831
  - http://speckle.xyz/streams/bf7685a6aa/objects/82270a0b3589a9ebc714fbf580619e80 on http://speckle.xyz/streams/bf7685a6aa/objects/98091c12cd6391f42dfb284cb94a7831 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/82270a0b3589a9ebc714fbf580619e80 on http://speckle.xyz/streams/bf7685a6aa/objects/98091c12cd6391f42dfb284cb94a7831 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/DebyeAngularWavenumber
  - http://qudt.org/vocab/quantitykind/DebyeAngularWavenumber expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/PressureInRelationToVolumeFlow
  - http://qudt.org/vocab/quantitykind/PressureInRelationToVolumeFlow expected at most 1 uses of path qudt:plainTextDescription
http://speckle.xyz/streams/bf7685a6aa/objects/c5b62f49f8d2f6a26756a6fbc0f41342
  - http://speckle.xyz/streams/bf7685a6aa/objects/f031db8cf74c1d34f7ec9caaa44e707f on http://speckle.xyz/streams/bf7685a6aa/objects/c5b62f49f8d2f6a26756a6fbc0f41342 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/f031db8cf74c1d34f7ec9caaa44e707f on http://speckle.xyz/streams/bf7685a6aa/objects/c5b62f49f8d2f6a26756a6fbc0f41342 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/bb3163bdd60c25cdb6385e8f89d8c8c1
  - http://speckle.xyz/streams/bf7685a6aa/objects/7b2c9e560d7ad3bbb5ccd360227389ab on http://speckle.xyz/streams/bf7685a6aa/objects/bb3163bdd60c25cdb6385e8f89d8c8c1 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/7b2c9e560d7ad3bbb5ccd360227389ab on http://speckle.xyz/streams/bf7685a6aa/objects/bb3163bdd60c25cdb6385e8f89d8c8c1 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/constant/Value_WienFrequencyDisplacementLawConstant
  - http://qudt.org/vocab/constant/Value_WienFrequencyDisplacementLawConstant expected at most 1 uses of path qudt:standardUncertainty
http://speckle.xyz/streams/bf7685a6aa/objects/abad62e26ac07d95f7cf2e3449755671
  - http://speckle.xyz/streams/bf7685a6aa/objects/03183bd47ce710193f9d15449df4add8 on http://speckle.xyz/streams/bf7685a6aa/objects/abad62e26ac07d95f7cf2e3449755671 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/03183bd47ce710193f9d15449df4add8 on http://speckle.xyz/streams/bf7685a6aa/objects/abad62e26ac07d95f7cf2e3449755671 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/ElectronMeanFreePath
  - http://qudt.org/vocab/unit/GA_Charriere on http://qudt.org/vocab/quantitykind/ElectronMeanFreePath needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/ElectronMeanFreePath expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/CHAIN_US on http://qudt.org/vocab/quantitykind/ElectronMeanFreePath needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/ZOLL on http://qudt.org/vocab/quantitykind/ElectronMeanFreePath needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/c71c46d8793374b2f4b5edd923b6babc
  - http://speckle.xyz/streams/bf7685a6aa/objects/868c1e93f5a58548b63254651d2bea10 on http://speckle.xyz/streams/bf7685a6aa/objects/c71c46d8793374b2f4b5edd923b6babc needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/868c1e93f5a58548b63254651d2bea10 on http://speckle.xyz/streams/bf7685a6aa/objects/c71c46d8793374b2f4b5edd923b6babc needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/315fd7cd070f64ec174e3a759a641823
  - http://speckle.xyz/streams/bf7685a6aa/objects/f031db8cf74c1d34f7ec9caaa44e707f on http://speckle.xyz/streams/bf7685a6aa/objects/315fd7cd070f64ec174e3a759a641823 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/f031db8cf74c1d34f7ec9caaa44e707f on http://speckle.xyz/streams/bf7685a6aa/objects/315fd7cd070f64ec174e3a759a641823 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/MicroS
  - http://qudt.org/vocab/unit/MicroS expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MicroS expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/dimensionvector/A0E-2L2I0M1H0T-3D0
  - http://qudt.org/vocab/dimensionvector/A0E-2L2I0M1H0T-3D0 expected at most 1 uses of path qudt:latexDefinition
http://speckle.xyz/streams/bf7685a6aa/objects/a4ca2067cac62124feb060d6d35db067
  - http://speckle.xyz/streams/bf7685a6aa/objects/9146000a517bc8f7060b1fe8d939338d on http://speckle.xyz/streams/bf7685a6aa/objects/a4ca2067cac62124feb060d6d35db067 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/9146000a517bc8f7060b1fe8d939338d on http://speckle.xyz/streams/bf7685a6aa/objects/a4ca2067cac62124feb060d6d35db067 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/dbbbce3cb2e22f98d25591e43f3f3266
  - http://speckle.xyz/streams/bf7685a6aa/objects/326fd9e15b12400fd6b47bf26d8fbf84 on http://speckle.xyz/streams/bf7685a6aa/objects/dbbbce3cb2e22f98d25591e43f3f3266 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/326fd9e15b12400fd6b47bf26d8fbf84 on http://speckle.xyz/streams/bf7685a6aa/objects/dbbbce3cb2e22f98d25591e43f3f3266 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/RestEnergy
  - http://qudt.org/vocab/unit/THERM_EC on http://qudt.org/vocab/quantitykind/RestEnergy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/RestEnergy expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/NanoJ on http://qudt.org/vocab/quantitykind/RestEnergy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PicoJ on http://qudt.org/vocab/quantitykind/RestEnergy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/THERM_US on http://qudt.org/vocab/quantitykind/RestEnergy needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/MolarThermalCapacity
  - http://qudt.org/vocab/quantitykind/MolarThermalCapacity expected at most 1 uses of path qudt:plainTextDescription
http://qudt.org/vocab/quantitykind/IsothermalCompressibility
  - http://qudt.org/vocab/unit/PER-MegaPA on http://qudt.org/vocab/quantitykind/IsothermalCompressibility needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/IsothermalCompressibility expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/PER-MILLE-PSI on http://qudt.org/vocab/quantitykind/IsothermalCompressibility needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/unit/MegaV-A-HR
  - http://qudt.org/vocab/unit/MegaV-A-HR expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MegaV-A-HR expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/MIL_Circ
  - http://qudt.org/vocab/unit/MIL_Circ expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MIL_Circ expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/37bcb1e4f152db0ae3e9839e55ad2a3b
  - http://speckle.xyz/streams/bf7685a6aa/objects/c1f8ba2020eb6468b1d37e4445924aa6 on http://speckle.xyz/streams/bf7685a6aa/objects/37bcb1e4f152db0ae3e9839e55ad2a3b needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/c1f8ba2020eb6468b1d37e4445924aa6 on http://speckle.xyz/streams/bf7685a6aa/objects/37bcb1e4f152db0ae3e9839e55ad2a3b needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/constant/Value_ElectronGFactor
  - http://qudt.org/vocab/constant/Value_ElectronGFactor expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/quantitykind/Capacitance
  - http://qudt.org/vocab/unit/KiloFARAD on http://qudt.org/vocab/quantitykind/Capacitance needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/FemtoFARAD on http://qudt.org/vocab/quantitykind/Capacitance needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Capacitance expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/e8cbe948999ecfe203c9b727bd9f9dcd
  - http://speckle.xyz/streams/bf7685a6aa/objects/e7c9e2f9a7a0a501d31eab5423876669 on http://speckle.xyz/streams/bf7685a6aa/objects/e8cbe948999ecfe203c9b727bd9f9dcd needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e7c9e2f9a7a0a501d31eab5423876669 on http://speckle.xyz/streams/bf7685a6aa/objects/e8cbe948999ecfe203c9b727bd9f9dcd needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/MASS-MARGIN
  - http://qudt.org/vocab/unit/MegaTON on http://qudt.org/vocab/quantitykind/MASS-MARGIN needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MOMME_Textile on http://qudt.org/vocab/quantitykind/MASS-MARGIN needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MegaTONNE on http://qudt.org/vocab/quantitykind/MASS-MARGIN needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MOMME_Pearl on http://qudt.org/vocab/quantitykind/MASS-MARGIN needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PFUND on http://qudt.org/vocab/quantitykind/MASS-MARGIN needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/MASS-MARGIN expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/TON on http://qudt.org/vocab/quantitykind/MASS-MARGIN needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/unit/GM-PER-HR
  - http://qudt.org/vocab/unit/GM-PER-HR expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/GM-PER-HR expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/MicroMOL-PER-L-HR
  - http://qudt.org/vocab/unit/MicroMOL-PER-L-HR expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MicroMOL-PER-L-HR expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/MilliM-PER-HR
  - http://qudt.org/vocab/unit/MilliM-PER-HR expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MilliM-PER-HR expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/RelativeMolecularMass
  - http://qudt.org/vocab/unit/PPQ on http://qudt.org/vocab/quantitykind/RelativeMolecularMass needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PPT on http://qudt.org/vocab/quantitykind/RelativeMolecularMass needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/RelativeMolecularMass expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/INERT-MASS
  - http://qudt.org/vocab/quantitykind/INERT-MASS expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/MOMME_Pearl on http://qudt.org/vocab/quantitykind/INERT-MASS needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MOMME_Textile on http://qudt.org/vocab/quantitykind/INERT-MASS needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MegaTONNE on http://qudt.org/vocab/quantitykind/INERT-MASS needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MegaTON on http://qudt.org/vocab/quantitykind/INERT-MASS needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/TON on http://qudt.org/vocab/quantitykind/INERT-MASS needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PFUND on http://qudt.org/vocab/quantitykind/INERT-MASS needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/SpecificHeatsRatio
  - http://qudt.org/vocab/unit/PPT on http://qudt.org/vocab/quantitykind/SpecificHeatsRatio needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PPQ on http://qudt.org/vocab/quantitykind/SpecificHeatsRatio needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/28b8b90aafed09b815492218b181e193
  - http://speckle.xyz/streams/bf7685a6aa/objects/77fa201d44b529fd0ae42b20ba8ba809 on http://speckle.xyz/streams/bf7685a6aa/objects/28b8b90aafed09b815492218b181e193 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/77fa201d44b529fd0ae42b20ba8ba809 on http://speckle.xyz/streams/bf7685a6aa/objects/28b8b90aafed09b815492218b181e193 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/c8df3074bbea3d184072e1779e8b5dc4
  - http://speckle.xyz/streams/bf7685a6aa/objects/d5b1769b748423fb98cace29a0366946 on http://speckle.xyz/streams/bf7685a6aa/objects/c8df3074bbea3d184072e1779e8b5dc4 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/d5b1769b748423fb98cace29a0366946 on http://speckle.xyz/streams/bf7685a6aa/objects/c8df3074bbea3d184072e1779e8b5dc4 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/MicroN
  - http://qudt.org/vocab/unit/MicroN expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MicroN expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/CentiM3-PER-MOL-SEC
  - http://qudt.org/vocab/unit/CentiM3-PER-MOL-SEC expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/MilliGM-PER-MIN
  - http://qudt.org/vocab/unit/MilliGM-PER-MIN expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MilliGM-PER-MIN expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/PER-DAY
  - http://qudt.org/vocab/unit/PER-DAY expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/PER-DAY expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/af92dc77efbb49f375c9b33f010846b2
  - http://speckle.xyz/streams/bf7685a6aa/objects/f7c769a50d39f020556ab74d468269a2 on http://speckle.xyz/streams/bf7685a6aa/objects/af92dc77efbb49f375c9b33f010846b2 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/f7c769a50d39f020556ab74d468269a2 on http://speckle.xyz/streams/bf7685a6aa/objects/af92dc77efbb49f375c9b33f010846b2 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/a7ab72b1f1d116c4aba49138690dedf7
  - http://speckle.xyz/streams/bf7685a6aa/objects/bfcc2b802b338cb0cbaefad6542c58d7 on http://speckle.xyz/streams/bf7685a6aa/objects/a7ab72b1f1d116c4aba49138690dedf7 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/bfcc2b802b338cb0cbaefad6542c58d7 on http://speckle.xyz/streams/bf7685a6aa/objects/a7ab72b1f1d116c4aba49138690dedf7 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/sou/PLANCK
  - http://qudt.org/vocab/sou/PLANCK expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/VolumetricFlux
  - http://qudt.org/vocab/quantitykind/VolumetricFlux expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/30f392def6bdb3364a8d9b5a6990ea4a
  - http://speckle.xyz/streams/bf7685a6aa/objects/f031db8cf74c1d34f7ec9caaa44e707f on http://speckle.xyz/streams/bf7685a6aa/objects/30f392def6bdb3364a8d9b5a6990ea4a needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/f031db8cf74c1d34f7ec9caaa44e707f on http://speckle.xyz/streams/bf7685a6aa/objects/30f392def6bdb3364a8d9b5a6990ea4a needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/eb2ccf629e8254be5f8dea03334edee3
  - http://speckle.xyz/streams/bf7685a6aa/objects/e81a465e50845b69c15fe22a744fc9df on http://speckle.xyz/streams/bf7685a6aa/objects/eb2ccf629e8254be5f8dea03334edee3 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e81a465e50845b69c15fe22a744fc9df on http://speckle.xyz/streams/bf7685a6aa/objects/eb2ccf629e8254be5f8dea03334edee3 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/PressureCoefficient
  - http://qudt.org/vocab/unit/BAR-PER-DEG_C on http://qudt.org/vocab/quantitykind/PressureCoefficient needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/constant/Value_JouleHartreeRelationship
  - http://qudt.org/vocab/constant/Value_JouleHartreeRelationship expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/unit/KiloEV-PER-MicroM
  - http://qudt.org/vocab/unit/KiloEV-PER-MicroM expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/KiloEV-PER-MicroM expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H1T-1D0
  - http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H1T-1D0 expected at most 1 uses of path qudt:latexDefinition
http://qudt.org/vocab/quantitykind/EnergyPerElectricCharge
  - http://qudt.org/vocab/unit/PicoV on http://qudt.org/vocab/quantitykind/EnergyPerElectricCharge needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/FemtoV on http://qudt.org/vocab/quantitykind/EnergyPerElectricCharge needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/TeraV on http://qudt.org/vocab/quantitykind/EnergyPerElectricCharge needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/NanoV on http://qudt.org/vocab/quantitykind/EnergyPerElectricCharge needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GigaV on http://qudt.org/vocab/quantitykind/EnergyPerElectricCharge needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/unit/TeraBYTE
  - http://qudt.org/vocab/unit/TeraBYTE expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/TeraBYTE expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/9dd83fcb2f3053d37bd70a12d2aa8e62
  - http://speckle.xyz/streams/bf7685a6aa/objects/3efdbbd7d157786885a7c74d641c8fae on http://speckle.xyz/streams/bf7685a6aa/objects/9dd83fcb2f3053d37bd70a12d2aa8e62 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/3efdbbd7d157786885a7c74d641c8fae on http://speckle.xyz/streams/bf7685a6aa/objects/9dd83fcb2f3053d37bd70a12d2aa8e62 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/64da0cc66e6c817c6d08afb9f248b76a
  - http://speckle.xyz/streams/bf7685a6aa/objects/e2c2fcb66699bae88ba79c422b644168 on http://speckle.xyz/streams/bf7685a6aa/objects/64da0cc66e6c817c6d08afb9f248b76a needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e2c2fcb66699bae88ba79c422b644168 on http://speckle.xyz/streams/bf7685a6aa/objects/64da0cc66e6c817c6d08afb9f248b76a needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/PicoH
  - http://qudt.org/vocab/unit/PicoH expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/PicoH expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/c6fd697a93577fc96cea5f1a0ac23cd0
  - http://speckle.xyz/streams/bf7685a6aa/objects/ea809d7a6106eaba6d818bfdb3e3e5b9 on http://speckle.xyz/streams/bf7685a6aa/objects/c6fd697a93577fc96cea5f1a0ac23cd0 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/ea809d7a6106eaba6d818bfdb3e3e5b9 on http://speckle.xyz/streams/bf7685a6aa/objects/c6fd697a93577fc96cea5f1a0ac23cd0 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/MilliL
  - http://qudt.org/vocab/unit/MilliL expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MilliL expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/constant/Value_KelvinHartreeRelationship
  - http://qudt.org/vocab/constant/Value_KelvinHartreeRelationship expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/unit/KiloW-HR-PER-M2
  - http://qudt.org/vocab/unit/KiloW-HR-PER-M2 expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/KiloW-HR-PER-M2 expected at most 1 uses of path qudt:conversionOffset
  - http://qudt.org/vocab/unit/KiloW-HR-PER-M2 expected at most 1 uses of path qudt:conversionOffset
http://speckle.xyz/streams/bf7685a6aa/objects/f0d9ecabbc1a6d3413a4c8c834ce328c
  - http://speckle.xyz/streams/bf7685a6aa/objects/f7c769a50d39f020556ab74d468269a2 on http://speckle.xyz/streams/bf7685a6aa/objects/f0d9ecabbc1a6d3413a4c8c834ce328c needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/f7c769a50d39f020556ab74d468269a2 on http://speckle.xyz/streams/bf7685a6aa/objects/f0d9ecabbc1a6d3413a4c8c834ce328c needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/MO
  - http://qudt.org/vocab/unit/MO expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MO expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/2edb92b3c0201034faa0ae34f54da404
  - http://speckle.xyz/streams/bf7685a6aa/objects/c8fb46fc939728e45252377481a55e6a on http://speckle.xyz/streams/bf7685a6aa/objects/2edb92b3c0201034faa0ae34f54da404 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/c8fb46fc939728e45252377481a55e6a on http://speckle.xyz/streams/bf7685a6aa/objects/2edb92b3c0201034faa0ae34f54da404 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/RotationalVelocity
  - http://qudt.org/vocab/unit/CYC-PER-SEC on http://qudt.org/vocab/quantitykind/RotationalVelocity needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/AbsorbedDose
  - http://qudt.org/vocab/quantitykind/AbsorbedDose expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/CentiGRAY on http://qudt.org/vocab/quantitykind/AbsorbedDose needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloGRAY on http://qudt.org/vocab/quantitykind/AbsorbedDose needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MegaGRAY on http://qudt.org/vocab/quantitykind/AbsorbedDose needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/unit/QT_UK-PER-DAY
  - http://qudt.org/vocab/unit/QT_UK-PER-DAY expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/QT_UK-PER-DAY expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/GeneralizedMomentum
  - http://qudt.org/vocab/quantitykind/GeneralizedMomentum expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/Acceleration
  - http://qudt.org/vocab/unit/MilliM-PER-SEC2 on http://qudt.org/vocab/quantitykind/Acceleration needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Acceleration expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/YD-PER-SEC2 on http://qudt.org/vocab/quantitykind/Acceleration needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloM-PER-SEC2 on http://qudt.org/vocab/quantitykind/Acceleration needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MI_US-PER-SEC2 on http://qudt.org/vocab/quantitykind/Acceleration needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/constant/Value_InverseMeterKelvinRelationship
  - http://qudt.org/vocab/constant/Value_InverseMeterKelvinRelationship expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/unit/OZ_VOL_US-PER-MIN
  - http://qudt.org/vocab/unit/OZ_VOL_US-PER-MIN expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/OZ_VOL_US-PER-MIN expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/EllipticalOrbitApogeeVelocity
  - http://qudt.org/vocab/quantitykind/EllipticalOrbitApogeeVelocity expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/MicroM-PER-MIN on http://qudt.org/vocab/quantitykind/EllipticalOrbitApogeeVelocity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/YD-PER-SEC on http://qudt.org/vocab/quantitykind/EllipticalOrbitApogeeVelocity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/YD-PER-MIN on http://qudt.org/vocab/quantitykind/EllipticalOrbitApogeeVelocity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/YD-PER-HR on http://qudt.org/vocab/quantitykind/EllipticalOrbitApogeeVelocity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/IN-PER-YR on http://qudt.org/vocab/quantitykind/EllipticalOrbitApogeeVelocity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MicroM-PER-SEC on http://qudt.org/vocab/quantitykind/EllipticalOrbitApogeeVelocity needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/unit/NanoM
  - http://qudt.org/vocab/unit/NanoM expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/NanoM expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/constant/Value_BoltzmannConstantInEVPerK
  - http://qudt.org/vocab/constant/Value_BoltzmannConstantInEVPerK expected at most 1 uses of path qudt:standardUncertainty
http://speckle.xyz/streams/bf7685a6aa/objects/c37770f371e6664882679d5a5f4ba87b
  - http://speckle.xyz/streams/bf7685a6aa/objects/5aa8dbce5ed730aeaaab18a2c23b2dae on http://speckle.xyz/streams/bf7685a6aa/objects/c37770f371e6664882679d5a5f4ba87b needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/5aa8dbce5ed730aeaaab18a2c23b2dae on http://speckle.xyz/streams/bf7685a6aa/objects/c37770f371e6664882679d5a5f4ba87b needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/SystolicBloodPressure
  - http://qudt.org/vocab/unit/PDL-PER-IN2 on http://qudt.org/vocab/quantitykind/SystolicBloodPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CentiM_HG_0DEG_C on http://qudt.org/vocab/quantitykind/SystolicBloodPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CentiM_H20_4DEG_C on http://qudt.org/vocab/quantitykind/SystolicBloodPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/SystolicBloodPressure expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/IN_HG_60DEG_F on http://qudt.org/vocab/quantitykind/SystolicBloodPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/FT_H2O_39dot2DEG_F on http://qudt.org/vocab/quantitykind/SystolicBloodPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/IN_HG_32DEG_F on http://qudt.org/vocab/quantitykind/SystolicBloodPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloN-PER-M2 on http://qudt.org/vocab/quantitykind/SystolicBloodPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/M_H2O on http://qudt.org/vocab/quantitykind/SystolicBloodPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/IN_H2O_60DEG_F on http://qudt.org/vocab/quantitykind/SystolicBloodPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CentiM_H2O_4DEG_C on http://qudt.org/vocab/quantitykind/SystolicBloodPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/IN_H2O_39dot2DEG_F on http://qudt.org/vocab/quantitykind/SystolicBloodPressure needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/Half-ValueThickness
  - http://qudt.org/vocab/unit/GA_Charriere on http://qudt.org/vocab/quantitykind/Half-ValueThickness needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/ZOLL on http://qudt.org/vocab/quantitykind/Half-ValueThickness needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CHAIN_US on http://qudt.org/vocab/quantitykind/Half-ValueThickness needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Half-ValueThickness expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/constant/Value_NaturalUnitOfActionInEVS
  - http://qudt.org/vocab/constant/Value_NaturalUnitOfActionInEVS expected at most 1 uses of path qudt:standardUncertainty
http://speckle.xyz/streams/bf7685a6aa/objects/9474db3d91e439e93c4a206a51b56d56
  - http://speckle.xyz/streams/bf7685a6aa/objects/96b50d6b8d4e936c2c04a6876aa61c37 on http://speckle.xyz/streams/bf7685a6aa/objects/9474db3d91e439e93c4a206a51b56d56 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/96b50d6b8d4e936c2c04a6876aa61c37 on http://speckle.xyz/streams/bf7685a6aa/objects/9474db3d91e439e93c4a206a51b56d56 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/constant/Value_NaturalUnitOfEnergyInMeV
  - http://qudt.org/vocab/constant/Value_NaturalUnitOfEnergyInMeV expected at most 1 uses of path qudt:standardUncertainty
http://speckle.xyz/streams/bf7685a6aa/objects/c2eb963d212aeddefc21b986a9533460
  - http://speckle.xyz/streams/bf7685a6aa/objects/afd2940fe9aa7135187ec2abaaef0157 on http://speckle.xyz/streams/bf7685a6aa/objects/c2eb963d212aeddefc21b986a9533460 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/afd2940fe9aa7135187ec2abaaef0157 on http://speckle.xyz/streams/bf7685a6aa/objects/c2eb963d212aeddefc21b986a9533460 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/constant/Value_AtomicUnitOfElectricFieldGradient
  - http://qudt.org/vocab/constant/Value_AtomicUnitOfElectricFieldGradient expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/quantitykind/MeanMassRange
  - http://qudt.org/vocab/unit/LB-PER-YD2 on http://qudt.org/vocab/quantitykind/MeanMassRange needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/OZ-PER-IN2 on http://qudt.org/vocab/quantitykind/MeanMassRange needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/MeanMassRange expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/GM-PER-MilliM2 on http://qudt.org/vocab/quantitykind/MeanMassRange needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/PotentialEnergy
  - http://qudt.org/vocab/quantitykind/PotentialEnergy expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/THERM_US on http://qudt.org/vocab/quantitykind/PotentialEnergy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/THERM_EC on http://qudt.org/vocab/quantitykind/PotentialEnergy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/NanoJ on http://qudt.org/vocab/quantitykind/PotentialEnergy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PicoJ on http://qudt.org/vocab/quantitykind/PotentialEnergy needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/ElectricChargeVolumeDensity
  - http://qudt.org/vocab/unit/A-HR-PER-DeciM3 on http://qudt.org/vocab/quantitykind/ElectricChargeVolumeDensity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/A-HR-PER-M3 on http://qudt.org/vocab/quantitykind/ElectricChargeVolumeDensity needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/20f69aa5a4c9b64f00977694d3c8862e
  - http://speckle.xyz/streams/bf7685a6aa/objects/c1e7bac9cc9cff56ce6fff37c81afd27 on http://speckle.xyz/streams/bf7685a6aa/objects/20f69aa5a4c9b64f00977694d3c8862e needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/c1e7bac9cc9cff56ce6fff37c81afd27 on http://speckle.xyz/streams/bf7685a6aa/objects/20f69aa5a4c9b64f00977694d3c8862e needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/TemperatureBasedDynamicViscosity
  - http://qudt.org/vocab/quantitykind/TemperatureBasedDynamicViscosity expected at most 1 uses of path qudt:plainTextDescription
http://speckle.xyz/streams/bf7685a6aa/objects/bbcf45f67f7d7ca3f11b4f7c205249a3
  - http://speckle.xyz/streams/bf7685a6aa/objects/e9670962d6933d8e0a96caf59912d990 on http://speckle.xyz/streams/bf7685a6aa/objects/bbcf45f67f7d7ca3f11b4f7c205249a3 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e9670962d6933d8e0a96caf59912d990 on http://speckle.xyz/streams/bf7685a6aa/objects/bbcf45f67f7d7ca3f11b4f7c205249a3 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/PPTM-PER-K
  - http://qudt.org/vocab/unit/PPTM-PER-K expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/PPTM-PER-K expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/BindingFraction
  - http://qudt.org/vocab/quantitykind/BindingFraction expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/bdfdac0a5a001cde58aced280b765b49
  - http://speckle.xyz/streams/bf7685a6aa/objects/c8fb46fc939728e45252377481a55e6a on http://speckle.xyz/streams/bf7685a6aa/objects/bdfdac0a5a001cde58aced280b765b49 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/c8fb46fc939728e45252377481a55e6a on http://speckle.xyz/streams/bf7685a6aa/objects/bdfdac0a5a001cde58aced280b765b49 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/8ce06409175921bb875ea8ce7135dcbf
  - http://speckle.xyz/streams/bf7685a6aa/objects/2bab3a834da573d903244a9902f78aa1 on http://speckle.xyz/streams/bf7685a6aa/objects/8ce06409175921bb875ea8ce7135dcbf needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/2bab3a834da573d903244a9902f78aa1 on http://speckle.xyz/streams/bf7685a6aa/objects/8ce06409175921bb875ea8ce7135dcbf needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/895c6725ed3cc37d70afc4bb71fe2583
  - http://speckle.xyz/streams/bf7685a6aa/objects/f031db8cf74c1d34f7ec9caaa44e707f on http://speckle.xyz/streams/bf7685a6aa/objects/895c6725ed3cc37d70afc4bb71fe2583 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/f031db8cf74c1d34f7ec9caaa44e707f on http://speckle.xyz/streams/bf7685a6aa/objects/895c6725ed3cc37d70afc4bb71fe2583 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/ChemicalPotential
  - http://qudt.org/vocab/quantitykind/ChemicalPotential expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/LuminousEmittance
  - http://qudt.org/vocab/quantitykind/LuminousEmittance expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/37a2101a60b951eb1cd266ad72f6531e
  - http://speckle.xyz/streams/bf7685a6aa/objects/5556cde6660a613e241f1da37e548290 on http://speckle.xyz/streams/bf7685a6aa/objects/37a2101a60b951eb1cd266ad72f6531e needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/5556cde6660a613e241f1da37e548290 on http://speckle.xyz/streams/bf7685a6aa/objects/37a2101a60b951eb1cd266ad72f6531e needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/NeutronYieldPerAbsorption
  - http://qudt.org/vocab/quantitykind/NeutronYieldPerAbsorption expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/NeelTemperature
  - http://qudt.org/vocab/quantitykind/NeelTemperature expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/6cbfde4bb2ae1048a9ea419fce5adcd3
  - http://speckle.xyz/streams/bf7685a6aa/objects/f031db8cf74c1d34f7ec9caaa44e707f on http://speckle.xyz/streams/bf7685a6aa/objects/6cbfde4bb2ae1048a9ea419fce5adcd3 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/f031db8cf74c1d34f7ec9caaa44e707f on http://speckle.xyz/streams/bf7685a6aa/objects/6cbfde4bb2ae1048a9ea419fce5adcd3 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/Diameter
  - http://qudt.org/vocab/unit/GA_Charriere on http://qudt.org/vocab/quantitykind/Diameter needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CHAIN_US on http://qudt.org/vocab/quantitykind/Diameter needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/ZOLL on http://qudt.org/vocab/quantitykind/Diameter needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Diameter expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/constant/Value_ElectronVoltHertzRelationship
  - http://qudt.org/vocab/constant/Value_ElectronVoltHertzRelationship expected at most 1 uses of path qudt:standardUncertainty
http://speckle.xyz/streams/bf7685a6aa/objects/f69c264e18791d5a145ceedc0f1bcf59
  - http://speckle.xyz/streams/bf7685a6aa/objects/166e27749553cf3219b95effaa60229f on http://speckle.xyz/streams/bf7685a6aa/objects/f69c264e18791d5a145ceedc0f1bcf59 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/166e27749553cf3219b95effaa60229f on http://speckle.xyz/streams/bf7685a6aa/objects/f69c264e18791d5a145ceedc0f1bcf59 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/MoleFraction
  - http://qudt.org/vocab/unit/PPT on http://qudt.org/vocab/quantitykind/MoleFraction needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/MoleFraction expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/PPQ on http://qudt.org/vocab/quantitykind/MoleFraction needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/unit/KiloV-A-HR
  - http://qudt.org/vocab/unit/KiloV-A-HR expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/KiloV-A-HR expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/NanoM-PER-CentiM-PSI
  - http://qudt.org/vocab/unit/NanoM-PER-CentiM-PSI expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/NanoM-PER-CentiM-PSI expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/constant/UniversalGasConstant
  - http://qudt.org/vocab/constant/UniversalGasConstant expected at most 1 uses of path qudt:plainTextDescription
http://qudt.org/vocab/quantitykind/Transmittance
  - http://qudt.org/vocab/unit/PPT on http://qudt.org/vocab/quantitykind/Transmittance needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PPQ on http://qudt.org/vocab/quantitykind/Transmittance needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Transmittance expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/constant/Value_NuclearMagnetonInKPerT
  - http://qudt.org/vocab/constant/Value_NuclearMagnetonInKPerT expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/quantitykind/Gradient
  - http://qudt.org/vocab/unit/MilliM-PER-M on http://qudt.org/vocab/quantitykind/Gradient needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MicroM-PER-M on http://qudt.org/vocab/quantitykind/Gradient needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/AtmosphericHydroxylationRate
  - http://qudt.org/vocab/quantitykind/AtmosphericHydroxylationRate expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/L-PER-MOL-SEC on http://qudt.org/vocab/quantitykind/AtmosphericHydroxylationRate needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/210013c158883b9ab16a116f6c7e0270
  - http://speckle.xyz/streams/bf7685a6aa/objects/8e754b8c808cf1a1e48137195659f8c8 on http://speckle.xyz/streams/bf7685a6aa/objects/210013c158883b9ab16a116f6c7e0270 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/8e754b8c808cf1a1e48137195659f8c8 on http://speckle.xyz/streams/bf7685a6aa/objects/210013c158883b9ab16a116f6c7e0270 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/MegaBYTE
  - http://qudt.org/vocab/unit/MegaBYTE expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MegaBYTE expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/PER-CentiM3
  - http://qudt.org/vocab/unit/PER-CentiM3 expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/PER-CentiM3 expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/ba365feaef4cecf57824ce05f32fa338
  - http://speckle.xyz/streams/bf7685a6aa/objects/2e7fcf08c8c16097c4fb8b7074f6b8a3 on http://speckle.xyz/streams/bf7685a6aa/objects/ba365feaef4cecf57824ce05f32fa338 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/2e7fcf08c8c16097c4fb8b7074f6b8a3 on http://speckle.xyz/streams/bf7685a6aa/objects/ba365feaef4cecf57824ce05f32fa338 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/GM-PER-DAY
  - http://qudt.org/vocab/unit/GM-PER-DAY expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/GM-PER-DAY expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/constant/Value_KelvinInverseMeterRelationship
  - http://qudt.org/vocab/constant/Value_KelvinInverseMeterRelationship expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/unit/MicroSV-PER-HR
  - http://qudt.org/vocab/unit/MicroSV-PER-HR expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MicroSV-PER-HR expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/4a60e6addc07ee7a5f25b6953a894b1b
  - http://speckle.xyz/streams/bf7685a6aa/objects/3efdbbd7d157786885a7c74d641c8fae on http://speckle.xyz/streams/bf7685a6aa/objects/4a60e6addc07ee7a5f25b6953a894b1b needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/3efdbbd7d157786885a7c74d641c8fae on http://speckle.xyz/streams/bf7685a6aa/objects/4a60e6addc07ee7a5f25b6953a894b1b needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/MilliGM-PER-DAY
  - http://qudt.org/vocab/unit/MilliGM-PER-DAY expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MilliGM-PER-DAY expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/5901a6a61574a17db05118ef402470b6
  - http://speckle.xyz/streams/bf7685a6aa/objects/30fb4b69fa549ef9a7e18ead4885dec5 on http://speckle.xyz/streams/bf7685a6aa/objects/5901a6a61574a17db05118ef402470b6 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/30fb4b69fa549ef9a7e18ead4885dec5 on http://speckle.xyz/streams/bf7685a6aa/objects/5901a6a61574a17db05118ef402470b6 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/d58ead61f14ccf11f130a092e3f2a66c
  - http://speckle.xyz/streams/bf7685a6aa/objects/0e5bab348c0d7a43d3197d71b2ecdff0 on http://speckle.xyz/streams/bf7685a6aa/objects/d58ead61f14ccf11f130a092e3f2a66c needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/0e5bab348c0d7a43d3197d71b2ecdff0 on http://speckle.xyz/streams/bf7685a6aa/objects/d58ead61f14ccf11f130a092e3f2a66c needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/0402eb73eb48b0ccb23d14a1cc9d378b
  - http://speckle.xyz/streams/bf7685a6aa/objects/62014ffc2035e78fa2838efe58021617 on http://speckle.xyz/streams/bf7685a6aa/objects/0402eb73eb48b0ccb23d14a1cc9d378b needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/62014ffc2035e78fa2838efe58021617 on http://speckle.xyz/streams/bf7685a6aa/objects/0402eb73eb48b0ccb23d14a1cc9d378b needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/b27169cb7619617c29977103bc51aa4d
  - http://speckle.xyz/streams/bf7685a6aa/objects/5aa8dbce5ed730aeaaab18a2c23b2dae on http://speckle.xyz/streams/bf7685a6aa/objects/b27169cb7619617c29977103bc51aa4d needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/5aa8dbce5ed730aeaaab18a2c23b2dae on http://speckle.xyz/streams/bf7685a6aa/objects/b27169cb7619617c29977103bc51aa4d needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/dimensionvector/A0E1L0I0M-1H0T1D0
  - http://qudt.org/vocab/dimensionvector/A0E1L0I0M-1H0T1D0 expected at most 1 uses of path qudt:latexDefinition
http://qudt.org/vocab/quantitykind/AreicTorque
  - http://qudt.org/vocab/quantitykind/AreicTorque expected at most 1 uses of path qudt:plainTextDescription
http://qudt.org/vocab/quantitykind/RatioOfSpecificHeatCapacities
  - http://qudt.org/vocab/quantitykind/RatioOfSpecificHeatCapacities expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/ParticlePositionVector
  - http://qudt.org/vocab/unit/ZOLL on http://qudt.org/vocab/quantitykind/ParticlePositionVector needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CHAIN_US on http://qudt.org/vocab/quantitykind/ParticlePositionVector needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/ParticlePositionVector expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/GA_Charriere on http://qudt.org/vocab/quantitykind/ParticlePositionVector needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/unit/ANGSTROM
  - http://qudt.org/vocab/unit/ANGSTROM expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/ANGSTROM expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/constant/Value_HartreeHertzRelationship
  - http://qudt.org/vocab/constant/Value_HartreeHertzRelationship expected at most 1 uses of path qudt:standardUncertainty
http://speckle.xyz/streams/bf7685a6aa/objects/06ad47466d0a2a9c4ea17576e8337497
  - http://speckle.xyz/streams/bf7685a6aa/objects/f031db8cf74c1d34f7ec9caaa44e707f on http://speckle.xyz/streams/bf7685a6aa/objects/06ad47466d0a2a9c4ea17576e8337497 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/f031db8cf74c1d34f7ec9caaa44e707f on http://speckle.xyz/streams/bf7685a6aa/objects/06ad47466d0a2a9c4ea17576e8337497 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/a593285867236d11cd5e296c55e1cb85
  - http://speckle.xyz/streams/bf7685a6aa/objects/61392c60c3f0f6583028d86c3528cd5c on http://speckle.xyz/streams/bf7685a6aa/objects/a593285867236d11cd5e296c55e1cb85 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/61392c60c3f0f6583028d86c3528cd5c on http://speckle.xyz/streams/bf7685a6aa/objects/a593285867236d11cd5e296c55e1cb85 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/a009f1138d5d5c8356ab2f1967d01a12
  - http://speckle.xyz/streams/bf7685a6aa/objects/78b0d278cde75c79f13d638e01c2c702 on http://speckle.xyz/streams/bf7685a6aa/objects/a009f1138d5d5c8356ab2f1967d01a12 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/78b0d278cde75c79f13d638e01c2c702 on http://speckle.xyz/streams/bf7685a6aa/objects/a009f1138d5d5c8356ab2f1967d01a12 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/62eb1023537a316e46d9bb0ae153ae4f
  - http://speckle.xyz/streams/bf7685a6aa/objects/af1446d067d1a6d619cec36730b3234c on http://speckle.xyz/streams/bf7685a6aa/objects/62eb1023537a316e46d9bb0ae153ae4f needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/af1446d067d1a6d619cec36730b3234c on http://speckle.xyz/streams/bf7685a6aa/objects/62eb1023537a316e46d9bb0ae153ae4f needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/2ce4f4e6b717ce1e48f9d14e395b04aa
  - http://speckle.xyz/streams/bf7685a6aa/objects/e8908b5eec592c1e9e520605ad787a0c on http://speckle.xyz/streams/bf7685a6aa/objects/2ce4f4e6b717ce1e48f9d14e395b04aa needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e8908b5eec592c1e9e520605ad787a0c on http://speckle.xyz/streams/bf7685a6aa/objects/2ce4f4e6b717ce1e48f9d14e395b04aa needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/Velocity
  - http://qudt.org/vocab/unit/YD-PER-MIN on http://qudt.org/vocab/quantitykind/Velocity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/YD-PER-HR on http://qudt.org/vocab/quantitykind/Velocity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MicroM-PER-SEC on http://qudt.org/vocab/quantitykind/Velocity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Velocity expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/IN-PER-YR on http://qudt.org/vocab/quantitykind/Velocity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MicroM-PER-MIN on http://qudt.org/vocab/quantitykind/Velocity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/YD-PER-SEC on http://qudt.org/vocab/quantitykind/Velocity needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/LinearEnergyTransfer
  - http://qudt.org/vocab/quantitykind/LinearEnergyTransfer expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/483a0360e3ff20ab5efb9df658e948e4
  - http://speckle.xyz/streams/bf7685a6aa/objects/768970d137816ceece03741af232ae99 on http://speckle.xyz/streams/bf7685a6aa/objects/483a0360e3ff20ab5efb9df658e948e4 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/768970d137816ceece03741af232ae99 on http://speckle.xyz/streams/bf7685a6aa/objects/483a0360e3ff20ab5efb9df658e948e4 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/f7822a64ea5e0453b390fbd68dcf46b2
  - http://speckle.xyz/streams/bf7685a6aa/objects/03183bd47ce710193f9d15449df4add8 on http://speckle.xyz/streams/bf7685a6aa/objects/f7822a64ea5e0453b390fbd68dcf46b2 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/03183bd47ce710193f9d15449df4add8 on http://speckle.xyz/streams/bf7685a6aa/objects/f7822a64ea5e0453b390fbd68dcf46b2 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/17dc2ebdb1233e4702dc69a1b249ef86
  - http://speckle.xyz/streams/bf7685a6aa/objects/e5eb69c71be84f5da9e07df2de08c8eb on http://speckle.xyz/streams/bf7685a6aa/objects/17dc2ebdb1233e4702dc69a1b249ef86 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e5eb69c71be84f5da9e07df2de08c8eb on http://speckle.xyz/streams/bf7685a6aa/objects/17dc2ebdb1233e4702dc69a1b249ef86 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/VolumeFlowRate_SurfaceRelated
  - http://qudt.org/vocab/unit/M3-PER-SEC-M2 on http://qudt.org/vocab/quantitykind/VolumeFlowRate_SurfaceRelated needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/LogarithmRatioToBaseE
  - http://qudt.org/vocab/quantitykind/LogarithmRatioToBaseE expected at most 1 uses of path qudt:plainTextDescription
http://qudt.org/vocab/quantitykind/SpectralDensityOfVibrationalModes
  - http://qudt.org/vocab/unit/SEC-PER-M3-RAD on http://qudt.org/vocab/quantitykind/SpectralDensityOfVibrationalModes needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/c43c794f206b2bc13630dd7f0dfc5b41
  - http://speckle.xyz/streams/bf7685a6aa/objects/22ee737a989391acee4ea60354e91210 on http://speckle.xyz/streams/bf7685a6aa/objects/c43c794f206b2bc13630dd7f0dfc5b41 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/22ee737a989391acee4ea60354e91210 on http://speckle.xyz/streams/bf7685a6aa/objects/c43c794f206b2bc13630dd7f0dfc5b41 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/constant/Value_NuclearMagnetonInInverseMetersPerTesla
  - http://qudt.org/vocab/constant/Value_NuclearMagnetonInInverseMetersPerTesla expected at most 1 uses of path qudt:standardUncertainty
http://speckle.xyz/streams/bf7685a6aa/objects/4c2e5a32b79c9215c1a42a75e9fda4d0
  - http://speckle.xyz/streams/bf7685a6aa/objects/ea809d7a6106eaba6d818bfdb3e3e5b9 on http://speckle.xyz/streams/bf7685a6aa/objects/4c2e5a32b79c9215c1a42a75e9fda4d0 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/ea809d7a6106eaba6d818bfdb3e3e5b9 on http://speckle.xyz/streams/bf7685a6aa/objects/4c2e5a32b79c9215c1a42a75e9fda4d0 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/Luminance
  - http://qudt.org/vocab/unit/LM-PER-FT2 on http://qudt.org/vocab/quantitykind/Luminance needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Luminance expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/CD-PER-FT2 on http://qudt.org/vocab/quantitykind/Luminance needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/LM-PER-M2 on http://qudt.org/vocab/quantitykind/Luminance needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/LA_FT on http://qudt.org/vocab/quantitykind/Luminance needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/constant/Value_ProtonMassEnergyEquivalent
  - http://qudt.org/vocab/constant/Value_ProtonMassEnergyEquivalent expected at most 1 uses of path qudt:standardUncertainty
http://speckle.xyz/streams/bf7685a6aa/objects/258f3d774e6840756668676b3157b1cf
  - http://speckle.xyz/streams/bf7685a6aa/objects/f031db8cf74c1d34f7ec9caaa44e707f on http://speckle.xyz/streams/bf7685a6aa/objects/258f3d774e6840756668676b3157b1cf needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/f031db8cf74c1d34f7ec9caaa44e707f on http://speckle.xyz/streams/bf7685a6aa/objects/258f3d774e6840756668676b3157b1cf needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/CENTER-OF-MASS
  - http://qudt.org/vocab/unit/GA_Charriere on http://qudt.org/vocab/quantitykind/CENTER-OF-MASS needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/CENTER-OF-MASS expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/ZOLL on http://qudt.org/vocab/quantitykind/CENTER-OF-MASS needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CHAIN_US on http://qudt.org/vocab/quantitykind/CENTER-OF-MASS needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/TemperatureBasedLength
  - http://qudt.org/vocab/quantitykind/TemperatureBasedLength expected at most 1 uses of path qudt:plainTextDescription
http://qudt.org/vocab/constant/Value_AtomicUnitOf1stHyperpolarizability
  - http://qudt.org/vocab/constant/Value_AtomicUnitOf1stHyperpolarizability expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/quantitykind/PressureInRelationToVolumeFlowRate
  - http://qudt.org/vocab/unit/DYN-SEC-PER-CentiM5 on http://qudt.org/vocab/quantitykind/PressureInRelationToVolumeFlowRate needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PA-SEC-PER-L on http://qudt.org/vocab/quantitykind/PressureInRelationToVolumeFlowRate needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/ForceMagnitude
  - http://qudt.org/vocab/quantitykind/ForceMagnitude expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/P on http://qudt.org/vocab/quantitykind/ForceMagnitude needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloGM-M-PER-SEC2 on http://qudt.org/vocab/quantitykind/ForceMagnitude needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/POND on http://qudt.org/vocab/quantitykind/ForceMagnitude needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/Reactivity
  - http://qudt.org/vocab/quantitykind/Reactivity expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/ForcePerLength
  - http://qudt.org/vocab/unit/PDL-PER-IN on http://qudt.org/vocab/quantitykind/ForcePerLength needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CentiN-M-PER-M2 on http://qudt.org/vocab/quantitykind/ForcePerLength needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/LB_F-PER-YD on http://qudt.org/vocab/quantitykind/ForcePerLength needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MegaN-M-PER-M2 on http://qudt.org/vocab/quantitykind/ForcePerLength needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/NanoN-M-PER-M2 on http://qudt.org/vocab/quantitykind/ForcePerLength needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GigaN-M-PER-M2 on http://qudt.org/vocab/quantitykind/ForcePerLength needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloN-PER-M on http://qudt.org/vocab/quantitykind/ForcePerLength needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliN-M-PER-M2 on http://qudt.org/vocab/quantitykind/ForcePerLength needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MicroN-M-PER-M2 on http://qudt.org/vocab/quantitykind/ForcePerLength needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloN-M-PER-M2 on http://qudt.org/vocab/quantitykind/ForcePerLength needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/a62d49327557c0fd7d6f523703294802
  - http://speckle.xyz/streams/bf7685a6aa/objects/c1f8ba2020eb6468b1d37e4445924aa6 on http://speckle.xyz/streams/bf7685a6aa/objects/a62d49327557c0fd7d6f523703294802 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/c1f8ba2020eb6468b1d37e4445924aa6 on http://speckle.xyz/streams/bf7685a6aa/objects/a62d49327557c0fd7d6f523703294802 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/7ca6c05f001106fd5279b3c45991eaa8
  - http://speckle.xyz/streams/bf7685a6aa/objects/8d3ab9635d58bfdfc81c3f647c553b97 on http://speckle.xyz/streams/bf7685a6aa/objects/7ca6c05f001106fd5279b3c45991eaa8 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/8d3ab9635d58bfdfc81c3f647c553b97 on http://speckle.xyz/streams/bf7685a6aa/objects/7ca6c05f001106fd5279b3c45991eaa8 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/Ci
  - http://qudt.org/vocab/unit/Ci expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/Ci expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/ElectricPolarizability
  - http://qudt.org/vocab/quantitykind/ElectricPolarizability expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/4e9351c3a4bf3f3fa03a9a2c57bade13
  - http://speckle.xyz/streams/bf7685a6aa/objects/22ee737a989391acee4ea60354e91210 on http://speckle.xyz/streams/bf7685a6aa/objects/4e9351c3a4bf3f3fa03a9a2c57bade13 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/22ee737a989391acee4ea60354e91210 on http://speckle.xyz/streams/bf7685a6aa/objects/4e9351c3a4bf3f3fa03a9a2c57bade13 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/constant/Value_MuonMagneticMomentToBohrMagnetonRatio
  - http://qudt.org/vocab/constant/Value_MuonMagneticMomentToBohrMagnetonRatio expected at most 1 uses of path qudt:standardUncertainty
http://speckle.xyz/streams/bf7685a6aa/objects/eb09fb2ebcbc6032d34727609fd40ba2
  - http://speckle.xyz/streams/bf7685a6aa/objects/303a333ea3391daa29509be9eb9bb187 on http://speckle.xyz/streams/bf7685a6aa/objects/eb09fb2ebcbc6032d34727609fd40ba2 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/303a333ea3391daa29509be9eb9bb187 on http://speckle.xyz/streams/bf7685a6aa/objects/eb09fb2ebcbc6032d34727609fd40ba2 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/ece081f12a687886937e4002f27a0a9f
  - http://speckle.xyz/streams/bf7685a6aa/objects/f031db8cf74c1d34f7ec9caaa44e707f on http://speckle.xyz/streams/bf7685a6aa/objects/ece081f12a687886937e4002f27a0a9f needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/f031db8cf74c1d34f7ec9caaa44e707f on http://speckle.xyz/streams/bf7685a6aa/objects/ece081f12a687886937e4002f27a0a9f needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/MilliL-PER-SEC
  - http://qudt.org/vocab/unit/MilliL-PER-SEC expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MilliL-PER-SEC expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/LuminousIntensity
  - http://qudt.org/vocab/unit/HK on http://qudt.org/vocab/quantitykind/LuminousIntensity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliCD on http://qudt.org/vocab/quantitykind/LuminousIntensity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/LuminousIntensity expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/CD_IN on http://qudt.org/vocab/quantitykind/LuminousIntensity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloCD on http://qudt.org/vocab/quantitykind/LuminousIntensity needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/72a1d8e70f2ec305a75716f388cd4f4d
  - http://speckle.xyz/streams/bf7685a6aa/objects/03183bd47ce710193f9d15449df4add8 on http://speckle.xyz/streams/bf7685a6aa/objects/72a1d8e70f2ec305a75716f388cd4f4d needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/03183bd47ce710193f9d15449df4add8 on http://speckle.xyz/streams/bf7685a6aa/objects/72a1d8e70f2ec305a75716f388cd4f4d needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/ParticleFluence
  - http://qudt.org/vocab/unit/PER-IN2 on http://qudt.org/vocab/quantitykind/ParticleFluence needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/8e8685d4cd7c60e2f58bfaefb0a8bb49
  - http://speckle.xyz/streams/bf7685a6aa/objects/d5b1769b748423fb98cace29a0366946 on http://speckle.xyz/streams/bf7685a6aa/objects/8e8685d4cd7c60e2f58bfaefb0a8bb49 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/d5b1769b748423fb98cace29a0366946 on http://speckle.xyz/streams/bf7685a6aa/objects/8e8685d4cd7c60e2f58bfaefb0a8bb49 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/PER-BAR
  - http://qudt.org/vocab/unit/PER-BAR expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/PER-BAR expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/IonizationEnergy
  - http://qudt.org/vocab/unit/THERM_US on http://qudt.org/vocab/quantitykind/IonizationEnergy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/THERM_EC on http://qudt.org/vocab/quantitykind/IonizationEnergy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PicoJ on http://qudt.org/vocab/quantitykind/IonizationEnergy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/IonizationEnergy expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/NanoJ on http://qudt.org/vocab/quantitykind/IonizationEnergy needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/Illuminance
  - http://qudt.org/vocab/quantitykind/Illuminance expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/ElectricChargeDensity
  - http://qudt.org/vocab/quantitykind/ElectricChargeDensity expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/A-HR-PER-DeciM3 on http://qudt.org/vocab/quantitykind/ElectricChargeDensity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/A-HR-PER-M3 on http://qudt.org/vocab/quantitykind/ElectricChargeDensity needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/4e5c5d98787905e7ae036102d17be2d4
  - http://speckle.xyz/streams/bf7685a6aa/objects/d10364e92e51783f043254a82d39aa37 on http://speckle.xyz/streams/bf7685a6aa/objects/4e5c5d98787905e7ae036102d17be2d4 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/d10364e92e51783f043254a82d39aa37 on http://speckle.xyz/streams/bf7685a6aa/objects/4e5c5d98787905e7ae036102d17be2d4 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/122313a5ef478c61653e36e518b54df8
  - http://speckle.xyz/streams/bf7685a6aa/objects/0d245daa39fba4d252d07553fdb4c419 on http://speckle.xyz/streams/bf7685a6aa/objects/122313a5ef478c61653e36e518b54df8 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/0d245daa39fba4d252d07553fdb4c419 on http://speckle.xyz/streams/bf7685a6aa/objects/122313a5ef478c61653e36e518b54df8 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H0T0D1
  - http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H0T0D1 expected at most 1 uses of path qudt:latexDefinition
http://qudt.org/vocab/quantitykind/FastFissionFactor
  - http://qudt.org/vocab/quantitykind/FastFissionFactor expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/RadiantIntensity
  - http://qudt.org/vocab/quantitykind/RadiantIntensity expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/8c78d9cb7ec02371107fd733f89029ea
  - http://speckle.xyz/streams/bf7685a6aa/objects/8290128282ec5e0854b6b095c1cfbe9b on http://speckle.xyz/streams/bf7685a6aa/objects/8c78d9cb7ec02371107fd733f89029ea needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/8290128282ec5e0854b6b095c1cfbe9b on http://speckle.xyz/streams/bf7685a6aa/objects/8c78d9cb7ec02371107fd733f89029ea needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/e885caa6a12a67a75c1086c6e1948d6f
  - http://speckle.xyz/streams/bf7685a6aa/objects/9235406fdde87cb2ee62f34297961438 on http://speckle.xyz/streams/bf7685a6aa/objects/e885caa6a12a67a75c1086c6e1948d6f needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/9235406fdde87cb2ee62f34297961438 on http://speckle.xyz/streams/bf7685a6aa/objects/e885caa6a12a67a75c1086c6e1948d6f needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/FT2-PER-HR
  - http://qudt.org/vocab/unit/FT2-PER-HR expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/FT2-PER-HR expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/GasLeakRate
  - http://qudt.org/vocab/quantitykind/GasLeakRate expected at most 1 uses of path qudt:plainTextDescription
http://qudt.org/vocab/quantitykind/LiftForce
  - http://qudt.org/vocab/unit/POND on http://qudt.org/vocab/quantitykind/LiftForce needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/LiftForce expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/P on http://qudt.org/vocab/quantitykind/LiftForce needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloGM-M-PER-SEC2 on http://qudt.org/vocab/quantitykind/LiftForce needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/SymbolTransmissionRate
  - http://qudt.org/vocab/quantitykind/SymbolTransmissionRate expected at most 1 uses of path qudt:plainTextDescription
http://qudt.org/vocab/unit/FARAD_Ab
  - http://qudt.org/vocab/unit/FARAD_Ab expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/FARAD_Ab expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/9b5cd7346bada42a3b27e079e0e29523
  - http://speckle.xyz/streams/bf7685a6aa/objects/8492684344e3fa16fe12d0303f24fe0d on http://speckle.xyz/streams/bf7685a6aa/objects/9b5cd7346bada42a3b27e079e0e29523 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/8492684344e3fa16fe12d0303f24fe0d on http://speckle.xyz/streams/bf7685a6aa/objects/9b5cd7346bada42a3b27e079e0e29523 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/334bbaaa1f4022e3fbf75087c668a77a
  - http://speckle.xyz/streams/bf7685a6aa/objects/c1e7bac9cc9cff56ce6fff37c81afd27 on http://speckle.xyz/streams/bf7685a6aa/objects/334bbaaa1f4022e3fbf75087c668a77a needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/c1e7bac9cc9cff56ce6fff37c81afd27 on http://speckle.xyz/streams/bf7685a6aa/objects/334bbaaa1f4022e3fbf75087c668a77a needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/Capacity
  - http://qudt.org/vocab/quantitykind/Capacity expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/unit/MicroV-PER-M
  - http://qudt.org/vocab/unit/MicroV-PER-M expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MicroV-PER-M expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/InverseEnergy
  - http://qudt.org/vocab/unit/PER-J on http://qudt.org/vocab/quantitykind/InverseEnergy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PER-V-A-SEC on http://qudt.org/vocab/quantitykind/InverseEnergy needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/unit/PPM
  - http://qudt.org/vocab/unit/PPM expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/PPM expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/InitialVelocity
  - http://qudt.org/vocab/unit/MicroM-PER-MIN on http://qudt.org/vocab/quantitykind/InitialVelocity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/IN-PER-YR on http://qudt.org/vocab/quantitykind/InitialVelocity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/YD-PER-MIN on http://qudt.org/vocab/quantitykind/InitialVelocity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/InitialVelocity expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/MicroM-PER-SEC on http://qudt.org/vocab/quantitykind/InitialVelocity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/YD-PER-HR on http://qudt.org/vocab/quantitykind/InitialVelocity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/YD-PER-SEC on http://qudt.org/vocab/quantitykind/InitialVelocity needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/MolarOpticalRotationalAbility
  - http://qudt.org/vocab/quantitykind/MolarOpticalRotationalAbility expected at most 1 uses of path qudt:plainTextDescription
http://speckle.xyz/streams/bf7685a6aa/objects/1cb56d88ab861849516a6fd803e4c41a
  - http://speckle.xyz/streams/bf7685a6aa/objects/0d8c716bf524666d44c38328fe3f5865 on http://speckle.xyz/streams/bf7685a6aa/objects/1cb56d88ab861849516a6fd803e4c41a needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/0d8c716bf524666d44c38328fe3f5865 on http://speckle.xyz/streams/bf7685a6aa/objects/1cb56d88ab861849516a6fd803e4c41a needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/fd51219dcf06e323b9abaff4af56dfd7
  - http://speckle.xyz/streams/bf7685a6aa/objects/c1f8ba2020eb6468b1d37e4445924aa6 on http://speckle.xyz/streams/bf7685a6aa/objects/fd51219dcf06e323b9abaff4af56dfd7 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/c1f8ba2020eb6468b1d37e4445924aa6 on http://speckle.xyz/streams/bf7685a6aa/objects/fd51219dcf06e323b9abaff4af56dfd7 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/90569fca335e70558b5d120c4a619b30
  - http://speckle.xyz/streams/bf7685a6aa/objects/ea809d7a6106eaba6d818bfdb3e3e5b9 on http://speckle.xyz/streams/bf7685a6aa/objects/90569fca335e70558b5d120c4a619b30 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/ea809d7a6106eaba6d818bfdb3e3e5b9 on http://speckle.xyz/streams/bf7685a6aa/objects/90569fca335e70558b5d120c4a619b30 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/OrbitalAngularMomentumPerUnitMass
  - http://qudt.org/vocab/quantitykind/OrbitalAngularMomentumPerUnitMass expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/45007364e053d6558ad28c784ca73516
  - http://speckle.xyz/streams/bf7685a6aa/objects/ea809d7a6106eaba6d818bfdb3e3e5b9 on http://speckle.xyz/streams/bf7685a6aa/objects/45007364e053d6558ad28c784ca73516 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/ea809d7a6106eaba6d818bfdb3e3e5b9 on http://speckle.xyz/streams/bf7685a6aa/objects/45007364e053d6558ad28c784ca73516 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/1740c69d1c5baac0fe7cf4b0590ddb05
  - http://speckle.xyz/streams/bf7685a6aa/objects/0e5bab348c0d7a43d3197d71b2ecdff0 on http://speckle.xyz/streams/bf7685a6aa/objects/1740c69d1c5baac0fe7cf4b0590ddb05 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/0e5bab348c0d7a43d3197d71b2ecdff0 on http://speckle.xyz/streams/bf7685a6aa/objects/1740c69d1c5baac0fe7cf4b0590ddb05 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/HeatCapacityRatio
  - http://qudt.org/vocab/unit/PPT on http://qudt.org/vocab/quantitykind/HeatCapacityRatio needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PPQ on http://qudt.org/vocab/quantitykind/HeatCapacityRatio needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/constant/Value_Pi
  - http://qudt.org/vocab/constant/Value_Pi expected at most 1 uses of path qudt:standardUncertainty
http://speckle.xyz/streams/bf7685a6aa/objects/4641ec9a3f32d4c7ed3b6460d4fd06f8
  - http://speckle.xyz/streams/bf7685a6aa/objects/18357be2061a0be61152934dd62335e9 on http://speckle.xyz/streams/bf7685a6aa/objects/4641ec9a3f32d4c7ed3b6460d4fd06f8 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/18357be2061a0be61152934dd62335e9 on http://speckle.xyz/streams/bf7685a6aa/objects/4641ec9a3f32d4c7ed3b6460d4fd06f8 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/PPTH-PER-HR
  - http://qudt.org/vocab/unit/PPTH-PER-HR expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/PPTH-PER-HR expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/NozzleWallsThrustReaction
  - http://qudt.org/vocab/unit/P on http://qudt.org/vocab/quantitykind/NozzleWallsThrustReaction needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloGM-M-PER-SEC2 on http://qudt.org/vocab/quantitykind/NozzleWallsThrustReaction needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/POND on http://qudt.org/vocab/quantitykind/NozzleWallsThrustReaction needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/ccc9f43acb1c0b88d442d1b0dd60a680
  - http://speckle.xyz/streams/bf7685a6aa/objects/f9f9f58777812d5fea59aef9b267ba4e on http://speckle.xyz/streams/bf7685a6aa/objects/ccc9f43acb1c0b88d442d1b0dd60a680 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/f9f9f58777812d5fea59aef9b267ba4e on http://speckle.xyz/streams/bf7685a6aa/objects/ccc9f43acb1c0b88d442d1b0dd60a680 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/MicroGM-PER-GM
  - http://qudt.org/vocab/unit/MicroGM-PER-GM expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MicroGM-PER-GM expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/MilliGM-PER-M3-HR
  - http://qudt.org/vocab/unit/MilliGM-PER-M3-HR expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MilliGM-PER-M3-HR expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/DRY-MASS
  - http://qudt.org/vocab/unit/PFUND on http://qudt.org/vocab/quantitykind/DRY-MASS needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MOMME_Textile on http://qudt.org/vocab/quantitykind/DRY-MASS needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MOMME_Pearl on http://qudt.org/vocab/quantitykind/DRY-MASS needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/DRY-MASS expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/TON on http://qudt.org/vocab/quantitykind/DRY-MASS needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MegaTON on http://qudt.org/vocab/quantitykind/DRY-MASS needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MegaTONNE on http://qudt.org/vocab/quantitykind/DRY-MASS needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/EnergyPerAreaElectricCharge
  - http://qudt.org/vocab/quantitykind/EnergyPerAreaElectricCharge expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/AuxillaryMagneticField
  - http://qudt.org/vocab/quantitykind/AuxillaryMagneticField expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/StoichiometricNumber
  - http://qudt.org/vocab/quantitykind/StoichiometricNumber expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/cc1b1f3280e734305827334dd0d66563
  - http://speckle.xyz/streams/bf7685a6aa/objects/9909d4e8918567000c9be885ac99b3cd on http://speckle.xyz/streams/bf7685a6aa/objects/cc1b1f3280e734305827334dd0d66563 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/9909d4e8918567000c9be885ac99b3cd on http://speckle.xyz/streams/bf7685a6aa/objects/cc1b1f3280e734305827334dd0d66563 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/ReactionEnergy
  - http://qudt.org/vocab/unit/NanoJ on http://qudt.org/vocab/quantitykind/ReactionEnergy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PicoJ on http://qudt.org/vocab/quantitykind/ReactionEnergy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/THERM_EC on http://qudt.org/vocab/quantitykind/ReactionEnergy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/THERM_US on http://qudt.org/vocab/quantitykind/ReactionEnergy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/ReactionEnergy expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/9c683eef0daeeefb2c2b953d6fb7bcb7
  - http://speckle.xyz/streams/bf7685a6aa/objects/c8d74312f7bce1c9b6478e66d4f19320 on http://speckle.xyz/streams/bf7685a6aa/objects/9c683eef0daeeefb2c2b953d6fb7bcb7 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/c8d74312f7bce1c9b6478e66d4f19320 on http://speckle.xyz/streams/bf7685a6aa/objects/9c683eef0daeeefb2c2b953d6fb7bcb7 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/PicoW
  - http://qudt.org/vocab/unit/PicoW expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/PicoW expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/Momentum
  - http://qudt.org/vocab/quantitykind/Momentum expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/75135985747c182523fd4e0fde1d1fb8
  - http://speckle.xyz/streams/bf7685a6aa/objects/03183bd47ce710193f9d15449df4add8 on http://speckle.xyz/streams/bf7685a6aa/objects/75135985747c182523fd4e0fde1d1fb8 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/03183bd47ce710193f9d15449df4add8 on http://speckle.xyz/streams/bf7685a6aa/objects/75135985747c182523fd4e0fde1d1fb8 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/constant/Value_HartreeKelvinRelationship
  - http://qudt.org/vocab/constant/Value_HartreeKelvinRelationship expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/unit/PER-WK
  - http://qudt.org/vocab/unit/PER-WK expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/PER-WK expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/AlphaDisintegrationEnergy
  - http://qudt.org/vocab/unit/THERM_EC on http://qudt.org/vocab/quantitykind/AlphaDisintegrationEnergy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/THERM_US on http://qudt.org/vocab/quantitykind/AlphaDisintegrationEnergy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PicoJ on http://qudt.org/vocab/quantitykind/AlphaDisintegrationEnergy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/NanoJ on http://qudt.org/vocab/quantitykind/AlphaDisintegrationEnergy needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/unit/E_h
  - http://qudt.org/vocab/unit/E_h expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/E_h expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/MassFraction
  - http://qudt.org/vocab/quantitykind/MassFraction expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/constant/Value_LoschmidtConstant
  - http://qudt.org/vocab/constant/Value_LoschmidtConstant expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-2D0
  - http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-2D0 expected at most 1 uses of path qudt:latexDefinition
http://qudt.org/vocab/quantitykind/RelativeMassConcentrationOfVapour
  - http://qudt.org/vocab/quantitykind/RelativeMassConcentrationOfVapour expected at most 1 uses of path qudt:plainTextDescription
  - http://qudt.org/vocab/quantitykind/RelativeMassConcentrationOfVapour expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/NeutralRatio
  - http://qudt.org/vocab/unit/PPQ on http://qudt.org/vocab/quantitykind/NeutralRatio needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/NeutralRatio expected at most 1 uses of path qudt:plainTextDescription
  - http://qudt.org/vocab/unit/PPT on http://qudt.org/vocab/quantitykind/NeutralRatio needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/PhaseSpeedOfSound
  - http://qudt.org/vocab/quantitykind/PhaseSpeedOfSound expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/constant/Value_ElectronProtonMassRatio
  - http://qudt.org/vocab/constant/Value_ElectronProtonMassRatio expected at most 1 uses of path qudt:standardUncertainty
http://speckle.xyz/streams/bf7685a6aa/objects/12f148e4a98d79a29464e46bf0402600
  - http://speckle.xyz/streams/bf7685a6aa/objects/8492684344e3fa16fe12d0303f24fe0d on http://speckle.xyz/streams/bf7685a6aa/objects/12f148e4a98d79a29464e46bf0402600 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/8492684344e3fa16fe12d0303f24fe0d on http://speckle.xyz/streams/bf7685a6aa/objects/12f148e4a98d79a29464e46bf0402600 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/2bbbe0be992cea656e82f5ab67e70b3c
  - http://speckle.xyz/streams/bf7685a6aa/objects/61392c60c3f0f6583028d86c3528cd5c on http://speckle.xyz/streams/bf7685a6aa/objects/2bbbe0be992cea656e82f5ab67e70b3c needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/61392c60c3f0f6583028d86c3528cd5c on http://speckle.xyz/streams/bf7685a6aa/objects/2bbbe0be992cea656e82f5ab67e70b3c needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/0f4831f1564441de33ead51076904195
  - http://speckle.xyz/streams/bf7685a6aa/objects/b1704240e49d5b4aa831d684c64ab3e7 on http://speckle.xyz/streams/bf7685a6aa/objects/0f4831f1564441de33ead51076904195 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/b1704240e49d5b4aa831d684c64ab3e7 on http://speckle.xyz/streams/bf7685a6aa/objects/0f4831f1564441de33ead51076904195 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/379d35952bd7288c43730cad1739e051
  - http://speckle.xyz/streams/bf7685a6aa/objects/1dc2c8fcc6faad709669a1da5c22f1fb on http://speckle.xyz/streams/bf7685a6aa/objects/379d35952bd7288c43730cad1739e051 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/1dc2c8fcc6faad709669a1da5c22f1fb on http://speckle.xyz/streams/bf7685a6aa/objects/379d35952bd7288c43730cad1739e051 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/BurnRate
  - http://qudt.org/vocab/unit/YD-PER-HR on http://qudt.org/vocab/quantitykind/BurnRate needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/YD-PER-MIN on http://qudt.org/vocab/quantitykind/BurnRate needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/YD-PER-SEC on http://qudt.org/vocab/quantitykind/BurnRate needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MicroM-PER-MIN on http://qudt.org/vocab/quantitykind/BurnRate needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MicroM-PER-SEC on http://qudt.org/vocab/quantitykind/BurnRate needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/IN-PER-YR on http://qudt.org/vocab/quantitykind/BurnRate needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/e29a6b74f8d2b263643b85b86c04bde8
  - http://speckle.xyz/streams/bf7685a6aa/objects/288eb5e729bd3a5f915b25b9695e2397 on http://speckle.xyz/streams/bf7685a6aa/objects/e29a6b74f8d2b263643b85b86c04bde8 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/288eb5e729bd3a5f915b25b9695e2397 on http://speckle.xyz/streams/bf7685a6aa/objects/e29a6b74f8d2b263643b85b86c04bde8 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/MigrationLength
  - http://qudt.org/vocab/unit/ZOLL on http://qudt.org/vocab/quantitykind/MigrationLength needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GA_Charriere on http://qudt.org/vocab/quantitykind/MigrationLength needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/MigrationLength expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/CHAIN_US on http://qudt.org/vocab/quantitykind/MigrationLength needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/e10509cf1d37a668b07ef3da59f50f74
  - http://speckle.xyz/streams/bf7685a6aa/objects/e13dd4b578872dbd32e09626f5d25240 on http://speckle.xyz/streams/bf7685a6aa/objects/e10509cf1d37a668b07ef3da59f50f74 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e13dd4b578872dbd32e09626f5d25240 on http://speckle.xyz/streams/bf7685a6aa/objects/e10509cf1d37a668b07ef3da59f50f74 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/SoilAdsorptionCoefficient
  - http://qudt.org/vocab/unit/IN3-PER-LB on http://qudt.org/vocab/quantitykind/SoilAdsorptionCoefficient needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/SoilAdsorptionCoefficient expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/FT3-PER-LB on http://qudt.org/vocab/quantitykind/SoilAdsorptionCoefficient needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CentiM3-PER-GM on http://qudt.org/vocab/quantitykind/SoilAdsorptionCoefficient needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/DeciM3-PER-KiloGM on http://qudt.org/vocab/quantitykind/SoilAdsorptionCoefficient needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/dimensionvector/A0E4L-5I0M-3H0T10D0
  - http://qudt.org/vocab/dimensionvector/A0E4L-5I0M-3H0T10D0 expected at most 1 uses of path qudt:latexDefinition
http://speckle.xyz/streams/bf7685a6aa/objects/481df56febef8cad36f25cf03d254e6d
  - http://speckle.xyz/streams/bf7685a6aa/objects/e8908b5eec592c1e9e520605ad787a0c on http://speckle.xyz/streams/bf7685a6aa/objects/481df56febef8cad36f25cf03d254e6d needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e8908b5eec592c1e9e520605ad787a0c on http://speckle.xyz/streams/bf7685a6aa/objects/481df56febef8cad36f25cf03d254e6d needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/MicroM-PER-K
  - http://qudt.org/vocab/unit/MicroM-PER-K expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MicroM-PER-K expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/4dc7159560b4346f31513d587c7388b8
  - http://speckle.xyz/streams/bf7685a6aa/objects/bd4c1bbaf855ba85dd10beedc3c5f7f4 on http://speckle.xyz/streams/bf7685a6aa/objects/4dc7159560b4346f31513d587c7388b8 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/bd4c1bbaf855ba85dd10beedc3c5f7f4 on http://speckle.xyz/streams/bf7685a6aa/objects/4dc7159560b4346f31513d587c7388b8 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/996095fe0098d41b58188106614ed8db
  - http://speckle.xyz/streams/bf7685a6aa/objects/a425da88edbb46d1210f95207abcb30a on http://speckle.xyz/streams/bf7685a6aa/objects/996095fe0098d41b58188106614ed8db needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/a425da88edbb46d1210f95207abcb30a on http://speckle.xyz/streams/bf7685a6aa/objects/996095fe0098d41b58188106614ed8db needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/045a4416c84f38699ae78d01d61f21d8
  - http://speckle.xyz/streams/bf7685a6aa/objects/f7c769a50d39f020556ab74d468269a2 on http://speckle.xyz/streams/bf7685a6aa/objects/045a4416c84f38699ae78d01d61f21d8 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/f7c769a50d39f020556ab74d468269a2 on http://speckle.xyz/streams/bf7685a6aa/objects/045a4416c84f38699ae78d01d61f21d8 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/NanoMOL-PER-L-DAY
  - http://qudt.org/vocab/unit/NanoMOL-PER-L-DAY expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/NanoMOL-PER-L-DAY expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/TebiBYTE
  - http://qudt.org/vocab/unit/TebiBYTE expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/TebiBYTE expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/d5872f6b90525d257081d88ba645cbea
  - http://speckle.xyz/streams/bf7685a6aa/objects/e9670962d6933d8e0a96caf59912d990 on http://speckle.xyz/streams/bf7685a6aa/objects/d5872f6b90525d257081d88ba645cbea needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e9670962d6933d8e0a96caf59912d990 on http://speckle.xyz/streams/bf7685a6aa/objects/d5872f6b90525d257081d88ba645cbea needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/78c53e07fa4be255cc88b2e96f15fb11
  - http://speckle.xyz/streams/bf7685a6aa/objects/2bab3a834da573d903244a9902f78aa1 on http://speckle.xyz/streams/bf7685a6aa/objects/78c53e07fa4be255cc88b2e96f15fb11 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/2bab3a834da573d903244a9902f78aa1 on http://speckle.xyz/streams/bf7685a6aa/objects/78c53e07fa4be255cc88b2e96f15fb11 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/BurstFactor
  - http://qudt.org/vocab/quantitykind/BurstFactor expected at most 1 uses of path qudt:plainTextDescription
  - http://qudt.org/vocab/unit/PA-M2-PER-KiloGM on http://qudt.org/vocab/quantitykind/BurstFactor needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/fb7dd7a11a88c8a8b9ea074920439ff3
  - http://speckle.xyz/streams/bf7685a6aa/objects/9857c2e4ec6cf0ebcb9e452e1ad1fa77 on http://speckle.xyz/streams/bf7685a6aa/objects/fb7dd7a11a88c8a8b9ea074920439ff3 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/9857c2e4ec6cf0ebcb9e452e1ad1fa77 on http://speckle.xyz/streams/bf7685a6aa/objects/fb7dd7a11a88c8a8b9ea074920439ff3 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/1a72318f73f88863b2545dcd5d5de84e
  - http://speckle.xyz/streams/bf7685a6aa/objects/28299383e0df00b91df539a74c7815c2 on http://speckle.xyz/streams/bf7685a6aa/objects/1a72318f73f88863b2545dcd5d5de84e needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/28299383e0df00b91df539a74c7815c2 on http://speckle.xyz/streams/bf7685a6aa/objects/1a72318f73f88863b2545dcd5d5de84e needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/A-PER-CentiM2
  - http://qudt.org/vocab/unit/A-PER-CentiM2 expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/A-PER-CentiM2 expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/20fcf8fcf5102055a6518e85e6d57d48
  - http://speckle.xyz/streams/bf7685a6aa/objects/3efdbbd7d157786885a7c74d641c8fae on http://speckle.xyz/streams/bf7685a6aa/objects/20fcf8fcf5102055a6518e85e6d57d48 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/3efdbbd7d157786885a7c74d641c8fae on http://speckle.xyz/streams/bf7685a6aa/objects/20fcf8fcf5102055a6518e85e6d57d48 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/e1d6bd9e5526111f286c660c73114f22
  - http://speckle.xyz/streams/bf7685a6aa/objects/f031db8cf74c1d34f7ec9caaa44e707f on http://speckle.xyz/streams/bf7685a6aa/objects/e1d6bd9e5526111f286c660c73114f22 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/f031db8cf74c1d34f7ec9caaa44e707f on http://speckle.xyz/streams/bf7685a6aa/objects/e1d6bd9e5526111f286c660c73114f22 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/e5ee831bd4aaf90a537693e8bb241fa6
  - http://speckle.xyz/streams/bf7685a6aa/objects/9afce26e156ee27c0851a8c7906ff506 on http://speckle.xyz/streams/bf7685a6aa/objects/e5ee831bd4aaf90a537693e8bb241fa6 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/9afce26e156ee27c0851a8c7906ff506 on http://speckle.xyz/streams/bf7685a6aa/objects/e5ee831bd4aaf90a537693e8bb241fa6 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H-1T0D0
  - http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H-1T0D0 expected at most 1 uses of path qudt:latexDefinition
http://qudt.org/vocab/quantitykind/PowerConstant
  - http://qudt.org/vocab/quantitykind/PowerConstant expected at most 1 uses of path qudt:plainTextDescription
http://speckle.xyz/streams/bf7685a6aa/objects/8b928616e8dbd0b819547dd3eabbed8f
  - http://speckle.xyz/streams/bf7685a6aa/objects/c1f8ba2020eb6468b1d37e4445924aa6 on http://speckle.xyz/streams/bf7685a6aa/objects/8b928616e8dbd0b819547dd3eabbed8f needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/c1f8ba2020eb6468b1d37e4445924aa6 on http://speckle.xyz/streams/bf7685a6aa/objects/8b928616e8dbd0b819547dd3eabbed8f needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T-3D0
  - http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T-3D0 expected at most 1 uses of path qudt:latexDefinition
http://speckle.xyz/streams/bf7685a6aa/objects/89c998617448b28216f79096ab6455e2
  - http://speckle.xyz/streams/bf7685a6aa/objects/f031db8cf74c1d34f7ec9caaa44e707f on http://speckle.xyz/streams/bf7685a6aa/objects/89c998617448b28216f79096ab6455e2 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/f031db8cf74c1d34f7ec9caaa44e707f on http://speckle.xyz/streams/bf7685a6aa/objects/89c998617448b28216f79096ab6455e2 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/NanoMOL-PER-L-HR
  - http://qudt.org/vocab/unit/NanoMOL-PER-L-HR expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/NanoMOL-PER-L-HR expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/EnergyDensity
  - http://qudt.org/vocab/quantitykind/EnergyDensity expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/75389bee2052fcfed31d98a0fd0817f5
  - http://speckle.xyz/streams/bf7685a6aa/objects/c8fb46fc939728e45252377481a55e6a on http://speckle.xyz/streams/bf7685a6aa/objects/75389bee2052fcfed31d98a0fd0817f5 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/c8fb46fc939728e45252377481a55e6a on http://speckle.xyz/streams/bf7685a6aa/objects/75389bee2052fcfed31d98a0fd0817f5 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/14aeb70e509deb3decef2a61bbf5d7e5
  - http://speckle.xyz/streams/bf7685a6aa/objects/c1f8ba2020eb6468b1d37e4445924aa6 on http://speckle.xyz/streams/bf7685a6aa/objects/14aeb70e509deb3decef2a61bbf5d7e5 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/c1f8ba2020eb6468b1d37e4445924aa6 on http://speckle.xyz/streams/bf7685a6aa/objects/14aeb70e509deb3decef2a61bbf5d7e5 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/dimensionvector/A0E0L3I0M-1H0T-2D0
  - http://qudt.org/vocab/dimensionvector/A0E0L3I0M-1H0T-2D0 expected at most 1 uses of path qudt:latexDefinition
http://speckle.xyz/streams/bf7685a6aa/objects/19ef96253423f64dbc64821b22058c55
  - http://speckle.xyz/streams/bf7685a6aa/objects/c8fb46fc939728e45252377481a55e6a on http://speckle.xyz/streams/bf7685a6aa/objects/19ef96253423f64dbc64821b22058c55 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/c8fb46fc939728e45252377481a55e6a on http://speckle.xyz/streams/bf7685a6aa/objects/19ef96253423f64dbc64821b22058c55 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/MeanLinearRange
  - http://qudt.org/vocab/unit/GA_Charriere on http://qudt.org/vocab/quantitykind/MeanLinearRange needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CHAIN_US on http://qudt.org/vocab/quantitykind/MeanLinearRange needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/ZOLL on http://qudt.org/vocab/quantitykind/MeanLinearRange needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/MeanLinearRange expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-3D-1
  - http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-3D-1 expected at most 1 uses of path qudt:latexDefinition
http://qudt.org/vocab/quantitykind/SoundExposure
  - http://qudt.org/vocab/quantitykind/SoundExposure expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/Turbidity
  - http://qudt.org/vocab/quantitykind/Turbidity expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/4c18f74419ef7cc074660a6f11d2866d
  - http://speckle.xyz/streams/bf7685a6aa/objects/03183bd47ce710193f9d15449df4add8 on http://speckle.xyz/streams/bf7685a6aa/objects/4c18f74419ef7cc074660a6f11d2866d needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/03183bd47ce710193f9d15449df4add8 on http://speckle.xyz/streams/bf7685a6aa/objects/4c18f74419ef7cc074660a6f11d2866d needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/c406d9e81e65d25c8ee30d385bc20c29
  - http://speckle.xyz/streams/bf7685a6aa/objects/2bab3a834da573d903244a9902f78aa1 on http://speckle.xyz/streams/bf7685a6aa/objects/c406d9e81e65d25c8ee30d385bc20c29 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/2bab3a834da573d903244a9902f78aa1 on http://speckle.xyz/streams/bf7685a6aa/objects/c406d9e81e65d25c8ee30d385bc20c29 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/MASS-PROPERTY-UNCERTAINTY
  - http://qudt.org/vocab/unit/TON on http://qudt.org/vocab/quantitykind/MASS-PROPERTY-UNCERTAINTY needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MOMME_Textile on http://qudt.org/vocab/quantitykind/MASS-PROPERTY-UNCERTAINTY needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PFUND on http://qudt.org/vocab/quantitykind/MASS-PROPERTY-UNCERTAINTY needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MOMME_Pearl on http://qudt.org/vocab/quantitykind/MASS-PROPERTY-UNCERTAINTY needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/MASS-PROPERTY-UNCERTAINTY expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/MegaTON on http://qudt.org/vocab/quantitykind/MASS-PROPERTY-UNCERTAINTY needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MegaTONNE on http://qudt.org/vocab/quantitykind/MASS-PROPERTY-UNCERTAINTY needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/3015412e1a81d3e4eb617413a5e84ed7
  - http://speckle.xyz/streams/bf7685a6aa/objects/de6a9e0a58ee766f3a43d50370ea19de on http://speckle.xyz/streams/bf7685a6aa/objects/3015412e1a81d3e4eb617413a5e84ed7 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/de6a9e0a58ee766f3a43d50370ea19de on http://speckle.xyz/streams/bf7685a6aa/objects/3015412e1a81d3e4eb617413a5e84ed7 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/c8f290af70e6f827c88d3b67ba514417
  - http://speckle.xyz/streams/bf7685a6aa/objects/e9490e3512dab7db58f40a947313427f on http://speckle.xyz/streams/bf7685a6aa/objects/c8f290af70e6f827c88d3b67ba514417 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e9490e3512dab7db58f40a947313427f on http://speckle.xyz/streams/bf7685a6aa/objects/c8f290af70e6f827c88d3b67ba514417 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/constant/Value_NeutronMass
  - http://qudt.org/vocab/constant/Value_NeutronMass expected at most 1 uses of path qudt:standardUncertainty
http://speckle.xyz/streams/bf7685a6aa/objects/6933f25c3f9821c083f20587cbde3667
  - http://speckle.xyz/streams/bf7685a6aa/objects/6e02e6432b5c2bd4b3c9f66e71ca8f1a on http://speckle.xyz/streams/bf7685a6aa/objects/6933f25c3f9821c083f20587cbde3667 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/6e02e6432b5c2bd4b3c9f66e71ca8f1a on http://speckle.xyz/streams/bf7685a6aa/objects/6933f25c3f9821c083f20587cbde3667 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/Efficiency
  - http://qudt.org/vocab/unit/PPT on http://qudt.org/vocab/quantitykind/Efficiency needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Efficiency expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/PPQ on http://qudt.org/vocab/quantitykind/Efficiency needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/unit/NUM-PER-MicroL
  - http://qudt.org/vocab/unit/NUM-PER-MicroL expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/NUM-PER-MicroL expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/MilliM-PER-DAY
  - http://qudt.org/vocab/unit/MilliM-PER-DAY expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MilliM-PER-DAY expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/dimensionvector/A0E2L0I0M0H0T1D0
  - http://qudt.org/vocab/quantitykind/VoltageLoss on http://qudt.org/vocab/dimensionvector/A0E2L0I0M0H0T1D0 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://speckle.xyz/streams/bf7685a6aa/objects/969a058f5488305f6a8a6ea55d8415ba
  - http://speckle.xyz/streams/bf7685a6aa/objects/688b34664f1f51ab620458521e56a4b6 on http://speckle.xyz/streams/bf7685a6aa/objects/969a058f5488305f6a8a6ea55d8415ba needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/688b34664f1f51ab620458521e56a4b6 on http://speckle.xyz/streams/bf7685a6aa/objects/969a058f5488305f6a8a6ea55d8415ba needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/DiastolicBloodPressure
  - http://qudt.org/vocab/quantitykind/DiastolicBloodPressure expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/IN_H2O_39dot2DEG_F on http://qudt.org/vocab/quantitykind/DiastolicBloodPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CentiM_H2O_4DEG_C on http://qudt.org/vocab/quantitykind/DiastolicBloodPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PDL-PER-IN2 on http://qudt.org/vocab/quantitykind/DiastolicBloodPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CentiM_HG_0DEG_C on http://qudt.org/vocab/quantitykind/DiastolicBloodPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloN-PER-M2 on http://qudt.org/vocab/quantitykind/DiastolicBloodPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/IN_HG_60DEG_F on http://qudt.org/vocab/quantitykind/DiastolicBloodPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/M_H2O on http://qudt.org/vocab/quantitykind/DiastolicBloodPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/FT_H2O_39dot2DEG_F on http://qudt.org/vocab/quantitykind/DiastolicBloodPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/IN_HG_32DEG_F on http://qudt.org/vocab/quantitykind/DiastolicBloodPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CentiM_H20_4DEG_C on http://qudt.org/vocab/quantitykind/DiastolicBloodPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/IN_H2O_60DEG_F on http://qudt.org/vocab/quantitykind/DiastolicBloodPressure needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/02ae2aadb667db5eb0a7864b8f41eee6
  - http://speckle.xyz/streams/bf7685a6aa/objects/fd13fab9dd5bf7fb5f34f8a47903f3c4 on http://speckle.xyz/streams/bf7685a6aa/objects/02ae2aadb667db5eb0a7864b8f41eee6 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/fd13fab9dd5bf7fb5f34f8a47903f3c4 on http://speckle.xyz/streams/bf7685a6aa/objects/02ae2aadb667db5eb0a7864b8f41eee6 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/94f4f0f2575c3b6b3afb4fa906b9e304
  - http://speckle.xyz/streams/bf7685a6aa/objects/e13dd4b578872dbd32e09626f5d25240 on http://speckle.xyz/streams/bf7685a6aa/objects/94f4f0f2575c3b6b3afb4fa906b9e304 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e13dd4b578872dbd32e09626f5d25240 on http://speckle.xyz/streams/bf7685a6aa/objects/94f4f0f2575c3b6b3afb4fa906b9e304 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/FemtoMOL-PER-L
  - http://qudt.org/vocab/unit/FemtoMOL-PER-L expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/FemtoMOL-PER-L expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/8350168682e319174c16915bf2195ad6
  - http://speckle.xyz/streams/bf7685a6aa/objects/570de36b94b8ce5c1670646dcd7526e1 on http://speckle.xyz/streams/bf7685a6aa/objects/8350168682e319174c16915bf2195ad6 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/570de36b94b8ce5c1670646dcd7526e1 on http://speckle.xyz/streams/bf7685a6aa/objects/8350168682e319174c16915bf2195ad6 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/091905d5e7d14a599f4c29acfa63a5b1
  - http://speckle.xyz/streams/bf7685a6aa/objects/e9670962d6933d8e0a96caf59912d990 on http://speckle.xyz/streams/bf7685a6aa/objects/091905d5e7d14a599f4c29acfa63a5b1 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e9670962d6933d8e0a96caf59912d990 on http://speckle.xyz/streams/bf7685a6aa/objects/091905d5e7d14a599f4c29acfa63a5b1 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/MadelungConstant
  - http://qudt.org/vocab/quantitykind/MadelungConstant expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/unit/NanoH
  - http://qudt.org/vocab/unit/NanoH expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/NanoH expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/cd3a8e38f3196bc0d16542523561b268
  - http://speckle.xyz/streams/bf7685a6aa/objects/d77f0206f793d366dcf43a6875c39716 on http://speckle.xyz/streams/bf7685a6aa/objects/cd3a8e38f3196bc0d16542523561b268 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/d77f0206f793d366dcf43a6875c39716 on http://speckle.xyz/streams/bf7685a6aa/objects/cd3a8e38f3196bc0d16542523561b268 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/ConductionSpeed
  - http://qudt.org/vocab/quantitykind/ConductionSpeed expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/unit/MegaV-A_Reactive
  - http://qudt.org/vocab/unit/MegaV-A_Reactive expected at most 1 uses of path qudt:plainTextDescription
  - http://qudt.org/vocab/unit/MegaV-A_Reactive expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MegaV-A_Reactive expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/Weight
  - http://qudt.org/vocab/unit/P on http://qudt.org/vocab/quantitykind/Weight needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloGM-M-PER-SEC2 on http://qudt.org/vocab/quantitykind/Weight needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/POND on http://qudt.org/vocab/quantitykind/Weight needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Weight expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/LineicResolution
  - http://qudt.org/vocab/quantitykind/LineicResolution expected at most 1 uses of path qudt:plainTextDescription
http://speckle.xyz/streams/bf7685a6aa/objects/8a127c93d877d217c7fa40756ddb1eb7
  - http://speckle.xyz/streams/bf7685a6aa/objects/9bbb96d450ec2617aa02cc6f1b800bba on http://speckle.xyz/streams/bf7685a6aa/objects/8a127c93d877d217c7fa40756ddb1eb7 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/9bbb96d450ec2617aa02cc6f1b800bba on http://speckle.xyz/streams/bf7685a6aa/objects/8a127c93d877d217c7fa40756ddb1eb7 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/MilliGM-PER-MilliL
  - http://qudt.org/vocab/unit/MilliGM-PER-MilliL expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MilliGM-PER-MilliL expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/constant/Value_TritonMass
  - http://qudt.org/vocab/constant/Value_TritonMass expected at most 1 uses of path qudt:standardUncertainty
http://speckle.xyz/streams/bf7685a6aa/objects/34a816c4e45c4307fc7d206f6ca555d6
  - http://speckle.xyz/streams/bf7685a6aa/objects/12a37af4b50e5c925cc2fe8c5cfd161a on http://speckle.xyz/streams/bf7685a6aa/objects/34a816c4e45c4307fc7d206f6ca555d6 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/12a37af4b50e5c925cc2fe8c5cfd161a on http://speckle.xyz/streams/bf7685a6aa/objects/34a816c4e45c4307fc7d206f6ca555d6 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/constant/Value_StefanBoltzmannConstant
  - http://qudt.org/vocab/constant/Value_StefanBoltzmannConstant expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/unit/MilliGM-PER-HA
  - http://qudt.org/vocab/unit/MilliGM-PER-HA expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MilliGM-PER-HA expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/dimensionvector/A0E0L4I0M1H0T-3D0
  - http://qudt.org/vocab/dimensionvector/A0E0L4I0M1H0T-3D0 expected at most 1 uses of path qudt:latexDefinition
http://speckle.xyz/streams/bf7685a6aa/objects/02d020c7d79205c536613a0702eda142
  - http://speckle.xyz/streams/bf7685a6aa/objects/c1f8ba2020eb6468b1d37e4445924aa6 on http://speckle.xyz/streams/bf7685a6aa/objects/02d020c7d79205c536613a0702eda142 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/c1f8ba2020eb6468b1d37e4445924aa6 on http://speckle.xyz/streams/bf7685a6aa/objects/02d020c7d79205c536613a0702eda142 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/c52d7b7587126045a2c0d2298ffec6ef
  - http://speckle.xyz/streams/bf7685a6aa/objects/0849cbae1dcd58718497524998b3bd30 on http://speckle.xyz/streams/bf7685a6aa/objects/c52d7b7587126045a2c0d2298ffec6ef needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/0849cbae1dcd58718497524998b3bd30 on http://speckle.xyz/streams/bf7685a6aa/objects/c52d7b7587126045a2c0d2298ffec6ef needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/MilliH-PER-KiloOHM
  - http://qudt.org/vocab/unit/MilliH-PER-KiloOHM expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MilliH-PER-KiloOHM expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/GAL_US-PER-DAY
  - http://qudt.org/vocab/unit/GAL_US-PER-DAY expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/GAL_US-PER-DAY expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/AreicMass
  - http://qudt.org/vocab/unit/MicroGM-PER-IN2 on http://qudt.org/vocab/quantitykind/AreicMass needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/LB-PER-YD2 on http://qudt.org/vocab/quantitykind/AreicMass needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GM-PER-MilliM2 on http://qudt.org/vocab/quantitykind/AreicMass needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/OZ-PER-IN2 on http://qudt.org/vocab/quantitykind/AreicMass needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/NanoGM-PER-CentiM2 on http://qudt.org/vocab/quantitykind/AreicMass needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MicroGM-PER-CentiM2 on http://qudt.org/vocab/quantitykind/AreicMass needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/AreicMass expected at most 1 uses of path qudt:plainTextDescription
http://qudt.org/vocab/quantitykind/EquivalentAbsorptionArea
  - http://qudt.org/vocab/unit/MI_US2 on http://qudt.org/vocab/quantitykind/EquivalentAbsorptionArea needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/EquivalentAbsorptionArea expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/KiloM2 on http://qudt.org/vocab/quantitykind/EquivalentAbsorptionArea needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloMIL_Circ on http://qudt.org/vocab/quantitykind/EquivalentAbsorptionArea needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/c66ec5715dfe692843112280c7ee2848
  - http://speckle.xyz/streams/bf7685a6aa/objects/ea809d7a6106eaba6d818bfdb3e3e5b9 on http://speckle.xyz/streams/bf7685a6aa/objects/c66ec5715dfe692843112280c7ee2848 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/ea809d7a6106eaba6d818bfdb3e3e5b9 on http://speckle.xyz/streams/bf7685a6aa/objects/c66ec5715dfe692843112280c7ee2848 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/5fb3dabd0a0d85dbb25ef61751d48be9
  - http://speckle.xyz/streams/bf7685a6aa/objects/489334ec2ac2a1a03ce346106f6040dd on http://speckle.xyz/streams/bf7685a6aa/objects/5fb3dabd0a0d85dbb25ef61751d48be9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/489334ec2ac2a1a03ce346106f6040dd on http://speckle.xyz/streams/bf7685a6aa/objects/5fb3dabd0a0d85dbb25ef61751d48be9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/constant/Value_ElectronMassEnergyEquivalent
  - http://qudt.org/vocab/constant/Value_ElectronMassEnergyEquivalent expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/unit/MegaTOE
  - http://qudt.org/vocab/unit/MegaTOE expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MegaTOE expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/MegaTOE expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/dimensionvector/A0E0L1I0M1H0T-1D0
  - http://qudt.org/vocab/dimensionvector/A0E0L1I0M1H0T-1D0 expected at most 1 uses of path qudt:latexDefinition
http://qudt.org/vocab/unit/AttoFARAD
  - http://qudt.org/vocab/unit/AttoFARAD expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/AttoFARAD expected at most 1 uses of path qudt:plainTextDescription
  - http://qudt.org/vocab/unit/AttoFARAD expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/RocketAtmosphericTransverseForce
  - http://qudt.org/vocab/unit/P on http://qudt.org/vocab/quantitykind/RocketAtmosphericTransverseForce needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/RocketAtmosphericTransverseForce expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/POND on http://qudt.org/vocab/quantitykind/RocketAtmosphericTransverseForce needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloGM-M-PER-SEC2 on http://qudt.org/vocab/quantitykind/RocketAtmosphericTransverseForce needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/ee46aea5c28d96a0071ee860d706f984
  - http://speckle.xyz/streams/bf7685a6aa/objects/442b75f265dad85708d17330be21561c on http://speckle.xyz/streams/bf7685a6aa/objects/ee46aea5c28d96a0071ee860d706f984 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/442b75f265dad85708d17330be21561c on http://speckle.xyz/streams/bf7685a6aa/objects/ee46aea5c28d96a0071ee860d706f984 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/PER-MO
  - http://qudt.org/vocab/unit/PER-MO expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/PER-MO expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/eac7a71245c934f49162490e378e3168
  - http://speckle.xyz/streams/bf7685a6aa/objects/8290128282ec5e0854b6b095c1cfbe9b on http://speckle.xyz/streams/bf7685a6aa/objects/eac7a71245c934f49162490e378e3168 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/8290128282ec5e0854b6b095c1cfbe9b on http://speckle.xyz/streams/bf7685a6aa/objects/eac7a71245c934f49162490e378e3168 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/c5277a69820dc632286474b9b1cc7f52
  - http://speckle.xyz/streams/bf7685a6aa/objects/8e77b914648ba752ac9b7c04c1ab161e on http://speckle.xyz/streams/bf7685a6aa/objects/c5277a69820dc632286474b9b1cc7f52 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/8e77b914648ba752ac9b7c04c1ab161e on http://speckle.xyz/streams/bf7685a6aa/objects/c5277a69820dc632286474b9b1cc7f52 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/GibiBYTE
  - http://qudt.org/vocab/unit/GibiBYTE expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/GibiBYTE expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/constant/Value_HertzHartreeRelationship
  - http://qudt.org/vocab/constant/Value_HertzHartreeRelationship expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/quantitykind/IsothermalMoistureCapacity
  - http://qudt.org/vocab/unit/DeciM3-PER-KiloGM on http://qudt.org/vocab/quantitykind/IsothermalMoistureCapacity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CentiM3-PER-GM on http://qudt.org/vocab/quantitykind/IsothermalMoistureCapacity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/FT3-PER-LB on http://qudt.org/vocab/quantitykind/IsothermalMoistureCapacity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/IN3-PER-LB on http://qudt.org/vocab/quantitykind/IsothermalMoistureCapacity needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/52842700ce1ff80f1f7b2ba6de781c07
  - http://speckle.xyz/streams/bf7685a6aa/objects/c1f8ba2020eb6468b1d37e4445924aa6 on http://speckle.xyz/streams/bf7685a6aa/objects/52842700ce1ff80f1f7b2ba6de781c07 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/c1f8ba2020eb6468b1d37e4445924aa6 on http://speckle.xyz/streams/bf7685a6aa/objects/52842700ce1ff80f1f7b2ba6de781c07 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/cc3412d382897645c3329c2730b7ddce
  - http://speckle.xyz/streams/bf7685a6aa/objects/c1f8ba2020eb6468b1d37e4445924aa6 on http://speckle.xyz/streams/bf7685a6aa/objects/cc3412d382897645c3329c2730b7ddce needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/c1f8ba2020eb6468b1d37e4445924aa6 on http://speckle.xyz/streams/bf7685a6aa/objects/cc3412d382897645c3329c2730b7ddce needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/a8892b911a495d2e9ad6da18afc9c072
  - http://speckle.xyz/streams/bf7685a6aa/objects/e8908b5eec592c1e9e520605ad787a0c on http://speckle.xyz/streams/bf7685a6aa/objects/a8892b911a495d2e9ad6da18afc9c072 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e8908b5eec592c1e9e520605ad787a0c on http://speckle.xyz/streams/bf7685a6aa/objects/a8892b911a495d2e9ad6da18afc9c072 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/ResidualResistivity
  - http://qudt.org/vocab/unit/MegaOHM-KiloM on http://qudt.org/vocab/quantitykind/ResidualResistivity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/OHM-KiloM on http://qudt.org/vocab/quantitykind/ResidualResistivity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/ResidualResistivity expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/8b9ac2f7e37d8c7ee632b7cb3d782b0b
  - http://speckle.xyz/streams/bf7685a6aa/objects/1dc2c8fcc6faad709669a1da5c22f1fb on http://speckle.xyz/streams/bf7685a6aa/objects/8b9ac2f7e37d8c7ee632b7cb3d782b0b needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/1dc2c8fcc6faad709669a1da5c22f1fb on http://speckle.xyz/streams/bf7685a6aa/objects/8b9ac2f7e37d8c7ee632b7cb3d782b0b needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/Energy
  - http://qudt.org/vocab/unit/THERM_US on http://qudt.org/vocab/quantitykind/Energy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/THERM_EC on http://qudt.org/vocab/quantitykind/Energy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/NanoJ on http://qudt.org/vocab/quantitykind/Energy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Energy expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/PicoJ on http://qudt.org/vocab/quantitykind/Energy needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/constant/Value_DeuteronMolarMass
  - http://qudt.org/vocab/constant/Value_DeuteronMolarMass expected at most 1 uses of path qudt:standardUncertainty
http://speckle.xyz/streams/bf7685a6aa/objects/dfb7d6a648cc1aa1ddd125455c3e0d9c
  - http://speckle.xyz/streams/bf7685a6aa/objects/768970d137816ceece03741af232ae99 on http://speckle.xyz/streams/bf7685a6aa/objects/dfb7d6a648cc1aa1ddd125455c3e0d9c needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/768970d137816ceece03741af232ae99 on http://speckle.xyz/streams/bf7685a6aa/objects/dfb7d6a648cc1aa1ddd125455c3e0d9c needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/95a15140c4d840c8732d9310d230534a
  - http://speckle.xyz/streams/bf7685a6aa/objects/bd4c1bbaf855ba85dd10beedc3c5f7f4 on http://speckle.xyz/streams/bf7685a6aa/objects/95a15140c4d840c8732d9310d230534a needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/bd4c1bbaf855ba85dd10beedc3c5f7f4 on http://speckle.xyz/streams/bf7685a6aa/objects/95a15140c4d840c8732d9310d230534a needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/f0686ea0cebb2549ab1b8ddd0698b35e
  - http://speckle.xyz/streams/bf7685a6aa/objects/475d9640e0e1761de64f8d863e5d5a79 on http://speckle.xyz/streams/bf7685a6aa/objects/f0686ea0cebb2549ab1b8ddd0698b35e needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/475d9640e0e1761de64f8d863e5d5a79 on http://speckle.xyz/streams/bf7685a6aa/objects/f0686ea0cebb2549ab1b8ddd0698b35e needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/3fd54839e6e80b4c0f5ed93494746f2d
  - http://speckle.xyz/streams/bf7685a6aa/objects/5aa8dbce5ed730aeaaab18a2c23b2dae on http://speckle.xyz/streams/bf7685a6aa/objects/3fd54839e6e80b4c0f5ed93494746f2d needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/5aa8dbce5ed730aeaaab18a2c23b2dae on http://speckle.xyz/streams/bf7685a6aa/objects/3fd54839e6e80b4c0f5ed93494746f2d needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/22b635daa2f08a71cce35f8d75cf5778
  - http://speckle.xyz/streams/bf7685a6aa/objects/489334ec2ac2a1a03ce346106f6040dd on http://speckle.xyz/streams/bf7685a6aa/objects/22b635daa2f08a71cce35f8d75cf5778 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/489334ec2ac2a1a03ce346106f6040dd on http://speckle.xyz/streams/bf7685a6aa/objects/22b635daa2f08a71cce35f8d75cf5778 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/8f14d16df3b19d948cdfcbe434f5528a
  - http://speckle.xyz/streams/bf7685a6aa/objects/38fc1c83ce7cd22674c69fd719e87f00 on http://speckle.xyz/streams/bf7685a6aa/objects/8f14d16df3b19d948cdfcbe434f5528a needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/38fc1c83ce7cd22674c69fd719e87f00 on http://speckle.xyz/streams/bf7685a6aa/objects/8f14d16df3b19d948cdfcbe434f5528a needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/a98699ad922e9d134aa2d63660bc4731
  - http://speckle.xyz/streams/bf7685a6aa/objects/c1f8ba2020eb6468b1d37e4445924aa6 on http://speckle.xyz/streams/bf7685a6aa/objects/a98699ad922e9d134aa2d63660bc4731 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/c1f8ba2020eb6468b1d37e4445924aa6 on http://speckle.xyz/streams/bf7685a6aa/objects/a98699ad922e9d134aa2d63660bc4731 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/InformationContentExpressedAsALogarithmToBase2
  - http://qudt.org/vocab/quantitykind/InformationContentExpressedAsALogarithmToBase2 expected at most 1 uses of path qudt:plainTextDescription
http://speckle.xyz/streams/bf7685a6aa/objects/9223b38cfd5adc60a346b479cdb52389
  - http://speckle.xyz/streams/bf7685a6aa/objects/e5eb69c71be84f5da9e07df2de08c8eb on http://speckle.xyz/streams/bf7685a6aa/objects/9223b38cfd5adc60a346b479cdb52389 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e5eb69c71be84f5da9e07df2de08c8eb on http://speckle.xyz/streams/bf7685a6aa/objects/9223b38cfd5adc60a346b479cdb52389 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H0T-2D0
  - http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H0T-2D0 expected at most 1 uses of path qudt:latexDefinition
http://speckle.xyz/streams/bf7685a6aa/objects/cecc6668f11e9f63a2ad6e696821565e
  - http://speckle.xyz/streams/bf7685a6aa/objects/9146000a517bc8f7060b1fe8d939338d on http://speckle.xyz/streams/bf7685a6aa/objects/cecc6668f11e9f63a2ad6e696821565e needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/9146000a517bc8f7060b1fe8d939338d on http://speckle.xyz/streams/bf7685a6aa/objects/cecc6668f11e9f63a2ad6e696821565e needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/TotalCurrent
  - http://qudt.org/vocab/unit/PetaA on http://qudt.org/vocab/quantitykind/TotalCurrent needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/AttoA on http://qudt.org/vocab/quantitykind/TotalCurrent needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/FemtoA on http://qudt.org/vocab/quantitykind/TotalCurrent needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/TeraA on http://qudt.org/vocab/quantitykind/TotalCurrent needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/TotalCurrent expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/GigaA on http://qudt.org/vocab/quantitykind/TotalCurrent needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/constant/Value_SackurTetrodeConstant1K101dot325KPa
  - http://qudt.org/vocab/constant/Value_SackurTetrodeConstant1K101dot325KPa expected at most 1 uses of path qudt:standardUncertainty
http://speckle.xyz/streams/bf7685a6aa/objects/34a5d4f046e30f74dd12ad85b3e84116
  - http://speckle.xyz/streams/bf7685a6aa/objects/c8fb46fc939728e45252377481a55e6a on http://speckle.xyz/streams/bf7685a6aa/objects/34a5d4f046e30f74dd12ad85b3e84116 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/c8fb46fc939728e45252377481a55e6a on http://speckle.xyz/streams/bf7685a6aa/objects/34a5d4f046e30f74dd12ad85b3e84116 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/constant/Value_ElectronMagneticMomentAnomaly
  - http://qudt.org/vocab/constant/Value_ElectronMagneticMomentAnomaly expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/unit/NanoMOL-PER-KiloGM
  - http://qudt.org/vocab/unit/NanoMOL-PER-KiloGM expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/NanoMOL-PER-KiloGM expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/276d374d3167e51aba979bb92e6345d9
  - http://speckle.xyz/streams/bf7685a6aa/objects/17592c23e3930128143ddd679cd6a0d0 on http://speckle.xyz/streams/bf7685a6aa/objects/276d374d3167e51aba979bb92e6345d9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/17592c23e3930128143ddd679cd6a0d0 on http://speckle.xyz/streams/bf7685a6aa/objects/276d374d3167e51aba979bb92e6345d9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/BBL_US-PER-DAY
  - http://qudt.org/vocab/unit/BBL_US-PER-DAY expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/BBL_US-PER-DAY expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/MilliARCSEC
  - http://qudt.org/vocab/unit/MilliARCSEC expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MilliARCSEC expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/PositiveLength
  - http://qudt.org/vocab/unit/ZOLL on http://qudt.org/vocab/quantitykind/PositiveLength needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/PositiveLength expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/GA_Charriere on http://qudt.org/vocab/quantitykind/PositiveLength needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CHAIN_US on http://qudt.org/vocab/quantitykind/PositiveLength needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/unit/PINT_US-PER-MIN
  - http://qudt.org/vocab/unit/PINT_US-PER-MIN expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/PINT_US-PER-MIN expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/GigaJ
  - http://qudt.org/vocab/unit/GigaJ expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/GigaJ expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/d37d74216afb5b42729b37632f70652f
  - http://speckle.xyz/streams/bf7685a6aa/objects/b12ac1bee6f170f908d300fa71c95111 on http://speckle.xyz/streams/bf7685a6aa/objects/d37d74216afb5b42729b37632f70652f needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/b12ac1bee6f170f908d300fa71c95111 on http://speckle.xyz/streams/bf7685a6aa/objects/d37d74216afb5b42729b37632f70652f needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/NanoGM-PER-M2-PA-SEC
  - http://qudt.org/vocab/unit/NanoGM-PER-M2-PA-SEC expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/NanoGM-PER-M2-PA-SEC expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/ffae8f23668c9dea3e39fdbc4f98adee
  - http://speckle.xyz/streams/bf7685a6aa/objects/a2275be1b771646099111ea05863ea68 on http://speckle.xyz/streams/bf7685a6aa/objects/ffae8f23668c9dea3e39fdbc4f98adee needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/a2275be1b771646099111ea05863ea68 on http://speckle.xyz/streams/bf7685a6aa/objects/ffae8f23668c9dea3e39fdbc4f98adee needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/constant/Value_PlanckConstantOver2Pi
  - http://qudt.org/vocab/constant/Value_PlanckConstantOver2Pi expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/unit/PicoMOL-PER-KiloGM
  - http://qudt.org/vocab/unit/PicoMOL-PER-KiloGM expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/PicoMOL-PER-KiloGM expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/Repetency
  - http://qudt.org/vocab/unit/PERCENT-PER-IN on http://qudt.org/vocab/quantitykind/Repetency needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Repetency expected at most 1 uses of path qudt:plainTextDescription
  - http://qudt.org/vocab/unit/PER-IN on http://qudt.org/vocab/quantitykind/Repetency needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PERCENT-PER-MilliM on http://qudt.org/vocab/quantitykind/Repetency needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/unit/A_Stat
  - http://qudt.org/vocab/unit/A_Stat expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/A_Stat expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/MegaEV-PER-CentiM
  - http://qudt.org/vocab/unit/MegaEV-PER-CentiM expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MegaEV-PER-CentiM expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/MegaBAR
  - http://qudt.org/vocab/unit/MegaBAR expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MegaBAR expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/2af1c30b7fbccac763bef67cd14eed96
  - http://speckle.xyz/streams/bf7685a6aa/objects/61392c60c3f0f6583028d86c3528cd5c on http://speckle.xyz/streams/bf7685a6aa/objects/2af1c30b7fbccac763bef67cd14eed96 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/61392c60c3f0f6583028d86c3528cd5c on http://speckle.xyz/streams/bf7685a6aa/objects/2af1c30b7fbccac763bef67cd14eed96 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/82d32978a2223c4b4f6408577ce44132
  - http://speckle.xyz/streams/bf7685a6aa/objects/17592c23e3930128143ddd679cd6a0d0 on http://speckle.xyz/streams/bf7685a6aa/objects/82d32978a2223c4b4f6408577ce44132 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/17592c23e3930128143ddd679cd6a0d0 on http://speckle.xyz/streams/bf7685a6aa/objects/82d32978a2223c4b4f6408577ce44132 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/f2f50664012037d4d194dd67dd5df396
  - http://speckle.xyz/streams/bf7685a6aa/objects/61392c60c3f0f6583028d86c3528cd5c on http://speckle.xyz/streams/bf7685a6aa/objects/f2f50664012037d4d194dd67dd5df396 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/61392c60c3f0f6583028d86c3528cd5c on http://speckle.xyz/streams/bf7685a6aa/objects/f2f50664012037d4d194dd67dd5df396 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/POISE-PER-BAR
  - http://qudt.org/vocab/unit/POISE-PER-BAR expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/POISE-PER-BAR expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/d8f16bc3f0075c1109a0ced6f6d1d313
  - http://speckle.xyz/streams/bf7685a6aa/objects/aa3aa38ee5b10e40c9ede870225fd503 on http://speckle.xyz/streams/bf7685a6aa/objects/d8f16bc3f0075c1109a0ced6f6d1d313 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/aa3aa38ee5b10e40c9ede870225fd503 on http://speckle.xyz/streams/bf7685a6aa/objects/d8f16bc3f0075c1109a0ced6f6d1d313 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/42c7782211f4f03e7953a3b93b78fe38
  - http://speckle.xyz/streams/bf7685a6aa/objects/b1704240e49d5b4aa831d684c64ab3e7 on http://speckle.xyz/streams/bf7685a6aa/objects/42c7782211f4f03e7953a3b93b78fe38 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/b1704240e49d5b4aa831d684c64ab3e7 on http://speckle.xyz/streams/bf7685a6aa/objects/42c7782211f4f03e7953a3b93b78fe38 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/9a72c82a88d341216f45d2143a125344
  - http://speckle.xyz/streams/bf7685a6aa/objects/2e7fcf08c8c16097c4fb8b7074f6b8a3 on http://speckle.xyz/streams/bf7685a6aa/objects/9a72c82a88d341216f45d2143a125344 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/2e7fcf08c8c16097c4fb8b7074f6b8a3 on http://speckle.xyz/streams/bf7685a6aa/objects/9a72c82a88d341216f45d2143a125344 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/A_Ab-PER-CentiM2
  - http://qudt.org/vocab/unit/A_Ab-PER-CentiM2 expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/A_Ab-PER-CentiM2 expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/FRACTION
  - http://qudt.org/vocab/unit/FRACTION expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/FRACTION expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/FRACTION expected at most 1 uses of path qudt:conversionOffset
  - http://qudt.org/vocab/unit/FRACTION expected at most 1 uses of path qudt:conversionOffset
http://qudt.org/vocab/unit/NUM-PER-CentiM-KiloYR
  - http://qudt.org/vocab/unit/NUM-PER-CentiM-KiloYR expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/NUM-PER-CentiM-KiloYR expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/23f63e4651445a1713b2f0eeb9de598f
  - http://speckle.xyz/streams/bf7685a6aa/objects/f9f9f58777812d5fea59aef9b267ba4e on http://speckle.xyz/streams/bf7685a6aa/objects/23f63e4651445a1713b2f0eeb9de598f needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/f9f9f58777812d5fea59aef9b267ba4e on http://speckle.xyz/streams/bf7685a6aa/objects/23f63e4651445a1713b2f0eeb9de598f needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/MotorConstant
  - http://qudt.org/vocab/quantitykind/MotorConstant expected at most 1 uses of path qudt:plainTextDescription
http://qudt.org/vocab/quantitykind/Impedance
  - http://qudt.org/vocab/quantitykind/Impedance expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/WarpingConstant
  - http://qudt.org/vocab/quantitykind/WarpingConstant expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/CentiM6 on http://qudt.org/vocab/quantitykind/WarpingConstant needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/Radius
  - http://qudt.org/vocab/unit/CHAIN_US on http://qudt.org/vocab/quantitykind/Radius needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/ZOLL on http://qudt.org/vocab/quantitykind/Radius needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GA_Charriere on http://qudt.org/vocab/quantitykind/Radius needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Radius expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/28c3daeb00bdfa550aeba02195065f30
  - http://speckle.xyz/streams/bf7685a6aa/objects/03183bd47ce710193f9d15449df4add8 on http://speckle.xyz/streams/bf7685a6aa/objects/28c3daeb00bdfa550aeba02195065f30 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/03183bd47ce710193f9d15449df4add8 on http://speckle.xyz/streams/bf7685a6aa/objects/28c3daeb00bdfa550aeba02195065f30 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/ExitPlaneCrossSectionalArea
  - http://qudt.org/vocab/unit/KiloMIL_Circ on http://qudt.org/vocab/quantitykind/ExitPlaneCrossSectionalArea needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloM2 on http://qudt.org/vocab/quantitykind/ExitPlaneCrossSectionalArea needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MI_US2 on http://qudt.org/vocab/quantitykind/ExitPlaneCrossSectionalArea needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/ExitPlaneCrossSectionalArea expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/MagneticQuantumNumber
  - http://qudt.org/vocab/quantitykind/MagneticQuantumNumber expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/fcc3ca985afcfca71af0ce9b6b1fcf10
  - http://speckle.xyz/streams/bf7685a6aa/objects/1aa18520ad959a6b477ce9a6cd61c432 on http://speckle.xyz/streams/bf7685a6aa/objects/fcc3ca985afcfca71af0ce9b6b1fcf10 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/1aa18520ad959a6b477ce9a6cd61c432 on http://speckle.xyz/streams/bf7685a6aa/objects/fcc3ca985afcfca71af0ce9b6b1fcf10 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/332b3a6d43d5f661a83f06e462bc72bf
  - http://speckle.xyz/streams/bf7685a6aa/objects/288eb5e729bd3a5f915b25b9695e2397 on http://speckle.xyz/streams/bf7685a6aa/objects/332b3a6d43d5f661a83f06e462bc72bf needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/288eb5e729bd3a5f915b25b9695e2397 on http://speckle.xyz/streams/bf7685a6aa/objects/332b3a6d43d5f661a83f06e462bc72bf needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/PER-GigaEV2
  - http://qudt.org/vocab/unit/PER-GigaEV2 expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/PER-GigaEV2 expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/constant/Value_MuonElectronMassRatio
  - http://qudt.org/vocab/constant/Value_MuonElectronMassRatio expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/quantitykind/RadiantFlux
  - http://qudt.org/vocab/unit/J-PER-DAY on http://qudt.org/vocab/quantitykind/RadiantFlux needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloJ-PER-MIN on http://qudt.org/vocab/quantitykind/RadiantFlux needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MicroJ-PER-SEC on http://qudt.org/vocab/quantitykind/RadiantFlux needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/RadiantFlux expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/PetaJ-PER-SEC on http://qudt.org/vocab/quantitykind/RadiantFlux needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/J-PER-MIN on http://qudt.org/vocab/quantitykind/RadiantFlux needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/TeraW-HR-PER-YR on http://qudt.org/vocab/quantitykind/RadiantFlux needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloJ-PER-HR on http://qudt.org/vocab/quantitykind/RadiantFlux needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/ExaW on http://qudt.org/vocab/quantitykind/RadiantFlux needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/NanoJ-PER-SEC on http://qudt.org/vocab/quantitykind/RadiantFlux needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PetaW on http://qudt.org/vocab/quantitykind/RadiantFlux needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GigaJ-PER-SEC on http://qudt.org/vocab/quantitykind/RadiantFlux needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloJ-PER-SEC on http://qudt.org/vocab/quantitykind/RadiantFlux needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloJ-PER-DAY on http://qudt.org/vocab/quantitykind/RadiantFlux needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PicoJ-PER-SEC on http://qudt.org/vocab/quantitykind/RadiantFlux needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/ExaJ-PER-SEC on http://qudt.org/vocab/quantitykind/RadiantFlux needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliJ-PER-SEC on http://qudt.org/vocab/quantitykind/RadiantFlux needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PFERDESTAERKE on http://qudt.org/vocab/quantitykind/RadiantFlux needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/TeraJ-PER-SEC on http://qudt.org/vocab/quantitykind/RadiantFlux needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/523a9e6e3218cd34dceb5939c9e90202
  - http://speckle.xyz/streams/bf7685a6aa/objects/4e0cc1fec29ebf21cd3b0b42531f704e on http://speckle.xyz/streams/bf7685a6aa/objects/523a9e6e3218cd34dceb5939c9e90202 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/4e0cc1fec29ebf21cd3b0b42531f704e on http://speckle.xyz/streams/bf7685a6aa/objects/523a9e6e3218cd34dceb5939c9e90202 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/PoyntingVector
  - http://qudt.org/vocab/quantitykind/PoyntingVector expected at most 1 uses of path qudt:plainTextDescription
  - http://qudt.org/vocab/unit/NanoW-PER-M2 on http://qudt.org/vocab/quantitykind/PoyntingVector needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T0D0
  - http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T0D0 expected at most 1 uses of path qudt:latexDefinition
http://speckle.xyz/streams/bf7685a6aa/objects/d3e3171363a390fc4266015f7fbe153e
  - http://speckle.xyz/streams/bf7685a6aa/objects/66a3014cb513eb02828ffb12c7f7ef5b on http://speckle.xyz/streams/bf7685a6aa/objects/d3e3171363a390fc4266015f7fbe153e needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/66a3014cb513eb02828ffb12c7f7ef5b on http://speckle.xyz/streams/bf7685a6aa/objects/d3e3171363a390fc4266015f7fbe153e needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/d061345a463a57fc415e8aca1d542973
  - http://speckle.xyz/streams/bf7685a6aa/objects/0d245daa39fba4d252d07553fdb4c419 on http://speckle.xyz/streams/bf7685a6aa/objects/d061345a463a57fc415e8aca1d542973 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/0d245daa39fba4d252d07553fdb4c419 on http://speckle.xyz/streams/bf7685a6aa/objects/d061345a463a57fc415e8aca1d542973 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/ca2fe2d6c051423723fd88edd74b4c76
  - http://speckle.xyz/streams/bf7685a6aa/objects/11e2de971443671ebd78fe480e1cd147 on http://speckle.xyz/streams/bf7685a6aa/objects/ca2fe2d6c051423723fd88edd74b4c76 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/11e2de971443671ebd78fe480e1cd147 on http://speckle.xyz/streams/bf7685a6aa/objects/ca2fe2d6c051423723fd88edd74b4c76 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/ElectromagneticEnergyDensity
  - http://qudt.org/vocab/quantitykind/ElectromagneticEnergyDensity expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/LineicMass
  - http://qudt.org/vocab/quantitykind/LineicMass expected at most 1 uses of path qudt:plainTextDescription
http://qudt.org/vocab/unit/MicroGM-PER-M3-HR
  - http://qudt.org/vocab/unit/MicroGM-PER-M3-HR expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MicroGM-PER-M3-HR expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/constant/Value_ProtonMagneticMomentToBohrMagnetonRatio
  - http://qudt.org/vocab/constant/Value_ProtonMagneticMomentToBohrMagnetonRatio expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/quantitykind/ThrustToWeightRatio
  - http://qudt.org/vocab/unit/PPQ on http://qudt.org/vocab/quantitykind/ThrustToWeightRatio needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PPT on http://qudt.org/vocab/quantitykind/ThrustToWeightRatio needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/ThrustToWeightRatio expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/LinearElectricCurrent
  - http://qudt.org/vocab/quantitykind/LinearElectricCurrent expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/unit/W-PER-M2-NanoM
  - http://qudt.org/vocab/unit/W-PER-M2-NanoM expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/W-PER-M2-NanoM expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/29a500966e7313261ee4e0aa3ec4ee0b
  - http://speckle.xyz/streams/bf7685a6aa/objects/61392c60c3f0f6583028d86c3528cd5c on http://speckle.xyz/streams/bf7685a6aa/objects/29a500966e7313261ee4e0aa3ec4ee0b needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/61392c60c3f0f6583028d86c3528cd5c on http://speckle.xyz/streams/bf7685a6aa/objects/29a500966e7313261ee4e0aa3ec4ee0b needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/ChemicalAffinity
  - http://qudt.org/vocab/quantitykind/ChemicalAffinity expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/c6fb0086830b493b4a2451bb4073415b
  - http://speckle.xyz/streams/bf7685a6aa/objects/f7c769a50d39f020556ab74d468269a2 on http://speckle.xyz/streams/bf7685a6aa/objects/c6fb0086830b493b4a2451bb4073415b needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/f7c769a50d39f020556ab74d468269a2 on http://speckle.xyz/streams/bf7685a6aa/objects/c6fb0086830b493b4a2451bb4073415b needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/constant/Value_MuonMassEnergyEquivalentInMeV
  - http://qudt.org/vocab/constant/Value_MuonMassEnergyEquivalentInMeV expected at most 1 uses of path qudt:standardUncertainty
http://speckle.xyz/streams/bf7685a6aa/objects/495cc40dc97864091bcf05139c7dcc12
  - http://speckle.xyz/streams/bf7685a6aa/objects/8d3ab9635d58bfdfc81c3f647c553b97 on http://speckle.xyz/streams/bf7685a6aa/objects/495cc40dc97864091bcf05139c7dcc12 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/8d3ab9635d58bfdfc81c3f647c553b97 on http://speckle.xyz/streams/bf7685a6aa/objects/495cc40dc97864091bcf05139c7dcc12 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/OrbitalRadialDistance
  - http://qudt.org/vocab/unit/CHAIN_US on http://qudt.org/vocab/quantitykind/OrbitalRadialDistance needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/ZOLL on http://qudt.org/vocab/quantitykind/OrbitalRadialDistance needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GA_Charriere on http://qudt.org/vocab/quantitykind/OrbitalRadialDistance needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/PressureBasedElectricCurrent
  - http://qudt.org/vocab/quantitykind/PressureBasedElectricCurrent expected at most 1 uses of path qudt:plainTextDescription
http://qudt.org/vocab/unit/MicroBQ
  - http://qudt.org/vocab/unit/MicroBQ expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MicroBQ expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/9032d1aa0147a356956eb033f1dab4c2
  - http://speckle.xyz/streams/bf7685a6aa/objects/2bab3a834da573d903244a9902f78aa1 on http://speckle.xyz/streams/bf7685a6aa/objects/9032d1aa0147a356956eb033f1dab4c2 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/2bab3a834da573d903244a9902f78aa1 on http://speckle.xyz/streams/bf7685a6aa/objects/9032d1aa0147a356956eb033f1dab4c2 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/PressureBasedAmountOfSubstanceConcentration
  - http://qudt.org/vocab/quantitykind/PressureBasedAmountOfSubstanceConcentration expected at most 1 uses of path qudt:plainTextDescription
http://qudt.org/vocab/unit/MicroGAL-PER-M
  - http://qudt.org/vocab/unit/MicroGAL-PER-M expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MicroGAL-PER-M expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/FARAD_Ab-PER-CentiM
  - http://qudt.org/vocab/unit/FARAD_Ab-PER-CentiM expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/FARAD_Ab-PER-CentiM expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/dimensionvector/A0E0L-3I0M0H0T0D0
  - http://qudt.org/vocab/dimensionvector/A0E0L-3I0M0H0T0D0 expected at most 1 uses of path qudt:latexDefinition
http://qudt.org/vocab/unit/AMU
  - http://qudt.org/vocab/unit/AMU expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/AMU expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/CombinedNonEvaporativeHeatTransferCoefficient
  - http://qudt.org/vocab/unit/KiloW-PER-M2-K on http://qudt.org/vocab/quantitykind/CombinedNonEvaporativeHeatTransferCoefficient needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/CombinedNonEvaporativeHeatTransferCoefficient expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/1b5d126113b3e963000269be805b42d8
  - http://speckle.xyz/streams/bf7685a6aa/objects/5751a7a8490e489a1a00976905f9b01b on http://speckle.xyz/streams/bf7685a6aa/objects/1b5d126113b3e963000269be805b42d8 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/5751a7a8490e489a1a00976905f9b01b on http://speckle.xyz/streams/bf7685a6aa/objects/1b5d126113b3e963000269be805b42d8 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/constant/Value_ProtonElectronMassRatio
  - http://qudt.org/vocab/constant/Value_ProtonElectronMassRatio expected at most 1 uses of path qudt:standardUncertainty
http://speckle.xyz/streams/bf7685a6aa/objects/c2653b5bcadb0481a20a7941b8b74886
  - http://speckle.xyz/streams/bf7685a6aa/objects/e9490e3512dab7db58f40a947313427f on http://speckle.xyz/streams/bf7685a6aa/objects/c2653b5bcadb0481a20a7941b8b74886 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e9490e3512dab7db58f40a947313427f on http://speckle.xyz/streams/bf7685a6aa/objects/c2653b5bcadb0481a20a7941b8b74886 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/KiloEV
  - http://qudt.org/vocab/unit/KiloEV expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/KiloEV expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/DatasetOfBits
  - http://qudt.org/vocab/unit/TeraBIT on http://qudt.org/vocab/quantitykind/DatasetOfBits needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/OCTET on http://qudt.org/vocab/quantitykind/DatasetOfBits needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KibiBIT on http://qudt.org/vocab/quantitykind/DatasetOfBits needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloBIT on http://qudt.org/vocab/quantitykind/DatasetOfBits needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PetaBIT on http://qudt.org/vocab/quantitykind/DatasetOfBits needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MegaBIT on http://qudt.org/vocab/quantitykind/DatasetOfBits needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MebiBIT on http://qudt.org/vocab/quantitykind/DatasetOfBits needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GigaBIT on http://qudt.org/vocab/quantitykind/DatasetOfBits needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GibiBIT on http://qudt.org/vocab/quantitykind/DatasetOfBits needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/Count
  - http://qudt.org/vocab/quantitykind/Count expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/be9b1a2504ad285572044b53030af0ce
  - http://speckle.xyz/streams/bf7685a6aa/objects/c1f8ba2020eb6468b1d37e4445924aa6 on http://speckle.xyz/streams/bf7685a6aa/objects/be9b1a2504ad285572044b53030af0ce needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/c1f8ba2020eb6468b1d37e4445924aa6 on http://speckle.xyz/streams/bf7685a6aa/objects/be9b1a2504ad285572044b53030af0ce needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/e5f6eb766fccb152ac14af8e812d9edb
  - http://speckle.xyz/streams/bf7685a6aa/objects/c1f8ba2020eb6468b1d37e4445924aa6 on http://speckle.xyz/streams/bf7685a6aa/objects/e5f6eb766fccb152ac14af8e812d9edb needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/c1f8ba2020eb6468b1d37e4445924aa6 on http://speckle.xyz/streams/bf7685a6aa/objects/e5f6eb766fccb152ac14af8e812d9edb needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/LiftCoefficient
  - http://qudt.org/vocab/quantitykind/LiftCoefficient expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/FLIGHT on http://qudt.org/vocab/quantitykind/LiftCoefficient needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/1dd2b4ab210e570a29e586d9a28ec2c5
  - http://speckle.xyz/streams/bf7685a6aa/objects/0d8c716bf524666d44c38328fe3f5865 on http://speckle.xyz/streams/bf7685a6aa/objects/1dd2b4ab210e570a29e586d9a28ec2c5 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/0d8c716bf524666d44c38328fe3f5865 on http://speckle.xyz/streams/bf7685a6aa/objects/1dd2b4ab210e570a29e586d9a28ec2c5 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/PER-MILLE-PER-PSI
  - http://qudt.org/vocab/unit/PER-MILLE-PER-PSI expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/PER-MILLE-PER-PSI expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/acaeac846b1b7639d214b234126ff281
  - http://speckle.xyz/streams/bf7685a6aa/objects/ea1260ec254fcbc4b0630875ec6ed737 on http://speckle.xyz/streams/bf7685a6aa/objects/acaeac846b1b7639d214b234126ff281 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/ea1260ec254fcbc4b0630875ec6ed737 on http://speckle.xyz/streams/bf7685a6aa/objects/acaeac846b1b7639d214b234126ff281 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/MegaC
  - http://qudt.org/vocab/unit/MegaC expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MegaC expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/DynamicFriction
  - http://qudt.org/vocab/unit/POND on http://qudt.org/vocab/quantitykind/DynamicFriction needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/DynamicFriction expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/KiloGM-M-PER-SEC2 on http://qudt.org/vocab/quantitykind/DynamicFriction needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/P on http://qudt.org/vocab/quantitykind/DynamicFriction needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/unit/PER-MicroMOL-L
  - http://qudt.org/vocab/unit/PER-MicroMOL-L expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/PER-MicroMOL-L expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/f9a220aec9963f8471ae741a700df3de
  - http://speckle.xyz/streams/bf7685a6aa/objects/9235406fdde87cb2ee62f34297961438 on http://speckle.xyz/streams/bf7685a6aa/objects/f9a220aec9963f8471ae741a700df3de needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/9235406fdde87cb2ee62f34297961438 on http://speckle.xyz/streams/bf7685a6aa/objects/f9a220aec9963f8471ae741a700df3de needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/2e3798a3ed9fe209d60706e0e1065eec
  - http://speckle.xyz/streams/bf7685a6aa/objects/8290128282ec5e0854b6b095c1cfbe9b on http://speckle.xyz/streams/bf7685a6aa/objects/2e3798a3ed9fe209d60706e0e1065eec needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/8290128282ec5e0854b6b095c1cfbe9b on http://speckle.xyz/streams/bf7685a6aa/objects/2e3798a3ed9fe209d60706e0e1065eec needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1
  - http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1 expected at most 1 uses of path qudt:latexDefinition
http://qudt.org/vocab/constant/Value_BoltzmannConstant
  - http://qudt.org/vocab/constant/Value_BoltzmannConstant expected at most 1 uses of path qudt:standardUncertainty
http://speckle.xyz/streams/bf7685a6aa/objects/550dabc8f4e2c818f1ae830f09607454
  - http://speckle.xyz/streams/bf7685a6aa/objects/03183bd47ce710193f9d15449df4add8 on http://speckle.xyz/streams/bf7685a6aa/objects/550dabc8f4e2c818f1ae830f09607454 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/03183bd47ce710193f9d15449df4add8 on http://speckle.xyz/streams/bf7685a6aa/objects/550dabc8f4e2c818f1ae830f09607454 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/ExaC
  - http://qudt.org/vocab/unit/ExaC expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/ExaC expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/YD3-PER-DAY
  - http://qudt.org/vocab/unit/YD3-PER-DAY expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/YD3-PER-DAY expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/e42294e2df5494321365b941a1392bf3
  - http://speckle.xyz/streams/bf7685a6aa/objects/e8908b5eec592c1e9e520605ad787a0c on http://speckle.xyz/streams/bf7685a6aa/objects/e42294e2df5494321365b941a1392bf3 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e8908b5eec592c1e9e520605ad787a0c on http://speckle.xyz/streams/bf7685a6aa/objects/e42294e2df5494321365b941a1392bf3 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/LinearExpansionCoefficient
  - http://qudt.org/vocab/unit/PER-MegaK on http://qudt.org/vocab/quantitykind/LinearExpansionCoefficient needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PERCENT-PER-K on http://qudt.org/vocab/quantitykind/LinearExpansionCoefficient needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PERCENT-PER-DecaK on http://qudt.org/vocab/quantitykind/LinearExpansionCoefficient needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PER-DEG_F on http://qudt.org/vocab/quantitykind/LinearExpansionCoefficient needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/ad1e5c0e27c12a037615f07ab32b0cad
  - http://speckle.xyz/streams/bf7685a6aa/objects/326fd9e15b12400fd6b47bf26d8fbf84 on http://speckle.xyz/streams/bf7685a6aa/objects/ad1e5c0e27c12a037615f07ab32b0cad needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/326fd9e15b12400fd6b47bf26d8fbf84 on http://speckle.xyz/streams/bf7685a6aa/objects/ad1e5c0e27c12a037615f07ab32b0cad needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/509391e06f236caf36976ca298854df6
  - http://speckle.xyz/streams/bf7685a6aa/objects/e192c1307d2ac8dcde3ff49ce414db81 on http://speckle.xyz/streams/bf7685a6aa/objects/509391e06f236caf36976ca298854df6 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e192c1307d2ac8dcde3ff49ce414db81 on http://speckle.xyz/streams/bf7685a6aa/objects/509391e06f236caf36976ca298854df6 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/20bfebde2ead906220bc7346e3713cfd
  - http://speckle.xyz/streams/bf7685a6aa/objects/c2fc93ee9dec1445af89da62458be10d on http://speckle.xyz/streams/bf7685a6aa/objects/20bfebde2ead906220bc7346e3713cfd needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/c2fc93ee9dec1445af89da62458be10d on http://speckle.xyz/streams/bf7685a6aa/objects/20bfebde2ead906220bc7346e3713cfd needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/constant/Value_MagneticFluxQuantum
  - http://qudt.org/vocab/constant/Value_MagneticFluxQuantum expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/unit/PERM_Metric
  - http://qudt.org/vocab/unit/PERM_Metric expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/PERM_Metric expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/constant/Value_DeuteronMagneticMomentToNuclearMagnetonRatio
  - http://qudt.org/vocab/constant/Value_DeuteronMagneticMomentToNuclearMagnetonRatio expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/unit/MicroS-PER-M
  - http://qudt.org/vocab/unit/MicroS-PER-M expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MicroS-PER-M expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/NOMINAL-ASCENT-PROPELLANT-MASS
  - http://qudt.org/vocab/quantitykind/NOMINAL-ASCENT-PROPELLANT-MASS expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/TON on http://qudt.org/vocab/quantitykind/NOMINAL-ASCENT-PROPELLANT-MASS needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PFUND on http://qudt.org/vocab/quantitykind/NOMINAL-ASCENT-PROPELLANT-MASS needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MOMME_Pearl on http://qudt.org/vocab/quantitykind/NOMINAL-ASCENT-PROPELLANT-MASS needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MegaTON on http://qudt.org/vocab/quantitykind/NOMINAL-ASCENT-PROPELLANT-MASS needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MegaTONNE on http://qudt.org/vocab/quantitykind/NOMINAL-ASCENT-PROPELLANT-MASS needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MOMME_Textile on http://qudt.org/vocab/quantitykind/NOMINAL-ASCENT-PROPELLANT-MASS needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/unit/FemtoMOL-PER-KiloGM
  - http://qudt.org/vocab/unit/FemtoMOL-PER-KiloGM expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/FemtoMOL-PER-KiloGM expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/e8b4f5115b176049fc10dc2859cb214a
  - http://speckle.xyz/streams/bf7685a6aa/objects/688eea56b7b78e0f7c7b90dced966926 on http://speckle.xyz/streams/bf7685a6aa/objects/e8b4f5115b176049fc10dc2859cb214a needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/688eea56b7b78e0f7c7b90dced966926 on http://speckle.xyz/streams/bf7685a6aa/objects/e8b4f5115b176049fc10dc2859cb214a needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/6615346e6b67f385fcd29f7fc07f521d
  - http://speckle.xyz/streams/bf7685a6aa/objects/e9670962d6933d8e0a96caf59912d990 on http://speckle.xyz/streams/bf7685a6aa/objects/6615346e6b67f385fcd29f7fc07f521d needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e9670962d6933d8e0a96caf59912d990 on http://speckle.xyz/streams/bf7685a6aa/objects/6615346e6b67f385fcd29f7fc07f521d needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/99d81621b4d17592993efb200eb41fb7
  - http://speckle.xyz/streams/bf7685a6aa/objects/c8fb46fc939728e45252377481a55e6a on http://speckle.xyz/streams/bf7685a6aa/objects/99d81621b4d17592993efb200eb41fb7 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/c8fb46fc939728e45252377481a55e6a on http://speckle.xyz/streams/bf7685a6aa/objects/99d81621b4d17592993efb200eb41fb7 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/OZ_VOL_UK
  - http://qudt.org/vocab/unit/OZ_VOL_UK expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/OZ_VOL_UK expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/77f6fdc3a8373c9f002e2eae1fa76ae8
  - http://speckle.xyz/streams/bf7685a6aa/objects/fd13fab9dd5bf7fb5f34f8a47903f3c4 on http://speckle.xyz/streams/bf7685a6aa/objects/77f6fdc3a8373c9f002e2eae1fa76ae8 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/fd13fab9dd5bf7fb5f34f8a47903f3c4 on http://speckle.xyz/streams/bf7685a6aa/objects/77f6fdc3a8373c9f002e2eae1fa76ae8 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/constant/Value_NaturalUnitOfMass
  - http://qudt.org/vocab/constant/Value_NaturalUnitOfMass expected at most 1 uses of path qudt:standardUncertainty
http://speckle.xyz/streams/bf7685a6aa/objects/1be9f36069bb368853b742364e783669
  - http://speckle.xyz/streams/bf7685a6aa/objects/e8e61103cdf42e0fd7b5f6b6301376d0 on http://speckle.xyz/streams/bf7685a6aa/objects/1be9f36069bb368853b742364e783669 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e8e61103cdf42e0fd7b5f6b6301376d0 on http://speckle.xyz/streams/bf7685a6aa/objects/1be9f36069bb368853b742364e783669 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/IN4
  - http://qudt.org/vocab/unit/IN4 expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/IN4 expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/c8594ec8ff1895ac8163e35956f4676a
  - http://speckle.xyz/streams/bf7685a6aa/objects/38de361c40151688ec4354659cc9e855 on http://speckle.xyz/streams/bf7685a6aa/objects/c8594ec8ff1895ac8163e35956f4676a needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/38de361c40151688ec4354659cc9e855 on http://speckle.xyz/streams/bf7685a6aa/objects/c8594ec8ff1895ac8163e35956f4676a needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/4f3b47d6bcae681e65c58fe7278fd6d7
  - http://speckle.xyz/streams/bf7685a6aa/objects/436cbdf042b2430d478faaa32f8345b5 on http://speckle.xyz/streams/bf7685a6aa/objects/4f3b47d6bcae681e65c58fe7278fd6d7 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/436cbdf042b2430d478faaa32f8345b5 on http://speckle.xyz/streams/bf7685a6aa/objects/4f3b47d6bcae681e65c58fe7278fd6d7 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/PowerPerArea
  - http://qudt.org/vocab/unit/BTU_IT-PER-IN2-SEC on http://qudt.org/vocab/quantitykind/PowerPerArea needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CAL_TH-PER-CentiM2-SEC on http://qudt.org/vocab/quantitykind/PowerPerArea needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/BTU_TH-PER-FT2-SEC on http://qudt.org/vocab/quantitykind/PowerPerArea needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/M-PA-PER-SEC on http://qudt.org/vocab/quantitykind/PowerPerArea needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/BTU_IT-PER-FT2-HR on http://qudt.org/vocab/quantitykind/PowerPerArea needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CAL_TH-PER-CentiM2-MIN on http://qudt.org/vocab/quantitykind/PowerPerArea needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/BTU_IT-PER-FT2-SEC on http://qudt.org/vocab/quantitykind/PowerPerArea needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/BTU_TH-PER-FT2-MIN on http://qudt.org/vocab/quantitykind/PowerPerArea needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/BTU_TH-PER-FT2-HR on http://qudt.org/vocab/quantitykind/PowerPerArea needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/NanoW-PER-M2 on http://qudt.org/vocab/quantitykind/PowerPerArea needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/15279bd22b4e453b9c4be53a7b25a640
  - http://speckle.xyz/streams/bf7685a6aa/objects/afd2940fe9aa7135187ec2abaaef0157 on http://speckle.xyz/streams/bf7685a6aa/objects/15279bd22b4e453b9c4be53a7b25a640 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/afd2940fe9aa7135187ec2abaaef0157 on http://speckle.xyz/streams/bf7685a6aa/objects/15279bd22b4e453b9c4be53a7b25a640 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/16d11c4edfb3f2ec5348e7b34be48615
  - http://speckle.xyz/streams/bf7685a6aa/objects/436cbdf042b2430d478faaa32f8345b5 on http://speckle.xyz/streams/bf7685a6aa/objects/16d11c4edfb3f2ec5348e7b34be48615 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/436cbdf042b2430d478faaa32f8345b5 on http://speckle.xyz/streams/bf7685a6aa/objects/16d11c4edfb3f2ec5348e7b34be48615 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/47177ef49268face6a23abaa6287434a
  - http://speckle.xyz/streams/bf7685a6aa/objects/03183bd47ce710193f9d15449df4add8 on http://speckle.xyz/streams/bf7685a6aa/objects/47177ef49268face6a23abaa6287434a needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/03183bd47ce710193f9d15449df4add8 on http://speckle.xyz/streams/bf7685a6aa/objects/47177ef49268face6a23abaa6287434a needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/TOE
  - http://qudt.org/vocab/unit/TOE expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/TOE expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/671086b94bc05f1e9b78313d028b70d1
  - http://speckle.xyz/streams/bf7685a6aa/objects/0c99cbe31ea235d05bdcd5ce3a0ab2af on http://speckle.xyz/streams/bf7685a6aa/objects/671086b94bc05f1e9b78313d028b70d1 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/0c99cbe31ea235d05bdcd5ce3a0ab2af on http://speckle.xyz/streams/bf7685a6aa/objects/671086b94bc05f1e9b78313d028b70d1 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/RelativeAtomicMass
  - http://qudt.org/vocab/quantitykind/RelativeAtomicMass expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/PPT on http://qudt.org/vocab/quantitykind/RelativeAtomicMass needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PPQ on http://qudt.org/vocab/quantitykind/RelativeAtomicMass needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/VolumeFraction
  - http://qudt.org/vocab/quantitykind/VolumeFraction expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/RadiantFluence
  - http://qudt.org/vocab/unit/LANGLEY on http://qudt.org/vocab/quantitykind/RadiantFluence needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/RadiantFluence expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/MilliJ-PER-M2 on http://qudt.org/vocab/quantitykind/RadiantFluence needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/unit/PicoL
  - http://qudt.org/vocab/unit/PicoL expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/PicoL expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/4a1d3548199fab529985e2252ba6f936
  - http://speckle.xyz/streams/bf7685a6aa/objects/c11557e21bacf2f498a7839086c087a0 on http://speckle.xyz/streams/bf7685a6aa/objects/4a1d3548199fab529985e2252ba6f936 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/c11557e21bacf2f498a7839086c087a0 on http://speckle.xyz/streams/bf7685a6aa/objects/4a1d3548199fab529985e2252ba6f936 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/GI_US-PER-HR
  - http://qudt.org/vocab/unit/GI_US-PER-HR expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/GI_US-PER-HR expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/constant/Value_AlphaParticleElectronMassRatio
  - http://qudt.org/vocab/constant/Value_AlphaParticleElectronMassRatio expected at most 1 uses of path qudt:standardUncertainty
http://speckle.xyz/streams/bf7685a6aa/objects/81b4584de424675cd6b880b944b5b9a8
  - http://speckle.xyz/streams/bf7685a6aa/objects/28299383e0df00b91df539a74c7815c2 on http://speckle.xyz/streams/bf7685a6aa/objects/81b4584de424675cd6b880b944b5b9a8 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/28299383e0df00b91df539a74c7815c2 on http://speckle.xyz/streams/bf7685a6aa/objects/81b4584de424675cd6b880b944b5b9a8 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/QT_US-PER-DAY
  - http://qudt.org/vocab/unit/QT_US-PER-DAY expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/QT_US-PER-DAY expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/constant/Value_NeutronMassInAtomicMassUnit
  - http://qudt.org/vocab/constant/Value_NeutronMassInAtomicMassUnit expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/unit/MicroH
  - http://qudt.org/vocab/unit/MicroH expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MicroH expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/MassOfElectricalPowerSupply
  - http://qudt.org/vocab/unit/TON on http://qudt.org/vocab/quantitykind/MassOfElectricalPowerSupply needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MegaTON on http://qudt.org/vocab/quantitykind/MassOfElectricalPowerSupply needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MOMME_Textile on http://qudt.org/vocab/quantitykind/MassOfElectricalPowerSupply needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MOMME_Pearl on http://qudt.org/vocab/quantitykind/MassOfElectricalPowerSupply needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MegaTONNE on http://qudt.org/vocab/quantitykind/MassOfElectricalPowerSupply needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PFUND on http://qudt.org/vocab/quantitykind/MassOfElectricalPowerSupply needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/unit/MegaN-M
  - http://qudt.org/vocab/unit/MegaN-M expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MegaN-M expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/KiloPA-PER-MilliM
  - http://qudt.org/vocab/unit/KiloPA-PER-MilliM expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/KiloPA-PER-MilliM expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/ExaJ
  - http://qudt.org/vocab/unit/ExaJ expected at most 1 uses of path qudt:plainTextDescription
  - http://qudt.org/vocab/unit/ExaJ expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/ExaJ expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/NanoGM
  - http://qudt.org/vocab/unit/NanoGM expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/NanoGM expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/HyperfineStructureQuantumNumber
  - http://qudt.org/vocab/quantitykind/HyperfineStructureQuantumNumber expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/e231ac0a807e7243a47b90adef252151
  - http://speckle.xyz/streams/bf7685a6aa/objects/e192c1307d2ac8dcde3ff49ce414db81 on http://speckle.xyz/streams/bf7685a6aa/objects/e231ac0a807e7243a47b90adef252151 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e192c1307d2ac8dcde3ff49ce414db81 on http://speckle.xyz/streams/bf7685a6aa/objects/e231ac0a807e7243a47b90adef252151 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/ElectricPotentialDifference
  - http://qudt.org/vocab/unit/GigaV on http://qudt.org/vocab/quantitykind/ElectricPotentialDifference needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/ElectricPotentialDifference expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/TeraV on http://qudt.org/vocab/quantitykind/ElectricPotentialDifference needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PicoV on http://qudt.org/vocab/quantitykind/ElectricPotentialDifference needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/FemtoV on http://qudt.org/vocab/quantitykind/ElectricPotentialDifference needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/NanoV on http://qudt.org/vocab/quantitykind/ElectricPotentialDifference needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/unit/KiloCAL-PER-GM
  - http://qudt.org/vocab/unit/KiloCAL-PER-GM expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/KiloCAL-PER-GM expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/816a4a632b1cdafd9dfd438bbbe7e652
  - http://speckle.xyz/streams/bf7685a6aa/objects/dfc0c3833a46266c71575787aff0f20d on http://speckle.xyz/streams/bf7685a6aa/objects/816a4a632b1cdafd9dfd438bbbe7e652 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/dfc0c3833a46266c71575787aff0f20d on http://speckle.xyz/streams/bf7685a6aa/objects/816a4a632b1cdafd9dfd438bbbe7e652 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/99d0ff30b4dc4d08d5082e33b626e470
  - http://speckle.xyz/streams/bf7685a6aa/objects/e97571e2dfc45c32f85efb64c6ccba64 on http://speckle.xyz/streams/bf7685a6aa/objects/99d0ff30b4dc4d08d5082e33b626e470 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e97571e2dfc45c32f85efb64c6ccba64 on http://speckle.xyz/streams/bf7685a6aa/objects/99d0ff30b4dc4d08d5082e33b626e470 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/MassAmountOfSubstanceTemperature
  - http://qudt.org/vocab/unit/MOL_LB-DEG_F on http://qudt.org/vocab/quantitykind/MassAmountOfSubstanceTemperature needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/055ff1926ee73063ea622e047811b3f4
  - http://speckle.xyz/streams/bf7685a6aa/objects/2bab3a834da573d903244a9902f78aa1 on http://speckle.xyz/streams/bf7685a6aa/objects/055ff1926ee73063ea622e047811b3f4 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/2bab3a834da573d903244a9902f78aa1 on http://speckle.xyz/streams/bf7685a6aa/objects/055ff1926ee73063ea622e047811b3f4 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/dimensionvector/A1E0L-3I0M0H0T0D0
  - http://qudt.org/vocab/dimensionvector/A1E0L-3I0M0H0T0D0 expected at most 1 uses of path qudt:latexDefinition
http://qudt.org/vocab/dimensionvector/A0E0L0I0M-1H1T3D0
  - http://qudt.org/vocab/dimensionvector/A0E0L0I0M-1H1T3D0 expected at most 1 uses of path qudt:latexDefinition
http://speckle.xyz/streams/bf7685a6aa/objects/ea17af3893016df4595af4799b56f061
  - http://speckle.xyz/streams/bf7685a6aa/objects/0d245daa39fba4d252d07553fdb4c419 on http://speckle.xyz/streams/bf7685a6aa/objects/ea17af3893016df4595af4799b56f061 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/0d245daa39fba4d252d07553fdb4c419 on http://speckle.xyz/streams/bf7685a6aa/objects/ea17af3893016df4595af4799b56f061 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/constant/Value_InverseOfConductanceQuantum
  - http://qudt.org/vocab/constant/Value_InverseOfConductanceQuantum expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/constant/Value_DeuteronMass
  - http://qudt.org/vocab/constant/Value_DeuteronMass expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/constant/Value_WeakMixingAngle
  - http://qudt.org/vocab/constant/Value_WeakMixingAngle expected at most 1 uses of path qudt:standardUncertainty
http://speckle.xyz/streams/bf7685a6aa/objects/d1a1e091590ba9fb48c1a848f89465cf
  - http://speckle.xyz/streams/bf7685a6aa/objects/17592c23e3930128143ddd679cd6a0d0 on http://speckle.xyz/streams/bf7685a6aa/objects/d1a1e091590ba9fb48c1a848f89465cf needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/17592c23e3930128143ddd679cd6a0d0 on http://speckle.xyz/streams/bf7685a6aa/objects/d1a1e091590ba9fb48c1a848f89465cf needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/ScalarMagneticPotential
  - http://qudt.org/vocab/quantitykind/ScalarMagneticPotential expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/bace2668a2b4f106e2d686d8677884c7
  - http://speckle.xyz/streams/bf7685a6aa/objects/570de36b94b8ce5c1670646dcd7526e1 on http://speckle.xyz/streams/bf7685a6aa/objects/bace2668a2b4f106e2d686d8677884c7 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/570de36b94b8ce5c1670646dcd7526e1 on http://speckle.xyz/streams/bf7685a6aa/objects/bace2668a2b4f106e2d686d8677884c7 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/ElectricSusceptibility
  - http://qudt.org/vocab/quantitykind/ElectricSusceptibility expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/Rotary-TranslatoryMotionConversion
  - http://qudt.org/vocab/unit/IN-PER-2PiRAD on http://qudt.org/vocab/quantitykind/Rotary-TranslatoryMotionConversion needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/M-PER-RAD on http://qudt.org/vocab/quantitykind/Rotary-TranslatoryMotionConversion needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/a3e1c30059fac660c77ed48830183957
  - http://speckle.xyz/streams/bf7685a6aa/objects/688eea56b7b78e0f7c7b90dced966926 on http://speckle.xyz/streams/bf7685a6aa/objects/a3e1c30059fac660c77ed48830183957 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/688eea56b7b78e0f7c7b90dced966926 on http://speckle.xyz/streams/bf7685a6aa/objects/a3e1c30059fac660c77ed48830183957 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/79dcee3cd0877f71f61f1e379f6f4c76
  - http://speckle.xyz/streams/bf7685a6aa/objects/9a31f4bc3b0b7b0d9e646386a04f1dd7 on http://speckle.xyz/streams/bf7685a6aa/objects/79dcee3cd0877f71f61f1e379f6f4c76 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/9a31f4bc3b0b7b0d9e646386a04f1dd7 on http://speckle.xyz/streams/bf7685a6aa/objects/79dcee3cd0877f71f61f1e379f6f4c76 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/a4146c0d29fab9b98ee6dffb331fe4ed
  - http://speckle.xyz/streams/bf7685a6aa/objects/aa3aa38ee5b10e40c9ede870225fd503 on http://speckle.xyz/streams/bf7685a6aa/objects/a4146c0d29fab9b98ee6dffb331fe4ed needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/aa3aa38ee5b10e40c9ede870225fd503 on http://speckle.xyz/streams/bf7685a6aa/objects/a4146c0d29fab9b98ee6dffb331fe4ed needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/LineicResistance
  - http://qudt.org/vocab/quantitykind/LineicResistance expected at most 1 uses of path qudt:plainTextDescription
http://qudt.org/vocab/unit/NanoFARAD-PER-M
  - http://qudt.org/vocab/unit/NanoFARAD-PER-M expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/NanoFARAD-PER-M expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/constant/Value_MuonGFactor
  - http://qudt.org/vocab/constant/Value_MuonGFactor expected at most 1 uses of path qudt:standardUncertainty
http://speckle.xyz/streams/bf7685a6aa/objects/b996d60c78b499a8130e5437771f98f4
  - http://speckle.xyz/streams/bf7685a6aa/objects/ea809d7a6106eaba6d818bfdb3e3e5b9 on http://speckle.xyz/streams/bf7685a6aa/objects/b996d60c78b499a8130e5437771f98f4 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/ea809d7a6106eaba6d818bfdb3e3e5b9 on http://speckle.xyz/streams/bf7685a6aa/objects/b996d60c78b499a8130e5437771f98f4 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/dimensionvector/A0E-2L1I0M1H0T-2D0
  - http://qudt.org/vocab/dimensionvector/A0E-2L1I0M1H0T-2D0 expected at most 1 uses of path qudt:latexDefinition
http://qudt.org/vocab/quantitykind/CompressibilityFactor
  - http://qudt.org/vocab/unit/PPT on http://qudt.org/vocab/quantitykind/CompressibilityFactor needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PPQ on http://qudt.org/vocab/quantitykind/CompressibilityFactor needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/unit/RAYL
  - http://qudt.org/vocab/unit/RAYL expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/3b86232d77f6eeca31c45ad1da6eeb3f
  - http://speckle.xyz/streams/bf7685a6aa/objects/d5b1769b748423fb98cace29a0366946 on http://speckle.xyz/streams/bf7685a6aa/objects/3b86232d77f6eeca31c45ad1da6eeb3f needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/d5b1769b748423fb98cace29a0366946 on http://speckle.xyz/streams/bf7685a6aa/objects/3b86232d77f6eeca31c45ad1da6eeb3f needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/5ce7be2d8ab0d53d043ac46d908cc7ea
  - http://speckle.xyz/streams/bf7685a6aa/objects/442b75f265dad85708d17330be21561c on http://speckle.xyz/streams/bf7685a6aa/objects/5ce7be2d8ab0d53d043ac46d908cc7ea needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/442b75f265dad85708d17330be21561c on http://speckle.xyz/streams/bf7685a6aa/objects/5ce7be2d8ab0d53d043ac46d908cc7ea needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H0T0D0
  - http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H0T0D0 expected at most 1 uses of path qudt:latexDefinition
http://speckle.xyz/streams/bf7685a6aa/objects/13866300ce4c9bebe2b2cd227a13d74d
  - http://speckle.xyz/streams/bf7685a6aa/objects/598a0c5bed585c4e7fdfeb688cc62eb2 on http://speckle.xyz/streams/bf7685a6aa/objects/13866300ce4c9bebe2b2cd227a13d74d needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/598a0c5bed585c4e7fdfeb688cc62eb2 on http://speckle.xyz/streams/bf7685a6aa/objects/13866300ce4c9bebe2b2cd227a13d74d needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/bcc9c992a27e73c06afe7baa2550ffdc
  - http://speckle.xyz/streams/bf7685a6aa/objects/9a31f4bc3b0b7b0d9e646386a04f1dd7 on http://speckle.xyz/streams/bf7685a6aa/objects/bcc9c992a27e73c06afe7baa2550ffdc needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/9a31f4bc3b0b7b0d9e646386a04f1dd7 on http://speckle.xyz/streams/bf7685a6aa/objects/bcc9c992a27e73c06afe7baa2550ffdc needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/EnergyFluence
  - http://qudt.org/vocab/unit/LANGLEY on http://qudt.org/vocab/quantitykind/EnergyFluence needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/EnergyFluence expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/MilliJ-PER-M2 on http://qudt.org/vocab/quantitykind/EnergyFluence needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/SunProtectionFactorOfAProduct
  - http://qudt.org/vocab/unit/SPF on http://qudt.org/vocab/quantitykind/SunProtectionFactorOfAProduct needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/TemperatureRatio
  - http://qudt.org/vocab/unit/MilliK-PER-K on http://qudt.org/vocab/quantitykind/TemperatureRatio needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/unit/ZeptoC
  - http://qudt.org/vocab/unit/ZeptoC expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/ZeptoC expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/b17c3c7c1b412efe8750c3686fb64732
  - http://speckle.xyz/streams/bf7685a6aa/objects/ea1260ec254fcbc4b0630875ec6ed737 on http://speckle.xyz/streams/bf7685a6aa/objects/b17c3c7c1b412efe8750c3686fb64732 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/ea1260ec254fcbc4b0630875ec6ed737 on http://speckle.xyz/streams/bf7685a6aa/objects/b17c3c7c1b412efe8750c3686fb64732 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/PINT_UK-PER-MIN
  - http://qudt.org/vocab/unit/PINT_UK-PER-MIN expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/PINT_UK-PER-MIN expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/6623b45a1fad3e874c337994b8d31dde
  - http://speckle.xyz/streams/bf7685a6aa/objects/bb735c1fd5e7bce4e542eb2535083e45 on http://speckle.xyz/streams/bf7685a6aa/objects/6623b45a1fad3e874c337994b8d31dde needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/bb735c1fd5e7bce4e542eb2535083e45 on http://speckle.xyz/streams/bf7685a6aa/objects/6623b45a1fad3e874c337994b8d31dde needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/ParticleNumberDensity
  - http://qudt.org/vocab/quantitykind/ParticleNumberDensity expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/NUM-PER-MilliL on http://qudt.org/vocab/quantitykind/ParticleNumberDensity needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H-1T-2D0
  - http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H-1T-2D0 expected at most 1 uses of path qudt:latexDefinition
http://qudt.org/vocab/quantitykind/LatticePlaneSpacing
  - http://qudt.org/vocab/unit/ZOLL on http://qudt.org/vocab/quantitykind/LatticePlaneSpacing needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/LatticePlaneSpacing expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/CHAIN_US on http://qudt.org/vocab/quantitykind/LatticePlaneSpacing needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GA_Charriere on http://qudt.org/vocab/quantitykind/LatticePlaneSpacing needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/unit/MilliW-PER-CentiM2-MicroM-SR
  - http://qudt.org/vocab/unit/MilliW-PER-CentiM2-MicroM-SR expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MilliW-PER-CentiM2-MicroM-SR expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/MilliGAL
  - http://qudt.org/vocab/unit/MilliGAL expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MilliGAL expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/b3a51fecb647cc22de819d427e34048f
  - http://speckle.xyz/streams/bf7685a6aa/objects/f9f9f58777812d5fea59aef9b267ba4e on http://speckle.xyz/streams/bf7685a6aa/objects/b3a51fecb647cc22de819d427e34048f needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/f9f9f58777812d5fea59aef9b267ba4e on http://speckle.xyz/streams/bf7685a6aa/objects/b3a51fecb647cc22de819d427e34048f needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/3899aa3b4796475dc5e9197bbd8088e1
  - http://speckle.xyz/streams/bf7685a6aa/objects/c11557e21bacf2f498a7839086c087a0 on http://speckle.xyz/streams/bf7685a6aa/objects/3899aa3b4796475dc5e9197bbd8088e1 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/c11557e21bacf2f498a7839086c087a0 on http://speckle.xyz/streams/bf7685a6aa/objects/3899aa3b4796475dc5e9197bbd8088e1 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/CENTER-OF-GRAVITY_X
  - http://qudt.org/vocab/unit/GA_Charriere on http://qudt.org/vocab/quantitykind/CENTER-OF-GRAVITY_X needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/ZOLL on http://qudt.org/vocab/quantitykind/CENTER-OF-GRAVITY_X needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CHAIN_US on http://qudt.org/vocab/quantitykind/CENTER-OF-GRAVITY_X needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/30b18e00f5237982874f0b01be591c0f
  - http://speckle.xyz/streams/bf7685a6aa/objects/f9f9f58777812d5fea59aef9b267ba4e on http://speckle.xyz/streams/bf7685a6aa/objects/30b18e00f5237982874f0b01be591c0f needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/f9f9f58777812d5fea59aef9b267ba4e on http://speckle.xyz/streams/bf7685a6aa/objects/30b18e00f5237982874f0b01be591c0f needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/69a6bc280c14572696968266f6856fa4
  - http://speckle.xyz/streams/bf7685a6aa/objects/f031db8cf74c1d34f7ec9caaa44e707f on http://speckle.xyz/streams/bf7685a6aa/objects/69a6bc280c14572696968266f6856fa4 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/f031db8cf74c1d34f7ec9caaa44e707f on http://speckle.xyz/streams/bf7685a6aa/objects/69a6bc280c14572696968266f6856fa4 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/3df13f88d2923f57d4bc3112893fd5c0
  - http://speckle.xyz/streams/bf7685a6aa/objects/8d3ab9635d58bfdfc81c3f647c553b97 on http://speckle.xyz/streams/bf7685a6aa/objects/3df13f88d2923f57d4bc3112893fd5c0 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/8d3ab9635d58bfdfc81c3f647c553b97 on http://speckle.xyz/streams/bf7685a6aa/objects/3df13f88d2923f57d4bc3112893fd5c0 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/c01818aa28e0a8439657f9910733d4c9
  - http://speckle.xyz/streams/bf7685a6aa/objects/288eb5e729bd3a5f915b25b9695e2397 on http://speckle.xyz/streams/bf7685a6aa/objects/c01818aa28e0a8439657f9910733d4c9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/288eb5e729bd3a5f915b25b9695e2397 on http://speckle.xyz/streams/bf7685a6aa/objects/c01818aa28e0a8439657f9910733d4c9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/PressureBasedVolume
  - http://qudt.org/vocab/quantitykind/PressureBasedVolume expected at most 1 uses of path qudt:plainTextDescription
http://qudt.org/vocab/unit/KIP_F-PER-IN2
  - http://qudt.org/vocab/unit/KIP_F-PER-IN2 expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/KIP_F-PER-IN2 expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/BU_US_DRY-PER-DAY
  - http://qudt.org/vocab/unit/BU_US_DRY-PER-DAY expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/BU_US_DRY-PER-DAY expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/TotalAtomicStoppingPower
  - http://qudt.org/vocab/quantitykind/TotalAtomicStoppingPower expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/EV-M2 on http://qudt.org/vocab/quantitykind/TotalAtomicStoppingPower needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/NozzleThroatCrossSectionalArea
  - http://qudt.org/vocab/unit/KiloMIL_Circ on http://qudt.org/vocab/quantitykind/NozzleThroatCrossSectionalArea needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MI_US2 on http://qudt.org/vocab/quantitykind/NozzleThroatCrossSectionalArea needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/NozzleThroatCrossSectionalArea expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/KiloM2 on http://qudt.org/vocab/quantitykind/NozzleThroatCrossSectionalArea needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/dimensionvector/A0E3L-1I0M-2H0T7D0
  - http://qudt.org/vocab/dimensionvector/A0E3L-1I0M-2H0T7D0 expected at most 1 uses of path qudt:latexDefinition
http://qudt.org/vocab/quantitykind/LinearTorque
  - http://qudt.org/vocab/unit/LB_F-IN-PER-IN on http://qudt.org/vocab/quantitykind/LinearTorque needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/LB_F-FT-PER-IN on http://qudt.org/vocab/quantitykind/LinearTorque needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/MolarHeatCapacity
  - http://qudt.org/vocab/quantitykind/MolarHeatCapacity expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/BTU_IT-PER-MOL_LB-DEG_F on http://qudt.org/vocab/quantitykind/MolarHeatCapacity needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/436903c539b969c425b914e8967e10b9
  - http://speckle.xyz/streams/bf7685a6aa/objects/6e02e6432b5c2bd4b3c9f66e71ca8f1a on http://speckle.xyz/streams/bf7685a6aa/objects/436903c539b969c425b914e8967e10b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/6e02e6432b5c2bd4b3c9f66e71ca8f1a on http://speckle.xyz/streams/bf7685a6aa/objects/436903c539b969c425b914e8967e10b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/643bce0e60029c82f4278bafcbe260cb
  - http://speckle.xyz/streams/bf7685a6aa/objects/2119b9678ef6ebb538a9e7cbcf2370fa on http://speckle.xyz/streams/bf7685a6aa/objects/643bce0e60029c82f4278bafcbe260cb needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/2119b9678ef6ebb538a9e7cbcf2370fa on http://speckle.xyz/streams/bf7685a6aa/objects/643bce0e60029c82f4278bafcbe260cb needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/ExposureRate
  - http://qudt.org/vocab/unit/R-PER-SEC on http://qudt.org/vocab/quantitykind/ExposureRate needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/ExposureRate expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/SpectralLuminousEfficiency
  - http://qudt.org/vocab/quantitykind/SpectralLuminousEfficiency expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/unit/NanoH-PER-M
  - http://qudt.org/vocab/unit/NanoH-PER-M expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/NanoH-PER-M expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/FR
  - http://qudt.org/vocab/unit/FR expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/FR expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/IsentropicCompressibility
  - http://qudt.org/vocab/quantitykind/IsentropicCompressibility expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/PER-MegaPA on http://qudt.org/vocab/quantitykind/IsentropicCompressibility needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/dc6997ebf256f7f926eb95242a4c5df8
  - http://speckle.xyz/streams/bf7685a6aa/objects/03183bd47ce710193f9d15449df4add8 on http://speckle.xyz/streams/bf7685a6aa/objects/dc6997ebf256f7f926eb95242a4c5df8 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/03183bd47ce710193f9d15449df4add8 on http://speckle.xyz/streams/bf7685a6aa/objects/dc6997ebf256f7f926eb95242a4c5df8 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/e472557d12d233e253b7f47d78f2ad56
  - http://speckle.xyz/streams/bf7685a6aa/objects/e8908b5eec592c1e9e520605ad787a0c on http://speckle.xyz/streams/bf7685a6aa/objects/e472557d12d233e253b7f47d78f2ad56 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e8908b5eec592c1e9e520605ad787a0c on http://speckle.xyz/streams/bf7685a6aa/objects/e472557d12d233e253b7f47d78f2ad56 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T-2D1
  - http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T-2D1 expected at most 1 uses of path qudt:latexDefinition
http://speckle.xyz/streams/bf7685a6aa/objects/e1de62f65139e65f8ae3e938567986bc
  - http://speckle.xyz/streams/bf7685a6aa/objects/39585c6ef6b03b8dbb18fb8a3bed20a3 on http://speckle.xyz/streams/bf7685a6aa/objects/e1de62f65139e65f8ae3e938567986bc needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/39585c6ef6b03b8dbb18fb8a3bed20a3 on http://speckle.xyz/streams/bf7685a6aa/objects/e1de62f65139e65f8ae3e938567986bc needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/L-PER-DAY
  - http://qudt.org/vocab/unit/L-PER-DAY expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/L-PER-DAY expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/GI_UK-PER-DAY
  - http://qudt.org/vocab/unit/GI_UK-PER-DAY expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/GI_UK-PER-DAY expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/e4cf51b8f99a54621c4e35a6b208b1a5
  - http://speckle.xyz/streams/bf7685a6aa/objects/c1e7bac9cc9cff56ce6fff37c81afd27 on http://speckle.xyz/streams/bf7685a6aa/objects/e4cf51b8f99a54621c4e35a6b208b1a5 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/c1e7bac9cc9cff56ce6fff37c81afd27 on http://speckle.xyz/streams/bf7685a6aa/objects/e4cf51b8f99a54621c4e35a6b208b1a5 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/AreicDataVolume
  - http://qudt.org/vocab/quantitykind/AreicDataVolume expected at most 1 uses of path qudt:plainTextDescription
http://qudt.org/vocab/unit/EV-PER-K
  - http://qudt.org/vocab/unit/EV-PER-K expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/EV-PER-K expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/CharacteristicVelocity
  - http://qudt.org/vocab/unit/MicroM-PER-SEC on http://qudt.org/vocab/quantitykind/CharacteristicVelocity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MicroM-PER-MIN on http://qudt.org/vocab/quantitykind/CharacteristicVelocity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/YD-PER-HR on http://qudt.org/vocab/quantitykind/CharacteristicVelocity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/IN-PER-YR on http://qudt.org/vocab/quantitykind/CharacteristicVelocity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/YD-PER-SEC on http://qudt.org/vocab/quantitykind/CharacteristicVelocity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/YD-PER-MIN on http://qudt.org/vocab/quantitykind/CharacteristicVelocity needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/constant/Value_SecondRadiationConstant
  - http://qudt.org/vocab/constant/Value_SecondRadiationConstant expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/unit/MicroMOL-PER-M2-SEC
  - http://qudt.org/vocab/unit/MicroMOL-PER-M2-SEC expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MicroMOL-PER-M2-SEC expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/EarthMass
  - http://qudt.org/vocab/unit/EarthMass expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/EarthMass expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/fdd58388a038e99dfa6064ec201dd26c
  - http://speckle.xyz/streams/bf7685a6aa/objects/2bab3a834da573d903244a9902f78aa1 on http://speckle.xyz/streams/bf7685a6aa/objects/fdd58388a038e99dfa6064ec201dd26c needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/2bab3a834da573d903244a9902f78aa1 on http://speckle.xyz/streams/bf7685a6aa/objects/fdd58388a038e99dfa6064ec201dd26c needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/530cfb9a2f48050d60abc0f6822432e0
  - http://speckle.xyz/streams/bf7685a6aa/objects/e9490e3512dab7db58f40a947313427f on http://speckle.xyz/streams/bf7685a6aa/objects/530cfb9a2f48050d60abc0f6822432e0 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e9490e3512dab7db58f40a947313427f on http://speckle.xyz/streams/bf7685a6aa/objects/530cfb9a2f48050d60abc0f6822432e0 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/MegaHZ-M
  - http://qudt.org/vocab/unit/MegaHZ-M expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MegaHZ-M expected at most 1 uses of path qudt:plainTextDescription
  - http://qudt.org/vocab/unit/MegaHZ-M expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/dimensionvector/A0E0L-2I0M0H0T-1D0
  - http://qudt.org/vocab/dimensionvector/A0E0L-2I0M0H0T-1D0 expected at most 1 uses of path qudt:latexDefinition
http://qudt.org/vocab/unit/CentiL
  - http://qudt.org/vocab/unit/CentiL expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/CentiL expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/RefractiveIndex
  - http://qudt.org/vocab/quantitykind/RefractiveIndex expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/unit/CentiPOISE-PER-BAR
  - http://qudt.org/vocab/unit/CentiPOISE-PER-BAR expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/CentiPOISE-PER-BAR expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/BBL_UK_PET-PER-HR
  - http://qudt.org/vocab/unit/BBL_UK_PET-PER-HR expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/BBL_UK_PET-PER-HR expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/80b2b12d66fecdbd7f997c97082bca87
  - http://speckle.xyz/streams/bf7685a6aa/objects/22ee737a989391acee4ea60354e91210 on http://speckle.xyz/streams/bf7685a6aa/objects/80b2b12d66fecdbd7f997c97082bca87 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/22ee737a989391acee4ea60354e91210 on http://speckle.xyz/streams/bf7685a6aa/objects/80b2b12d66fecdbd7f997c97082bca87 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/constant/Value_InverseFineStructureConstant
  - http://qudt.org/vocab/constant/Value_InverseFineStructureConstant expected at most 1 uses of path qudt:standardUncertainty
http://speckle.xyz/streams/bf7685a6aa/objects/47574d13d7e14941c80d57e9c7e2f565
  - http://speckle.xyz/streams/bf7685a6aa/objects/61392c60c3f0f6583028d86c3528cd5c on http://speckle.xyz/streams/bf7685a6aa/objects/47574d13d7e14941c80d57e9c7e2f565 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/61392c60c3f0f6583028d86c3528cd5c on http://speckle.xyz/streams/bf7685a6aa/objects/47574d13d7e14941c80d57e9c7e2f565 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/d56437bcd000b32ac4618eaf574ff19b
  - http://speckle.xyz/streams/bf7685a6aa/objects/9235406fdde87cb2ee62f34297961438 on http://speckle.xyz/streams/bf7685a6aa/objects/d56437bcd000b32ac4618eaf574ff19b needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/9235406fdde87cb2ee62f34297961438 on http://speckle.xyz/streams/bf7685a6aa/objects/d56437bcd000b32ac4618eaf574ff19b needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/MilliGM-PER-HR
  - http://qudt.org/vocab/unit/MilliGM-PER-HR expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MilliGM-PER-HR expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/e3a8b2f48f2b06d39aaca3516464c2d7
  - http://speckle.xyz/streams/bf7685a6aa/objects/9235406fdde87cb2ee62f34297961438 on http://speckle.xyz/streams/bf7685a6aa/objects/e3a8b2f48f2b06d39aaca3516464c2d7 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/9235406fdde87cb2ee62f34297961438 on http://speckle.xyz/streams/bf7685a6aa/objects/e3a8b2f48f2b06d39aaca3516464c2d7 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/DEG_C-WK
  - http://qudt.org/vocab/unit/DEG_C-WK expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/DEG_C-WK expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/250fcdaf30200a9be10ed71bc64cb2ea
  - http://speckle.xyz/streams/bf7685a6aa/objects/0e5bab348c0d7a43d3197d71b2ecdff0 on http://speckle.xyz/streams/bf7685a6aa/objects/250fcdaf30200a9be10ed71bc64cb2ea needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/0e5bab348c0d7a43d3197d71b2ecdff0 on http://speckle.xyz/streams/bf7685a6aa/objects/250fcdaf30200a9be10ed71bc64cb2ea needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/ReciprocalVoltage
  - http://qudt.org/vocab/unit/PER-V on http://qudt.org/vocab/quantitykind/ReciprocalVoltage needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/ReciprocalVoltage expected at most 1 uses of path qudt:plainTextDescription
http://qudt.org/vocab/quantitykind/EvaporativeHeatTransferCoefficient
  - http://qudt.org/vocab/quantitykind/EvaporativeHeatTransferCoefficient expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/constant/Value_ConductanceQuantum
  - http://qudt.org/vocab/constant/Value_ConductanceQuantum expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/quantitykind/LineicLogarithmicRatio
  - http://qudt.org/vocab/quantitykind/LineicLogarithmicRatio expected at most 1 uses of path qudt:plainTextDescription
http://qudt.org/vocab/constant/Value_AlphaParticleMassEnergyEquivalentInMeV
  - http://qudt.org/vocab/constant/Value_AlphaParticleMassEnergyEquivalentInMeV expected at most 1 uses of path qudt:standardUncertainty
http://speckle.xyz/streams/bf7685a6aa/objects/8241f758b2eca371b816d0aa32a4a21e
  - http://speckle.xyz/streams/bf7685a6aa/objects/7b2c9e560d7ad3bbb5ccd360227389ab on http://speckle.xyz/streams/bf7685a6aa/objects/8241f758b2eca371b816d0aa32a4a21e needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/7b2c9e560d7ad3bbb5ccd360227389ab on http://speckle.xyz/streams/bf7685a6aa/objects/8241f758b2eca371b816d0aa32a4a21e needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/MegaBQ
  - http://qudt.org/vocab/unit/MegaBQ expected at most 1 uses of path qudt:plainTextDescription
  - http://qudt.org/vocab/unit/MegaBQ expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MegaBQ expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/SpecificGibbsEnergy
  - http://qudt.org/vocab/unit/W-HR-PER-KiloGM on http://qudt.org/vocab/quantitykind/SpecificGibbsEnergy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/SpecificGibbsEnergy expected at most 1 uses of path qudt:plainTextDescription
  - http://qudt.org/vocab/quantitykind/SpecificGibbsEnergy expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/constant/Value_HelionMolarMass
  - http://qudt.org/vocab/constant/Value_HelionMolarMass expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/unit/MegaJ-PER-SEC
  - http://qudt.org/vocab/unit/MegaJ-PER-SEC expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MegaJ-PER-SEC expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/cedb236493be06cf88cfcc33106e59e0
  - http://speckle.xyz/streams/bf7685a6aa/objects/f031db8cf74c1d34f7ec9caaa44e707f on http://speckle.xyz/streams/bf7685a6aa/objects/cedb236493be06cf88cfcc33106e59e0 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/f031db8cf74c1d34f7ec9caaa44e707f on http://speckle.xyz/streams/bf7685a6aa/objects/cedb236493be06cf88cfcc33106e59e0 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/5ccd54e08f842df17e76b5a08c52e2fb
  - http://speckle.xyz/streams/bf7685a6aa/objects/38fc1c83ce7cd22674c69fd719e87f00 on http://speckle.xyz/streams/bf7685a6aa/objects/5ccd54e08f842df17e76b5a08c52e2fb needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/38fc1c83ce7cd22674c69fd719e87f00 on http://speckle.xyz/streams/bf7685a6aa/objects/5ccd54e08f842df17e76b5a08c52e2fb needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/52d8b75ae73c47490768204e4c3bebbc
  - http://speckle.xyz/streams/bf7685a6aa/objects/2bab3a834da573d903244a9902f78aa1 on http://speckle.xyz/streams/bf7685a6aa/objects/52d8b75ae73c47490768204e4c3bebbc needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/2bab3a834da573d903244a9902f78aa1 on http://speckle.xyz/streams/bf7685a6aa/objects/52d8b75ae73c47490768204e4c3bebbc needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/NanoS-PER-CentiM
  - http://qudt.org/vocab/unit/NanoS-PER-CentiM expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/NanoS-PER-CentiM expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/4f9b2ea6db4f3554642a20d70b9aeed4
  - http://speckle.xyz/streams/bf7685a6aa/objects/2bab3a834da573d903244a9902f78aa1 on http://speckle.xyz/streams/bf7685a6aa/objects/4f9b2ea6db4f3554642a20d70b9aeed4 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/2bab3a834da573d903244a9902f78aa1 on http://speckle.xyz/streams/bf7685a6aa/objects/4f9b2ea6db4f3554642a20d70b9aeed4 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/StructureFactor
  - http://qudt.org/vocab/quantitykind/StructureFactor expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/38e72ba025b55a9f4b7e065965b93d68
  - http://speckle.xyz/streams/bf7685a6aa/objects/12a37af4b50e5c925cc2fe8c5cfd161a on http://speckle.xyz/streams/bf7685a6aa/objects/38e72ba025b55a9f4b7e065965b93d68 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/12a37af4b50e5c925cc2fe8c5cfd161a on http://speckle.xyz/streams/bf7685a6aa/objects/38e72ba025b55a9f4b7e065965b93d68 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/EnergyPerSquareMagneticFluxDensity
  - http://qudt.org/vocab/quantitykind/EnergyPerSquareMagneticFluxDensity expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/da3026f349cc1b410e5747c941b5c3e7
  - http://speckle.xyz/streams/bf7685a6aa/objects/ca6cec87b2cfc139e5610127872951ea on http://speckle.xyz/streams/bf7685a6aa/objects/da3026f349cc1b410e5747c941b5c3e7 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/ca6cec87b2cfc139e5610127872951ea on http://speckle.xyz/streams/bf7685a6aa/objects/da3026f349cc1b410e5747c941b5c3e7 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/CostPerArea
  - http://qudt.org/vocab/unit/EUR-PER-M2 on http://qudt.org/vocab/quantitykind/CostPerArea needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/d1d5ff5350ec325b4b25a944a394ad17
  - http://speckle.xyz/streams/bf7685a6aa/objects/5c9925a4674bb4a61b33bb0452c6deaf on http://speckle.xyz/streams/bf7685a6aa/objects/d1d5ff5350ec325b4b25a944a394ad17 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/5c9925a4674bb4a61b33bb0452c6deaf on http://speckle.xyz/streams/bf7685a6aa/objects/d1d5ff5350ec325b4b25a944a394ad17 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/d109c24d4dd54f2a5c61ddb513c5b6b5
  - http://speckle.xyz/streams/bf7685a6aa/objects/2bab3a834da573d903244a9902f78aa1 on http://speckle.xyz/streams/bf7685a6aa/objects/d109c24d4dd54f2a5c61ddb513c5b6b5 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/2bab3a834da573d903244a9902f78aa1 on http://speckle.xyz/streams/bf7685a6aa/objects/d109c24d4dd54f2a5c61ddb513c5b6b5 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/Density
  - http://qudt.org/vocab/quantitykind/Density expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/unit/MegaV-A_Reactive-HR
  - http://qudt.org/vocab/unit/MegaV-A_Reactive-HR expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MegaV-A_Reactive-HR expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/constant/Value_NaturalUnitOfLength
  - http://qudt.org/vocab/constant/Value_NaturalUnitOfLength expected at most 1 uses of path qudt:standardUncertainty
http://speckle.xyz/streams/bf7685a6aa/objects/8308f3cd02bb6184858f4d768710d5cd
  - http://speckle.xyz/streams/bf7685a6aa/objects/e97571e2dfc45c32f85efb64c6ccba64 on http://speckle.xyz/streams/bf7685a6aa/objects/8308f3cd02bb6184858f4d768710d5cd needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e97571e2dfc45c32f85efb64c6ccba64 on http://speckle.xyz/streams/bf7685a6aa/objects/8308f3cd02bb6184858f4d768710d5cd needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/MolecularConcentration
  - http://qudt.org/vocab/unit/NUM-PER-MilliL on http://qudt.org/vocab/quantitykind/MolecularConcentration needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/MolecularConcentration expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/b81374e418d076e72c3e8a117a2f65d9
  - http://speckle.xyz/streams/bf7685a6aa/objects/ea809d7a6106eaba6d818bfdb3e3e5b9 on http://speckle.xyz/streams/bf7685a6aa/objects/b81374e418d076e72c3e8a117a2f65d9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/ea809d7a6106eaba6d818bfdb3e3e5b9 on http://speckle.xyz/streams/bf7685a6aa/objects/b81374e418d076e72c3e8a117a2f65d9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/ReflectanceFactor
  - http://qudt.org/vocab/quantitykind/ReflectanceFactor expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/747dcab17510f9c026e34c3c112d1b85
  - http://speckle.xyz/streams/bf7685a6aa/objects/11e2de971443671ebd78fe480e1cd147 on http://speckle.xyz/streams/bf7685a6aa/objects/747dcab17510f9c026e34c3c112d1b85 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/11e2de971443671ebd78fe480e1cd147 on http://speckle.xyz/streams/bf7685a6aa/objects/747dcab17510f9c026e34c3c112d1b85 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/4a923a8b9935228cbe196d543ccab4b1
  - http://speckle.xyz/streams/bf7685a6aa/objects/38de361c40151688ec4354659cc9e855 on http://speckle.xyz/streams/bf7685a6aa/objects/4a923a8b9935228cbe196d543ccab4b1 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/38de361c40151688ec4354659cc9e855 on http://speckle.xyz/streams/bf7685a6aa/objects/4a923a8b9935228cbe196d543ccab4b1 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/afffd31be19727b4557ad9f188a18a90
  - http://speckle.xyz/streams/bf7685a6aa/objects/0ad95ab1c7f34686f7ac100a0f473d42 on http://speckle.xyz/streams/bf7685a6aa/objects/afffd31be19727b4557ad9f188a18a90 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/0ad95ab1c7f34686f7ac100a0f473d42 on http://speckle.xyz/streams/bf7685a6aa/objects/afffd31be19727b4557ad9f188a18a90 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/KineticOrThermalEnergy
  - http://qudt.org/vocab/unit/NanoJ on http://qudt.org/vocab/quantitykind/KineticOrThermalEnergy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/THERM_US on http://qudt.org/vocab/quantitykind/KineticOrThermalEnergy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PicoJ on http://qudt.org/vocab/quantitykind/KineticOrThermalEnergy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/THERM_EC on http://qudt.org/vocab/quantitykind/KineticOrThermalEnergy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/KineticOrThermalEnergy expected at most 1 uses of path qudt:plainTextDescription
http://qudt.org/vocab/quantitykind/BloodGlucoseLevel
  - http://qudt.org/vocab/quantitykind/BloodGlucoseLevel expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/unit/PicoMOL-PER-M-W-SEC
  - http://qudt.org/vocab/unit/PicoMOL-PER-M-W-SEC expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/PicoMOL-PER-M-W-SEC expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/47b0b79b8f5368b331026e743a4ec7f6
  - http://speckle.xyz/streams/bf7685a6aa/objects/874a3138d2a825dffee742833b559af8 on http://speckle.xyz/streams/bf7685a6aa/objects/47b0b79b8f5368b331026e743a4ec7f6 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/874a3138d2a825dffee742833b559af8 on http://speckle.xyz/streams/bf7685a6aa/objects/47b0b79b8f5368b331026e743a4ec7f6 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/ccaaad126019e188628e5f2f4d8626cc
  - http://speckle.xyz/streams/bf7685a6aa/objects/9bbb96d450ec2617aa02cc6f1b800bba on http://speckle.xyz/streams/bf7685a6aa/objects/ccaaad126019e188628e5f2f4d8626cc needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/9bbb96d450ec2617aa02cc6f1b800bba on http://speckle.xyz/streams/bf7685a6aa/objects/ccaaad126019e188628e5f2f4d8626cc needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/77f2ae53eae77c8b6f30f8daf8883086
  - http://speckle.xyz/streams/bf7685a6aa/objects/2bab3a834da573d903244a9902f78aa1 on http://speckle.xyz/streams/bf7685a6aa/objects/77f2ae53eae77c8b6f30f8daf8883086 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/2bab3a834da573d903244a9902f78aa1 on http://speckle.xyz/streams/bf7685a6aa/objects/77f2ae53eae77c8b6f30f8daf8883086 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/7c0a7f6cf478bcca0d243fc5d674f4c4
  - http://speckle.xyz/streams/bf7685a6aa/objects/a425da88edbb46d1210f95207abcb30a on http://speckle.xyz/streams/bf7685a6aa/objects/7c0a7f6cf478bcca0d243fc5d674f4c4 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/a425da88edbb46d1210f95207abcb30a on http://speckle.xyz/streams/bf7685a6aa/objects/7c0a7f6cf478bcca0d243fc5d674f4c4 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/ad3846e1fce7ec216f5e8614a5191b3b
  - http://speckle.xyz/streams/bf7685a6aa/objects/22ee737a989391acee4ea60354e91210 on http://speckle.xyz/streams/bf7685a6aa/objects/ad3846e1fce7ec216f5e8614a5191b3b needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/22ee737a989391acee4ea60354e91210 on http://speckle.xyz/streams/bf7685a6aa/objects/ad3846e1fce7ec216f5e8614a5191b3b needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/SpectralConcentrationOfRadiantEnergyDensity
  - http://qudt.org/vocab/quantitykind/SpectralConcentrationOfRadiantEnergyDensity expected at most 1 uses of path qudt:plainTextDescription
http://qudt.org/vocab/quantitykind/LuminousIntensityDistribution
  - http://qudt.org/vocab/unit/CD-PER-KiloLM on http://qudt.org/vocab/quantitykind/LuminousIntensityDistribution needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/LuminousIntensityDistribution expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/constant/Value_AngstromStar
  - http://qudt.org/vocab/constant/Value_AngstromStar expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/quantitykind/PictureElement
  - http://qudt.org/vocab/unit/PIXEL on http://qudt.org/vocab/quantitykind/PictureElement needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/PictureElement expected at most 1 uses of path qudt:plainTextDescription
http://speckle.xyz/streams/bf7685a6aa/objects/4ae3c623732a3eb6d55f8a7ce24d7b5b
  - http://speckle.xyz/streams/bf7685a6aa/objects/436cbdf042b2430d478faaa32f8345b5 on http://speckle.xyz/streams/bf7685a6aa/objects/4ae3c623732a3eb6d55f8a7ce24d7b5b needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/436cbdf042b2430d478faaa32f8345b5 on http://speckle.xyz/streams/bf7685a6aa/objects/4ae3c623732a3eb6d55f8a7ce24d7b5b needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/TON_UK
  - http://qudt.org/vocab/unit/TON_UK expected at most 1 uses of path qudt:plainTextDescription
http://qudt.org/vocab/unit/SolarMass
  - http://qudt.org/vocab/unit/SolarMass expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/SolarMass expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H-1T-3D0
  - http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H-1T-3D0 expected at most 1 uses of path qudt:latexDefinition
http://qudt.org/vocab/constant/Value_ProtonMassEnergyEquivalentInMeV
  - http://qudt.org/vocab/constant/Value_ProtonMassEnergyEquivalentInMeV expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/quantitykind/AngularAcceleration
  - http://qudt.org/vocab/quantitykind/AngularAcceleration expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/1a82a3f9136fed3d1d4acd185d6aad14
  - http://speckle.xyz/streams/bf7685a6aa/objects/44f7d7dae3b62130ad8fda3f589fc508 on http://speckle.xyz/streams/bf7685a6aa/objects/1a82a3f9136fed3d1d4acd185d6aad14 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/44f7d7dae3b62130ad8fda3f589fc508 on http://speckle.xyz/streams/bf7685a6aa/objects/1a82a3f9136fed3d1d4acd185d6aad14 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/dimensionvector/A1E0L0I0M-1H0T0D0
  - http://qudt.org/vocab/dimensionvector/A1E0L0I0M-1H0T0D0 expected at most 1 uses of path qudt:latexDefinition
http://speckle.xyz/streams/bf7685a6aa/objects/195e4b239f77111aacd6f176a6dbb632
  - http://speckle.xyz/streams/bf7685a6aa/objects/e2c2fcb66699bae88ba79c422b644168 on http://speckle.xyz/streams/bf7685a6aa/objects/195e4b239f77111aacd6f176a6dbb632 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e2c2fcb66699bae88ba79c422b644168 on http://speckle.xyz/streams/bf7685a6aa/objects/195e4b239f77111aacd6f176a6dbb632 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/NanoGM-PER-KiloGM
  - http://qudt.org/vocab/unit/NanoGM-PER-KiloGM expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/NanoGM-PER-KiloGM expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/SoundParticleDisplacement
  - http://qudt.org/vocab/unit/ZOLL on http://qudt.org/vocab/quantitykind/SoundParticleDisplacement needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/SoundParticleDisplacement expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/CHAIN_US on http://qudt.org/vocab/quantitykind/SoundParticleDisplacement needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GA_Charriere on http://qudt.org/vocab/quantitykind/SoundParticleDisplacement needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/BitTransmissionRate
  - http://qudt.org/vocab/unit/OCTET-PER-SEC on http://qudt.org/vocab/quantitykind/BitTransmissionRate needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/BitTransmissionRate expected at most 1 uses of path qudt:plainTextDescription
http://speckle.xyz/streams/bf7685a6aa/objects/bdba8956f58f0194cd1d5efe981fcbb3
  - http://speckle.xyz/streams/bf7685a6aa/objects/768970d137816ceece03741af232ae99 on http://speckle.xyz/streams/bf7685a6aa/objects/bdba8956f58f0194cd1d5efe981fcbb3 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/768970d137816ceece03741af232ae99 on http://speckle.xyz/streams/bf7685a6aa/objects/bdba8956f58f0194cd1d5efe981fcbb3 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/be41dc3c816f5f0efe4cacb4c19182d7
  - http://speckle.xyz/streams/bf7685a6aa/objects/e8908b5eec592c1e9e520605ad787a0c on http://speckle.xyz/streams/bf7685a6aa/objects/be41dc3c816f5f0efe4cacb4c19182d7 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e8908b5eec592c1e9e520605ad787a0c on http://speckle.xyz/streams/bf7685a6aa/objects/be41dc3c816f5f0efe4cacb4c19182d7 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/045f7e1fba255fb806244607d79a79d6
  - http://speckle.xyz/streams/bf7685a6aa/objects/18f8a94e26f42bba94e987e597ddfd5d on http://speckle.xyz/streams/bf7685a6aa/objects/045f7e1fba255fb806244607d79a79d6 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/18f8a94e26f42bba94e987e597ddfd5d on http://speckle.xyz/streams/bf7685a6aa/objects/045f7e1fba255fb806244607d79a79d6 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/ee251dfa82d6a64f98c43b5e726ee4a9
  - http://speckle.xyz/streams/bf7685a6aa/objects/bd4c1bbaf855ba85dd10beedc3c5f7f4 on http://speckle.xyz/streams/bf7685a6aa/objects/ee251dfa82d6a64f98c43b5e726ee4a9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/bd4c1bbaf855ba85dd10beedc3c5f7f4 on http://speckle.xyz/streams/bf7685a6aa/objects/ee251dfa82d6a64f98c43b5e726ee4a9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/MegaJ-PER-K
  - http://qudt.org/vocab/unit/MegaJ-PER-K expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MegaJ-PER-K expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/Gain
  - http://qudt.org/vocab/quantitykind/Gain expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/PPQ on http://qudt.org/vocab/quantitykind/Gain needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PPT on http://qudt.org/vocab/quantitykind/Gain needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H0T-2D0
  - http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H0T-2D0 expected at most 1 uses of path qudt:latexDefinition
http://speckle.xyz/streams/bf7685a6aa/objects/614b28493362d3ff7f4264a75d332eda
  - http://speckle.xyz/streams/bf7685a6aa/objects/ca6cec87b2cfc139e5610127872951ea on http://speckle.xyz/streams/bf7685a6aa/objects/614b28493362d3ff7f4264a75d332eda needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/ca6cec87b2cfc139e5610127872951ea on http://speckle.xyz/streams/bf7685a6aa/objects/614b28493362d3ff7f4264a75d332eda needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/a06198919dea5069599efee99f0031fd
  - http://speckle.xyz/streams/bf7685a6aa/objects/2ae3884269b0a46e5ece05ce9e1fcd71 on http://speckle.xyz/streams/bf7685a6aa/objects/a06198919dea5069599efee99f0031fd needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/2ae3884269b0a46e5ece05ce9e1fcd71 on http://speckle.xyz/streams/bf7685a6aa/objects/a06198919dea5069599efee99f0031fd needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/HydraulicPermeability
  - http://qudt.org/vocab/quantitykind/HydraulicPermeability expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/KiloM2 on http://qudt.org/vocab/quantitykind/HydraulicPermeability needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/a272590d06349fa77511ab5b996bb297
  - http://speckle.xyz/streams/bf7685a6aa/objects/570de36b94b8ce5c1670646dcd7526e1 on http://speckle.xyz/streams/bf7685a6aa/objects/a272590d06349fa77511ab5b996bb297 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/570de36b94b8ce5c1670646dcd7526e1 on http://speckle.xyz/streams/bf7685a6aa/objects/a272590d06349fa77511ab5b996bb297 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/7c94044df8c58adc0ef44e7adb92a486
  - http://speckle.xyz/streams/bf7685a6aa/objects/d48d37e3edb4c6def09923403014eb03 on http://speckle.xyz/streams/bf7685a6aa/objects/7c94044df8c58adc0ef44e7adb92a486 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/d48d37e3edb4c6def09923403014eb03 on http://speckle.xyz/streams/bf7685a6aa/objects/7c94044df8c58adc0ef44e7adb92a486 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/constant/Value_MuonMagneticMomentToNuclearMagnetonRatio
  - http://qudt.org/vocab/constant/Value_MuonMagneticMomentToNuclearMagnetonRatio expected at most 1 uses of path qudt:standardUncertainty
http://speckle.xyz/streams/bf7685a6aa/objects/35c177e1fb82bd4de2ae38a75fe3040b
  - http://speckle.xyz/streams/bf7685a6aa/objects/c59d0357cccce2c360fa88610cfb9dc0 on http://speckle.xyz/streams/bf7685a6aa/objects/35c177e1fb82bd4de2ae38a75fe3040b needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/c59d0357cccce2c360fa88610cfb9dc0 on http://speckle.xyz/streams/bf7685a6aa/objects/35c177e1fb82bd4de2ae38a75fe3040b needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/PPM-PER-K
  - http://qudt.org/vocab/unit/PPM-PER-K expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/PPM-PER-K expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/MicroGM-PER-M2-DAY
  - http://qudt.org/vocab/unit/MicroGM-PER-M2-DAY expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MicroGM-PER-M2-DAY expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/EinsteinCoefficients
  - http://qudt.org/vocab/unit/SEC-PER-KiloGM on http://qudt.org/vocab/quantitykind/EinsteinCoefficients needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/CENTER-OF-GRAVITY_Z
  - http://qudt.org/vocab/unit/GA_Charriere on http://qudt.org/vocab/quantitykind/CENTER-OF-GRAVITY_Z needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/ZOLL on http://qudt.org/vocab/quantitykind/CENTER-OF-GRAVITY_Z needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CHAIN_US on http://qudt.org/vocab/quantitykind/CENTER-OF-GRAVITY_Z needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/unit/MegaPA-M3-PER-SEC
  - http://qudt.org/vocab/unit/MegaPA-M3-PER-SEC expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MegaPA-M3-PER-SEC expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/GeneralizedVelocity
  - http://qudt.org/vocab/quantitykind/GeneralizedVelocity expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/7d654fcddd6dd70c4491ad2e68543a21
  - http://speckle.xyz/streams/bf7685a6aa/objects/5751a7a8490e489a1a00976905f9b01b on http://speckle.xyz/streams/bf7685a6aa/objects/7d654fcddd6dd70c4491ad2e68543a21 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/5751a7a8490e489a1a00976905f9b01b on http://speckle.xyz/streams/bf7685a6aa/objects/7d654fcddd6dd70c4491ad2e68543a21 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/Voltage
  - http://qudt.org/vocab/unit/PicoV on http://qudt.org/vocab/quantitykind/Voltage needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/FemtoV on http://qudt.org/vocab/quantitykind/Voltage needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/NanoV on http://qudt.org/vocab/quantitykind/Voltage needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GigaV on http://qudt.org/vocab/quantitykind/Voltage needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/TeraV on http://qudt.org/vocab/quantitykind/Voltage needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/b610c78383402014a921a4db7c0ef617
  - http://speckle.xyz/streams/bf7685a6aa/objects/ca6cec87b2cfc139e5610127872951ea on http://speckle.xyz/streams/bf7685a6aa/objects/b610c78383402014a921a4db7c0ef617 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/ca6cec87b2cfc139e5610127872951ea on http://speckle.xyz/streams/bf7685a6aa/objects/b610c78383402014a921a4db7c0ef617 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/ElectricChargePerMass
  - http://qudt.org/vocab/unit/A-HR-PER-KiloGM on http://qudt.org/vocab/quantitykind/ElectricChargePerMass needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T2D0
  - http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T2D0 expected at most 1 uses of path qudt:latexDefinition
http://qudt.org/vocab/quantitykind/InitialExpansionRatio
  - http://qudt.org/vocab/unit/PER-MegaK on http://qudt.org/vocab/quantitykind/InitialExpansionRatio needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliM-PER-DEG_C-M on http://qudt.org/vocab/quantitykind/InitialExpansionRatio needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PER-DEG_F on http://qudt.org/vocab/quantitykind/InitialExpansionRatio needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/M-PER-DEG_C-M on http://qudt.org/vocab/quantitykind/InitialExpansionRatio needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/b710622bb90545625acffe708861f177
  - http://speckle.xyz/streams/bf7685a6aa/objects/06c67bfcd6d2f5b575f38dba0f51b672 on http://speckle.xyz/streams/bf7685a6aa/objects/b710622bb90545625acffe708861f177 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/06c67bfcd6d2f5b575f38dba0f51b672 on http://speckle.xyz/streams/bf7685a6aa/objects/b710622bb90545625acffe708861f177 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/67343278e3145dcc020e5393e28e2226
  - http://speckle.xyz/streams/bf7685a6aa/objects/4450fafa9b35f62c2043d9df9a7f700d on http://speckle.xyz/streams/bf7685a6aa/objects/67343278e3145dcc020e5393e28e2226 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/4450fafa9b35f62c2043d9df9a7f700d on http://speckle.xyz/streams/bf7685a6aa/objects/67343278e3145dcc020e5393e28e2226 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/WebTime
  - http://qudt.org/vocab/unit/POISE-PER-PA on http://qudt.org/vocab/quantitykind/WebTime needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/DeciSEC on http://qudt.org/vocab/quantitykind/WebTime needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/FemtoSEC on http://qudt.org/vocab/quantitykind/WebTime needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/AttoSEC on http://qudt.org/vocab/quantitykind/WebTime needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MegaSEC on http://qudt.org/vocab/quantitykind/WebTime needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/YR_Metrology on http://qudt.org/vocab/quantitykind/WebTime needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/unit/AU
  - http://qudt.org/vocab/unit/AU expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/AU expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/C_Stat-PER-MOL
  - http://qudt.org/vocab/unit/C_Stat-PER-MOL expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/C_Stat-PER-MOL expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/31a6a915a4ced03b68f0cbe1ee175e76
  - http://speckle.xyz/streams/bf7685a6aa/objects/03183bd47ce710193f9d15449df4add8 on http://speckle.xyz/streams/bf7685a6aa/objects/31a6a915a4ced03b68f0cbe1ee175e76 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/03183bd47ce710193f9d15449df4add8 on http://speckle.xyz/streams/bf7685a6aa/objects/31a6a915a4ced03b68f0cbe1ee175e76 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/934d913abd86dc9e3b68c6abfc885db5
  - http://speckle.xyz/streams/bf7685a6aa/objects/dda6fc2cd9f746d9e9297e0859f5eb4d on http://speckle.xyz/streams/bf7685a6aa/objects/934d913abd86dc9e3b68c6abfc885db5 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/dda6fc2cd9f746d9e9297e0859f5eb4d on http://speckle.xyz/streams/bf7685a6aa/objects/934d913abd86dc9e3b68c6abfc885db5 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/SpecificHeatCapacityAtSaturation
  - http://qudt.org/vocab/unit/J-PER-GM-DEG_C on http://qudt.org/vocab/quantitykind/SpecificHeatCapacityAtSaturation needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/SpecificHeatCapacityAtSaturation expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/J-PER-KiloGM-DEG_C on http://qudt.org/vocab/quantitykind/SpecificHeatCapacityAtSaturation needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/3a0e8671b3d9e6e81aac4391f935aa2c
  - http://speckle.xyz/streams/bf7685a6aa/objects/098d381126c26c79190f714830a34e51 on http://speckle.xyz/streams/bf7685a6aa/objects/3a0e8671b3d9e6e81aac4391f935aa2c needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/098d381126c26c79190f714830a34e51 on http://speckle.xyz/streams/bf7685a6aa/objects/3a0e8671b3d9e6e81aac4391f935aa2c needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/ByteRate
  - http://qudt.org/vocab/unit/MegaBYTE-PER-SEC on http://qudt.org/vocab/quantitykind/ByteRate needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GigaBYTE-PER-SEC on http://qudt.org/vocab/quantitykind/ByteRate needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/BYTE-PER-SEC on http://qudt.org/vocab/quantitykind/ByteRate needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/unit/MicroL-PER-L
  - http://qudt.org/vocab/unit/MicroL-PER-L expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MicroL-PER-L expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/AmountOfSubstancePerUnitMassPressure
  - http://qudt.org/vocab/unit/MOL-PER-KiloGM-BAR on http://qudt.org/vocab/quantitykind/AmountOfSubstancePerUnitMassPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/AmountOfSubstancePerUnitMassPressure expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/c0cd67df3a7beb3fc3a80a907648fc45
  - http://speckle.xyz/streams/bf7685a6aa/objects/e8908b5eec592c1e9e520605ad787a0c on http://speckle.xyz/streams/bf7685a6aa/objects/c0cd67df3a7beb3fc3a80a907648fc45 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e8908b5eec592c1e9e520605ad787a0c on http://speckle.xyz/streams/bf7685a6aa/objects/c0cd67df3a7beb3fc3a80a907648fc45 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/LunarMass
  - http://qudt.org/vocab/unit/LunarMass expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/LunarMass expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/PERCENT-PER-WK
  - http://qudt.org/vocab/unit/PERCENT-PER-WK expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/PERCENT-PER-WK expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/AT-PER-IN
  - http://qudt.org/vocab/unit/AT-PER-IN expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/InitialNozzleThroatDiameter
  - http://qudt.org/vocab/unit/ZOLL on http://qudt.org/vocab/quantitykind/InitialNozzleThroatDiameter needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CHAIN_US on http://qudt.org/vocab/quantitykind/InitialNozzleThroatDiameter needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GA_Charriere on http://qudt.org/vocab/quantitykind/InitialNozzleThroatDiameter needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/constant/Value_TritonMolarMass
  - http://qudt.org/vocab/constant/Value_TritonMolarMass expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/quantitykind/InternalEnergy
  - http://qudt.org/vocab/quantitykind/InternalEnergy expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/PicoJ on http://qudt.org/vocab/quantitykind/InternalEnergy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/THERM_US on http://qudt.org/vocab/quantitykind/InternalEnergy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/NanoJ on http://qudt.org/vocab/quantitykind/InternalEnergy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/THERM_EC on http://qudt.org/vocab/quantitykind/InternalEnergy needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/a34029a01370434e991aeb5aad51cf14
  - http://speckle.xyz/streams/bf7685a6aa/objects/c1f8ba2020eb6468b1d37e4445924aa6 on http://speckle.xyz/streams/bf7685a6aa/objects/a34029a01370434e991aeb5aad51cf14 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/c1f8ba2020eb6468b1d37e4445924aa6 on http://speckle.xyz/streams/bf7685a6aa/objects/a34029a01370434e991aeb5aad51cf14 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/RestMass
  - http://qudt.org/vocab/unit/MOMME_Textile on http://qudt.org/vocab/quantitykind/RestMass needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MOMME_Pearl on http://qudt.org/vocab/quantitykind/RestMass needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MegaTONNE on http://qudt.org/vocab/quantitykind/RestMass needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/TON on http://qudt.org/vocab/quantitykind/RestMass needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MegaTON on http://qudt.org/vocab/quantitykind/RestMass needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PFUND on http://qudt.org/vocab/quantitykind/RestMass needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/constant/Value_HelionElectronMassRatio
  - http://qudt.org/vocab/constant/Value_HelionElectronMassRatio expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/constant/Value_PlanckConstantOver2PiTimesCInMeVFm
  - http://qudt.org/vocab/constant/Value_PlanckConstantOver2PiTimesCInMeVFm expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/constant/StefanBoltzmannConstant
  - http://qudt.org/vocab/constant/StefanBoltzmannConstant expected at most 1 uses of path qudt:plainTextDescription
http://qudt.org/vocab/quantitykind/MassOfTheEarth
  - http://qudt.org/vocab/unit/MegaTONNE on http://qudt.org/vocab/quantitykind/MassOfTheEarth needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MegaTON on http://qudt.org/vocab/quantitykind/MassOfTheEarth needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/MassOfTheEarth expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/TON on http://qudt.org/vocab/quantitykind/MassOfTheEarth needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MOMME_Textile on http://qudt.org/vocab/quantitykind/MassOfTheEarth needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PFUND on http://qudt.org/vocab/quantitykind/MassOfTheEarth needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MOMME_Pearl on http://qudt.org/vocab/quantitykind/MassOfTheEarth needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/unit/NanoC
  - http://qudt.org/vocab/unit/NanoC expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/NanoC expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/537836beb89b62f713c2cd46cc62a9d5
  - http://speckle.xyz/streams/bf7685a6aa/objects/03183bd47ce710193f9d15449df4add8 on http://speckle.xyz/streams/bf7685a6aa/objects/537836beb89b62f713c2cd46cc62a9d5 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/03183bd47ce710193f9d15449df4add8 on http://speckle.xyz/streams/bf7685a6aa/objects/537836beb89b62f713c2cd46cc62a9d5 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/MassDensity
  - http://qudt.org/vocab/quantitykind/MassDensity expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/unit/BAR
  - http://qudt.org/vocab/unit/BAR expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/BAR expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/SecondAxialMomentOfArea
  - http://qudt.org/vocab/quantitykind/SecondAxialMomentOfArea expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/FT4 on http://qudt.org/vocab/quantitykind/SecondAxialMomentOfArea needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CentiM4 on http://qudt.org/vocab/quantitykind/SecondAxialMomentOfArea needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/1cf4c28b516fa9aaaa54455b6848a567
  - http://speckle.xyz/streams/bf7685a6aa/objects/2bab3a834da573d903244a9902f78aa1 on http://speckle.xyz/streams/bf7685a6aa/objects/1cf4c28b516fa9aaaa54455b6848a567 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/2bab3a834da573d903244a9902f78aa1 on http://speckle.xyz/streams/bf7685a6aa/objects/1cf4c28b516fa9aaaa54455b6848a567 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/5e3059192f5a86d51e1903d656e9ca41
  - http://speckle.xyz/streams/bf7685a6aa/objects/f1fa1d87c09023b9c95ee3622445ae59 on http://speckle.xyz/streams/bf7685a6aa/objects/5e3059192f5a86d51e1903d656e9ca41 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/f1fa1d87c09023b9c95ee3622445ae59 on http://speckle.xyz/streams/bf7685a6aa/objects/5e3059192f5a86d51e1903d656e9ca41 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/LoudnessLevel
  - http://qudt.org/vocab/unit/FLIGHT on http://qudt.org/vocab/quantitykind/LoudnessLevel needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/LoudnessLevel expected at most 1 uses of path qudt:plainTextDescription
http://speckle.xyz/streams/bf7685a6aa/objects/9ab2d6f9e783125fc275d190bf785937
  - http://speckle.xyz/streams/bf7685a6aa/objects/e192c1307d2ac8dcde3ff49ce414db81 on http://speckle.xyz/streams/bf7685a6aa/objects/9ab2d6f9e783125fc275d190bf785937 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e192c1307d2ac8dcde3ff49ce414db81 on http://speckle.xyz/streams/bf7685a6aa/objects/9ab2d6f9e783125fc275d190bf785937 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/Wavenumber
  - http://qudt.org/vocab/quantitykind/Wavenumber expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/3245e720efff06a730628ca5647c11d2
  - http://speckle.xyz/streams/bf7685a6aa/objects/e8908b5eec592c1e9e520605ad787a0c on http://speckle.xyz/streams/bf7685a6aa/objects/3245e720efff06a730628ca5647c11d2 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e8908b5eec592c1e9e520605ad787a0c on http://speckle.xyz/streams/bf7685a6aa/objects/3245e720efff06a730628ca5647c11d2 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/EccentricityOfOrbit
  - http://qudt.org/vocab/unit/PPQ on http://qudt.org/vocab/quantitykind/EccentricityOfOrbit needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PPT on http://qudt.org/vocab/quantitykind/EccentricityOfOrbit needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/EccentricityOfOrbit expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/unit/TeraHZ
  - http://qudt.org/vocab/unit/TeraHZ expected at most 1 uses of path qudt:plainTextDescription
  - http://qudt.org/vocab/unit/TeraHZ expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/TeraHZ expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/ComplexFrequency_Real
  - http://qudt.org/vocab/unit/PERCENT-PER-MO on http://qudt.org/vocab/quantitykind/ComplexFrequency_Real needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PetaHZ on http://qudt.org/vocab/quantitykind/ComplexFrequency_Real needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PERCENT-PER-YR on http://qudt.org/vocab/quantitykind/ComplexFrequency_Real needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliHZ on http://qudt.org/vocab/quantitykind/ComplexFrequency_Real needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/ec872019ea6e1e30fe83a41065dcca20
  - http://speckle.xyz/streams/bf7685a6aa/objects/66cce2bdb57b61f2d10f6cee8c508243 on http://speckle.xyz/streams/bf7685a6aa/objects/ec872019ea6e1e30fe83a41065dcca20 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/66cce2bdb57b61f2d10f6cee8c508243 on http://speckle.xyz/streams/bf7685a6aa/objects/ec872019ea6e1e30fe83a41065dcca20 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/PicoW-PER-CentiM2-L
  - http://qudt.org/vocab/unit/PicoW-PER-CentiM2-L expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/PicoW-PER-CentiM2-L expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/MilliL-PER-DAY
  - http://qudt.org/vocab/unit/MilliL-PER-DAY expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MilliL-PER-DAY expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/MegaHZ-PER-K
  - http://qudt.org/vocab/unit/MegaHZ-PER-K expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MegaHZ-PER-K expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/7ae62fc25b0d6d3bbf42b5a073eb4bcb
  - http://speckle.xyz/streams/bf7685a6aa/objects/4889cd9870fe6a53e7dd4c43f0048a0a on http://speckle.xyz/streams/bf7685a6aa/objects/7ae62fc25b0d6d3bbf42b5a073eb4bcb needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/4889cd9870fe6a53e7dd4c43f0048a0a on http://speckle.xyz/streams/bf7685a6aa/objects/7ae62fc25b0d6d3bbf42b5a073eb4bcb needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T-2D0
  - http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T-2D0 expected at most 1 uses of path qudt:latexDefinition
http://qudt.org/vocab/quantitykind/MassFluxDensity
  - http://qudt.org/vocab/quantitykind/MassFluxDensity expected at most 1 uses of path qudt:plainTextDescription
  - http://qudt.org/vocab/unit/MicroGM-PER-CentiM2-WK on http://qudt.org/vocab/quantitykind/MassFluxDensity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/NanoGM-PER-CentiM2-DAY on http://qudt.org/vocab/quantitykind/MassFluxDensity needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/0c055bf16647f711f1a4d07a50ce0a52
  - http://speckle.xyz/streams/bf7685a6aa/objects/03183bd47ce710193f9d15449df4add8 on http://speckle.xyz/streams/bf7685a6aa/objects/0c055bf16647f711f1a4d07a50ce0a52 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/03183bd47ce710193f9d15449df4add8 on http://speckle.xyz/streams/bf7685a6aa/objects/0c055bf16647f711f1a4d07a50ce0a52 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/976785b4f436e6ebab46d681e91d69fa
  - http://speckle.xyz/streams/bf7685a6aa/objects/d65f8c8c63863a9955cad6647fa559f4 on http://speckle.xyz/streams/bf7685a6aa/objects/976785b4f436e6ebab46d681e91d69fa needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/d65f8c8c63863a9955cad6647fa559f4 on http://speckle.xyz/streams/bf7685a6aa/objects/976785b4f436e6ebab46d681e91d69fa needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/LuminousFlux
  - http://qudt.org/vocab/quantitykind/LuminousFlux expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/KiloLM on http://qudt.org/vocab/quantitykind/LuminousFlux needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/SeebeckCoefficient
  - http://qudt.org/vocab/quantitykind/SeebeckCoefficient expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/unit/MegaEV-FemtoM
  - http://qudt.org/vocab/unit/MegaEV-FemtoM expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MegaEV-FemtoM expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/ba117f180ee2cfc34f6504d814e91ca8
  - http://speckle.xyz/streams/bf7685a6aa/objects/f031db8cf74c1d34f7ec9caaa44e707f on http://speckle.xyz/streams/bf7685a6aa/objects/ba117f180ee2cfc34f6504d814e91ca8 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/f031db8cf74c1d34f7ec9caaa44e707f on http://speckle.xyz/streams/bf7685a6aa/objects/ba117f180ee2cfc34f6504d814e91ca8 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/SpecificVolume
  - http://qudt.org/vocab/unit/CentiM3-PER-GM on http://qudt.org/vocab/quantitykind/SpecificVolume needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/IN3-PER-LB on http://qudt.org/vocab/quantitykind/SpecificVolume needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/FT3-PER-LB on http://qudt.org/vocab/quantitykind/SpecificVolume needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/SpecificVolume expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/DeciM3-PER-KiloGM on http://qudt.org/vocab/quantitykind/SpecificVolume needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/49e2d3c7191696a4c424b73544128237
  - http://speckle.xyz/streams/bf7685a6aa/objects/9a31f4bc3b0b7b0d9e646386a04f1dd7 on http://speckle.xyz/streams/bf7685a6aa/objects/49e2d3c7191696a4c424b73544128237 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/9a31f4bc3b0b7b0d9e646386a04f1dd7 on http://speckle.xyz/streams/bf7685a6aa/objects/49e2d3c7191696a4c424b73544128237 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/51a9b617ab67440277a50686e17f3abf
  - http://speckle.xyz/streams/bf7685a6aa/objects/5751a7a8490e489a1a00976905f9b01b on http://speckle.xyz/streams/bf7685a6aa/objects/51a9b617ab67440277a50686e17f3abf needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/5751a7a8490e489a1a00976905f9b01b on http://speckle.xyz/streams/bf7685a6aa/objects/51a9b617ab67440277a50686e17f3abf needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/AbsoluteTypographicMeasurement
  - http://qudt.org/vocab/unit/GA_Charriere on http://qudt.org/vocab/quantitykind/AbsoluteTypographicMeasurement needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/ZOLL on http://qudt.org/vocab/quantitykind/AbsoluteTypographicMeasurement needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CHAIN_US on http://qudt.org/vocab/quantitykind/AbsoluteTypographicMeasurement needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/constant/Value_PlanckConstant
  - http://qudt.org/vocab/constant/Value_PlanckConstant expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/quantitykind/ElectromagneticPermeability
  - http://qudt.org/vocab/quantitykind/ElectromagneticPermeability expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/constant/Value_MuonMassInAtomicMassUnit
  - http://qudt.org/vocab/constant/Value_MuonMassInAtomicMassUnit expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/unit/ARCMIN
  - http://qudt.org/vocab/unit/ARCMIN expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/ARCMIN expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/MX
  - http://qudt.org/vocab/unit/MX expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MX expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/bcbacada7aa9f014f9d52cdf4d5a4749
  - http://speckle.xyz/streams/bf7685a6aa/objects/c1e7bac9cc9cff56ce6fff37c81afd27 on http://speckle.xyz/streams/bf7685a6aa/objects/bcbacada7aa9f014f9d52cdf4d5a4749 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/c1e7bac9cc9cff56ce6fff37c81afd27 on http://speckle.xyz/streams/bf7685a6aa/objects/bcbacada7aa9f014f9d52cdf4d5a4749 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/44360ff68e9ebe5e4be39f181534992b
  - http://speckle.xyz/streams/bf7685a6aa/objects/ea809d7a6106eaba6d818bfdb3e3e5b9 on http://speckle.xyz/streams/bf7685a6aa/objects/44360ff68e9ebe5e4be39f181534992b needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/ea809d7a6106eaba6d818bfdb3e3e5b9 on http://speckle.xyz/streams/bf7685a6aa/objects/44360ff68e9ebe5e4be39f181534992b needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/MassicActivity
  - http://qudt.org/vocab/unit/CI-PER-KiloGM on http://qudt.org/vocab/quantitykind/MassicActivity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/MassicActivity expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/MegaBQ-PER-KiloGM on http://qudt.org/vocab/quantitykind/MassicActivity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloBQ-PER-KiloGM on http://qudt.org/vocab/quantitykind/MassicActivity needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/constant/Value_SackurTetrodeConstant1K100KPa
  - http://qudt.org/vocab/constant/Value_SackurTetrodeConstant1K100KPa expected at most 1 uses of path qudt:standardUncertainty
http://speckle.xyz/streams/bf7685a6aa/objects/b191f7ab791a39680eb76473415d7714
  - http://speckle.xyz/streams/bf7685a6aa/objects/c8fb46fc939728e45252377481a55e6a on http://speckle.xyz/streams/bf7685a6aa/objects/b191f7ab791a39680eb76473415d7714 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/c8fb46fc939728e45252377481a55e6a on http://speckle.xyz/streams/bf7685a6aa/objects/b191f7ab791a39680eb76473415d7714 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/e730564f62d6de672adb813c713919b3
  - http://speckle.xyz/streams/bf7685a6aa/objects/18dcb5c6b06a1df3084d52f7b75783a1 on http://speckle.xyz/streams/bf7685a6aa/objects/e730564f62d6de672adb813c713919b3 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/18dcb5c6b06a1df3084d52f7b75783a1 on http://speckle.xyz/streams/bf7685a6aa/objects/e730564f62d6de672adb813c713919b3 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/MegaJ-PER-M3
  - http://qudt.org/vocab/unit/MegaJ-PER-M3 expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MegaJ-PER-M3 expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/ConductiveHeatTransferRate
  - http://qudt.org/vocab/quantitykind/ConductiveHeatTransferRate expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/constant/Value_NeutronGyromagneticRatioOver2Pi
  - http://qudt.org/vocab/constant/Value_NeutronGyromagneticRatioOver2Pi expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/quantitykind/VacuumThrust
  - http://qudt.org/vocab/unit/P on http://qudt.org/vocab/quantitykind/VacuumThrust needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloGM-M-PER-SEC2 on http://qudt.org/vocab/quantitykind/VacuumThrust needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/POND on http://qudt.org/vocab/quantitykind/VacuumThrust needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/6a7918fda03d0fbefed5270d8ac57aef
  - http://speckle.xyz/streams/bf7685a6aa/objects/0dbe61414366819b7df5eff0ff4290d0 on http://speckle.xyz/streams/bf7685a6aa/objects/6a7918fda03d0fbefed5270d8ac57aef needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/0dbe61414366819b7df5eff0ff4290d0 on http://speckle.xyz/streams/bf7685a6aa/objects/6a7918fda03d0fbefed5270d8ac57aef needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/8c01e684f576fda4af2e830d994e11fe
  - http://speckle.xyz/streams/bf7685a6aa/objects/a90357aede518899ef1628d9ac8c23f7 on http://speckle.xyz/streams/bf7685a6aa/objects/8c01e684f576fda4af2e830d994e11fe needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/a90357aede518899ef1628d9ac8c23f7 on http://speckle.xyz/streams/bf7685a6aa/objects/8c01e684f576fda4af2e830d994e11fe needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/6edd93dbbc49dccb5e821f16c9a15733
  - http://speckle.xyz/streams/bf7685a6aa/objects/52d7bafa36957b9e565938403801ab84 on http://speckle.xyz/streams/bf7685a6aa/objects/6edd93dbbc49dccb5e821f16c9a15733 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/52d7bafa36957b9e565938403801ab84 on http://speckle.xyz/streams/bf7685a6aa/objects/6edd93dbbc49dccb5e821f16c9a15733 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/constant/Value_ComptonWavelength
  - http://qudt.org/vocab/constant/Value_ComptonWavelength expected at most 1 uses of path qudt:standardUncertainty
http://speckle.xyz/streams/bf7685a6aa/objects/6ff65b21e6a050f61b1e3fe389549fa7
  - http://speckle.xyz/streams/bf7685a6aa/objects/2bab3a834da573d903244a9902f78aa1 on http://speckle.xyz/streams/bf7685a6aa/objects/6ff65b21e6a050f61b1e3fe389549fa7 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/2bab3a834da573d903244a9902f78aa1 on http://speckle.xyz/streams/bf7685a6aa/objects/6ff65b21e6a050f61b1e3fe389549fa7 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/ModulusOfRotationalSubgradeReaction
  - http://qudt.org/vocab/unit/KiloN-M-PER-DEG-M on http://qudt.org/vocab/quantitykind/ModulusOfRotationalSubgradeReaction needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/ModulusOfRotationalSubgradeReaction expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/N-M-PER-DEG-M on http://qudt.org/vocab/quantitykind/ModulusOfRotationalSubgradeReaction needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/b125aad7feee489d482bcd6bb58b40f9
  - http://speckle.xyz/streams/bf7685a6aa/objects/2bab3a834da573d903244a9902f78aa1 on http://speckle.xyz/streams/bf7685a6aa/objects/b125aad7feee489d482bcd6bb58b40f9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/2bab3a834da573d903244a9902f78aa1 on http://speckle.xyz/streams/bf7685a6aa/objects/b125aad7feee489d482bcd6bb58b40f9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/constant/Value_ShieldedHelionToShieldedProtonMagneticMomentRatio
  - http://qudt.org/vocab/constant/Value_ShieldedHelionToShieldedProtonMagneticMomentRatio expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/constant/Value_HartreeKilogramRelationship
  - http://qudt.org/vocab/constant/Value_HartreeKilogramRelationship expected at most 1 uses of path qudt:standardUncertainty
http://speckle.xyz/streams/bf7685a6aa/objects/3792f0aee71f9566eb146db36e37311c
  - http://speckle.xyz/streams/bf7685a6aa/objects/5aa8dbce5ed730aeaaab18a2c23b2dae on http://speckle.xyz/streams/bf7685a6aa/objects/3792f0aee71f9566eb146db36e37311c needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/5aa8dbce5ed730aeaaab18a2c23b2dae on http://speckle.xyz/streams/bf7685a6aa/objects/3792f0aee71f9566eb146db36e37311c needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/3bc48a2c0ecd633c367cb7788f20dc8e
  - http://speckle.xyz/streams/bf7685a6aa/objects/65f08905dad9fad24ddbf157762f65af on http://speckle.xyz/streams/bf7685a6aa/objects/3bc48a2c0ecd633c367cb7788f20dc8e needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/65f08905dad9fad24ddbf157762f65af on http://speckle.xyz/streams/bf7685a6aa/objects/3bc48a2c0ecd633c367cb7788f20dc8e needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/RadialDistance
  - http://qudt.org/vocab/unit/ZOLL on http://qudt.org/vocab/quantitykind/RadialDistance needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GA_Charriere on http://qudt.org/vocab/quantitykind/RadialDistance needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CHAIN_US on http://qudt.org/vocab/quantitykind/RadialDistance needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/unit/MilliM3-PER-M3
  - http://qudt.org/vocab/unit/MilliM3-PER-M3 expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MilliM3-PER-M3 expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/01ffbcf0157170213d4b1c017cc42764
  - http://speckle.xyz/streams/bf7685a6aa/objects/a1b0abf6dd519084fca5274740cfb753 on http://speckle.xyz/streams/bf7685a6aa/objects/01ffbcf0157170213d4b1c017cc42764 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/a1b0abf6dd519084fca5274740cfb753 on http://speckle.xyz/streams/bf7685a6aa/objects/01ffbcf0157170213d4b1c017cc42764 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/Long-RangeOrderParameter
  - http://qudt.org/vocab/quantitykind/Long-RangeOrderParameter expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/unit/OZ-PER-DAY
  - http://qudt.org/vocab/unit/OZ-PER-DAY expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/OZ-PER-DAY expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/PicoC
  - http://qudt.org/vocab/unit/PicoC expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/PicoC expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/BU_US_DRY-PER-HR
  - http://qudt.org/vocab/unit/BU_US_DRY-PER-HR expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/BU_US_DRY-PER-HR expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/9b2634e676a4eba211da5a781899ad77
  - http://speckle.xyz/streams/bf7685a6aa/objects/39585c6ef6b03b8dbb18fb8a3bed20a3 on http://speckle.xyz/streams/bf7685a6aa/objects/9b2634e676a4eba211da5a781899ad77 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/39585c6ef6b03b8dbb18fb8a3bed20a3 on http://speckle.xyz/streams/bf7685a6aa/objects/9b2634e676a4eba211da5a781899ad77 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/constant/Value_JouleKelvinRelationship
  - http://qudt.org/vocab/constant/Value_JouleKelvinRelationship expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/quantitykind/ActivityThresholds
  - http://qudt.org/vocab/quantitykind/ActivityThresholds expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/e17c74194f6d92d7d66d6bc5f3ac186c
  - http://speckle.xyz/streams/bf7685a6aa/objects/17592c23e3930128143ddd679cd6a0d0 on http://speckle.xyz/streams/bf7685a6aa/objects/e17c74194f6d92d7d66d6bc5f3ac186c needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/17592c23e3930128143ddd679cd6a0d0 on http://speckle.xyz/streams/bf7685a6aa/objects/e17c74194f6d92d7d66d6bc5f3ac186c needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/GigaBQ
  - http://qudt.org/vocab/unit/GigaBQ expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/GigaBQ expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/LowerCriticalMagneticFluxDensity
  - http://qudt.org/vocab/quantitykind/LowerCriticalMagneticFluxDensity expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/KiloT on http://qudt.org/vocab/quantitykind/LowerCriticalMagneticFluxDensity needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/00a27bad09014fab4d181d2f17bbf0ee
  - http://speckle.xyz/streams/bf7685a6aa/objects/d48d37e3edb4c6def09923403014eb03 on http://speckle.xyz/streams/bf7685a6aa/objects/00a27bad09014fab4d181d2f17bbf0ee needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/d48d37e3edb4c6def09923403014eb03 on http://speckle.xyz/streams/bf7685a6aa/objects/00a27bad09014fab4d181d2f17bbf0ee needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/dimensionvector/A0E-1L2I0M1H0T-4D0
  - http://qudt.org/vocab/dimensionvector/A0E-1L2I0M1H0T-4D0 expected at most 1 uses of path qudt:latexDefinition
http://qudt.org/vocab/unit/DEG_F
  - http://qudt.org/vocab/unit/DEG_F expected at most 1 uses of path qudt:conversionOffset
http://qudt.org/vocab/quantitykind/MagneticFluxDensity
  - http://qudt.org/vocab/unit/KiloT on http://qudt.org/vocab/quantitykind/MagneticFluxDensity needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/VisionThresholds
  - http://qudt.org/vocab/quantitykind/VisionThresholds expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/1131337b053db495509a9819a6899118
  - http://speckle.xyz/streams/bf7685a6aa/objects/c1f8ba2020eb6468b1d37e4445924aa6 on http://speckle.xyz/streams/bf7685a6aa/objects/1131337b053db495509a9819a6899118 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/c1f8ba2020eb6468b1d37e4445924aa6 on http://speckle.xyz/streams/bf7685a6aa/objects/1131337b053db495509a9819a6899118 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/GI_UK-PER-HR
  - http://qudt.org/vocab/unit/GI_UK-PER-HR expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/GI_UK-PER-HR expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/E
  - http://qudt.org/vocab/unit/E expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/E expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/30c25b028d6fb8ecfac1d79975466f0f
  - http://speckle.xyz/streams/bf7685a6aa/objects/0d245daa39fba4d252d07553fdb4c419 on http://speckle.xyz/streams/bf7685a6aa/objects/30c25b028d6fb8ecfac1d79975466f0f needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/0d245daa39fba4d252d07553fdb4c419 on http://speckle.xyz/streams/bf7685a6aa/objects/30c25b028d6fb8ecfac1d79975466f0f needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/constant/Value_ElectronVoltAtomicMassUnitRelationship
  - http://qudt.org/vocab/constant/Value_ElectronVoltAtomicMassUnitRelationship expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/unit/MicroH-PER-OHM
  - http://qudt.org/vocab/unit/MicroH-PER-OHM expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MicroH-PER-OHM expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/constant/Value_TritonMagneticMoment
  - http://qudt.org/vocab/constant/Value_TritonMagneticMoment expected at most 1 uses of path qudt:standardUncertainty
http://speckle.xyz/streams/bf7685a6aa/objects/f7fb6fc20d532b93fa4c8a159bebf744
  - http://speckle.xyz/streams/bf7685a6aa/objects/a08393e06078ad931cc1683da8363cb4 on http://speckle.xyz/streams/bf7685a6aa/objects/f7fb6fc20d532b93fa4c8a159bebf744 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/a08393e06078ad931cc1683da8363cb4 on http://speckle.xyz/streams/bf7685a6aa/objects/f7fb6fc20d532b93fa4c8a159bebf744 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/constant/Value_ElementaryCharge
  - http://qudt.org/vocab/constant/Value_ElementaryCharge expected at most 1 uses of path qudt:standardUncertainty
http://speckle.xyz/streams/bf7685a6aa/objects/cb9b487610b9348f6f2e1f5244300b14
  - http://speckle.xyz/streams/bf7685a6aa/objects/9895428471df191215db83d9f8082645 on http://speckle.xyz/streams/bf7685a6aa/objects/cb9b487610b9348f6f2e1f5244300b14 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/9895428471df191215db83d9f8082645 on http://speckle.xyz/streams/bf7685a6aa/objects/cb9b487610b9348f6f2e1f5244300b14 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/Population
  - http://qudt.org/vocab/quantitykind/Population expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/unit/PPTR_VOL
  - http://qudt.org/vocab/unit/PPTR_VOL expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/PPTR_VOL expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/f3bff03c8ebdac6bd6c643b5e82c8538
  - http://speckle.xyz/streams/bf7685a6aa/objects/e9670962d6933d8e0a96caf59912d990 on http://speckle.xyz/streams/bf7685a6aa/objects/f3bff03c8ebdac6bd6c643b5e82c8538 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e9670962d6933d8e0a96caf59912d990 on http://speckle.xyz/streams/bf7685a6aa/objects/f3bff03c8ebdac6bd6c643b5e82c8538 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/NuclearQuadrupoleMoment
  - http://qudt.org/vocab/quantitykind/NuclearQuadrupoleMoment expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/KiloM2 on http://qudt.org/vocab/quantitykind/NuclearQuadrupoleMoment needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/ThomsonCoefficient
  - http://qudt.org/vocab/quantitykind/ThomsonCoefficient expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/LineicDataVolume
  - http://qudt.org/vocab/quantitykind/LineicDataVolume expected at most 1 uses of path qudt:plainTextDescription
http://speckle.xyz/streams/bf7685a6aa/objects/717c5e54ac6070cc22fb84adce31ca02
  - http://speckle.xyz/streams/bf7685a6aa/objects/65f08905dad9fad24ddbf157762f65af on http://speckle.xyz/streams/bf7685a6aa/objects/717c5e54ac6070cc22fb84adce31ca02 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/65f08905dad9fad24ddbf157762f65af on http://speckle.xyz/streams/bf7685a6aa/objects/717c5e54ac6070cc22fb84adce31ca02 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/82cf3e05c176c812014f341cf128aeed
  - http://speckle.xyz/streams/bf7685a6aa/objects/87f74a2a608ccd6932697eb7aea3ec7c on http://speckle.xyz/streams/bf7685a6aa/objects/82cf3e05c176c812014f341cf128aeed needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/87f74a2a608ccd6932697eb7aea3ec7c on http://speckle.xyz/streams/bf7685a6aa/objects/82cf3e05c176c812014f341cf128aeed needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/dimensionvector/A0E-1L1I0M1H0T-3D0
  - http://qudt.org/vocab/dimensionvector/A0E-1L1I0M1H0T-3D0 expected at most 1 uses of path qudt:latexDefinition
http://qudt.org/vocab/quantitykind/MechanicalSurfaceImpedance
  - http://qudt.org/vocab/quantitykind/MechanicalSurfaceImpedance expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/unit/OZ_VOL_UK-PER-DAY
  - http://qudt.org/vocab/unit/OZ_VOL_UK-PER-DAY expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/OZ_VOL_UK-PER-DAY expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/8cb6ca290c37ee4d60895559c384e14b
  - http://speckle.xyz/streams/bf7685a6aa/objects/4450fafa9b35f62c2043d9df9a7f700d on http://speckle.xyz/streams/bf7685a6aa/objects/8cb6ca290c37ee4d60895559c384e14b needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/4450fafa9b35f62c2043d9df9a7f700d on http://speckle.xyz/streams/bf7685a6aa/objects/8cb6ca290c37ee4d60895559c384e14b needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/9b438aaa83850098adaebcad6e93d145
  - http://speckle.xyz/streams/bf7685a6aa/objects/16c0ff093fe0cf359342709f754806e1 on http://speckle.xyz/streams/bf7685a6aa/objects/9b438aaa83850098adaebcad6e93d145 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/16c0ff093fe0cf359342709f754806e1 on http://speckle.xyz/streams/bf7685a6aa/objects/9b438aaa83850098adaebcad6e93d145 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/23b41a8c4788044275a9faacbacd2140
  - http://speckle.xyz/streams/bf7685a6aa/objects/570de36b94b8ce5c1670646dcd7526e1 on http://speckle.xyz/streams/bf7685a6aa/objects/23b41a8c4788044275a9faacbacd2140 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/570de36b94b8ce5c1670646dcd7526e1 on http://speckle.xyz/streams/bf7685a6aa/objects/23b41a8c4788044275a9faacbacd2140 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/ThermalConductance
  - http://qudt.org/vocab/unit/MicroV-A-PER-K on http://qudt.org/vocab/quantitykind/ThermalConductance needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliV-A-PER-K on http://qudt.org/vocab/quantitykind/ThermalConductance needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloV-A-PER-K on http://qudt.org/vocab/quantitykind/ThermalConductance needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/V-A-PER-K on http://qudt.org/vocab/quantitykind/ThermalConductance needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/ThermalConductance expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/unit/YR_Sidereal
  - http://qudt.org/vocab/unit/YR_Sidereal expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/YR_Sidereal expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/da4162f0a41cd4808a9810eb82b8b5eb
  - http://speckle.xyz/streams/bf7685a6aa/objects/12a37af4b50e5c925cc2fe8c5cfd161a on http://speckle.xyz/streams/bf7685a6aa/objects/da4162f0a41cd4808a9810eb82b8b5eb needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/12a37af4b50e5c925cc2fe8c5cfd161a on http://speckle.xyz/streams/bf7685a6aa/objects/da4162f0a41cd4808a9810eb82b8b5eb needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/MilliM2
  - http://qudt.org/vocab/unit/MilliM2 expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MilliM2 expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/constant/Value_DeuteronMagneticMomentToBohrMagnetonRatio
  - http://qudt.org/vocab/constant/Value_DeuteronMagneticMomentToBohrMagnetonRatio expected at most 1 uses of path qudt:standardUncertainty
http://speckle.xyz/streams/bf7685a6aa/objects/76ee8b0bfa6871879926f5c7d0533238
  - http://speckle.xyz/streams/bf7685a6aa/objects/f031db8cf74c1d34f7ec9caaa44e707f on http://speckle.xyz/streams/bf7685a6aa/objects/76ee8b0bfa6871879926f5c7d0533238 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/f031db8cf74c1d34f7ec9caaa44e707f on http://speckle.xyz/streams/bf7685a6aa/objects/76ee8b0bfa6871879926f5c7d0533238 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/SoundExposureLevel
  - http://qudt.org/vocab/unit/DeciB_A on http://qudt.org/vocab/quantitykind/SoundExposureLevel needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/DeciB_ISO on http://qudt.org/vocab/quantitykind/SoundExposureLevel needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/DeciB_Z on http://qudt.org/vocab/quantitykind/SoundExposureLevel needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/InternalConversionFactor
  - http://qudt.org/vocab/quantitykind/InternalConversionFactor expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/unit/KiloGM-PER-KiloM2
  - http://qudt.org/vocab/unit/KiloGM-PER-KiloM2 expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/KiloGM-PER-KiloM2 expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/0621d39d300b35debed9f51ab6aa70df
  - http://speckle.xyz/streams/bf7685a6aa/objects/1dc2c8fcc6faad709669a1da5c22f1fb on http://speckle.xyz/streams/bf7685a6aa/objects/0621d39d300b35debed9f51ab6aa70df needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/1dc2c8fcc6faad709669a1da5c22f1fb on http://speckle.xyz/streams/bf7685a6aa/objects/0621d39d300b35debed9f51ab6aa70df needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/MoistureDiffusivity
  - http://qudt.org/vocab/unit/M3-PER-YR on http://qudt.org/vocab/quantitykind/MoistureDiffusivity needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/7e478350f7627032e220a2357121d116
  - http://speckle.xyz/streams/bf7685a6aa/objects/0d245daa39fba4d252d07553fdb4c419 on http://speckle.xyz/streams/bf7685a6aa/objects/7e478350f7627032e220a2357121d116 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/0d245daa39fba4d252d07553fdb4c419 on http://speckle.xyz/streams/bf7685a6aa/objects/7e478350f7627032e220a2357121d116 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/CentiM3-PER-MOL
  - http://qudt.org/vocab/unit/CentiM3-PER-MOL expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/CentiM3-PER-MOL expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/constant/Value_AvogadroConstant
  - http://qudt.org/vocab/constant/Value_AvogadroConstant expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/unit/ExbiBYTE
  - http://qudt.org/vocab/unit/ExbiBYTE expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/ExbiBYTE expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/VolumeFlowRatio
  - http://qudt.org/vocab/unit/PPT on http://qudt.org/vocab/quantitykind/VolumeFlowRatio needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PPQ on http://qudt.org/vocab/quantitykind/VolumeFlowRatio needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/unit/FemtoL
  - http://qudt.org/vocab/unit/FemtoL expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/FemtoL expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/ElectricCurrent
  - http://qudt.org/vocab/unit/GigaA on http://qudt.org/vocab/quantitykind/ElectricCurrent needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/FemtoA on http://qudt.org/vocab/quantitykind/ElectricCurrent needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/TeraA on http://qudt.org/vocab/quantitykind/ElectricCurrent needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/ElectricCurrent expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/PetaA on http://qudt.org/vocab/quantitykind/ElectricCurrent needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/AttoA on http://qudt.org/vocab/quantitykind/ElectricCurrent needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/constant/Value_TritonMagneticMomentToNuclearMagnetonRatio
  - http://qudt.org/vocab/constant/Value_TritonMagneticMomentToNuclearMagnetonRatio expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/unit/KiloBTU_IT
  - http://qudt.org/vocab/unit/KiloBTU_IT expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/KiloBTU_IT expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/2cca1d0dbc3b064f85ff2c0b1977b40c
  - http://speckle.xyz/streams/bf7685a6aa/objects/b1704240e49d5b4aa831d684c64ab3e7 on http://speckle.xyz/streams/bf7685a6aa/objects/2cca1d0dbc3b064f85ff2c0b1977b40c needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/b1704240e49d5b4aa831d684c64ab3e7 on http://speckle.xyz/streams/bf7685a6aa/objects/2cca1d0dbc3b064f85ff2c0b1977b40c needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/CrossSection
  - http://qudt.org/vocab/unit/MI_US2 on http://qudt.org/vocab/quantitykind/CrossSection needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloMIL_Circ on http://qudt.org/vocab/quantitykind/CrossSection needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloM2 on http://qudt.org/vocab/quantitykind/CrossSection needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/CrossSection expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/unit/MicroG
  - http://qudt.org/vocab/unit/MicroG expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MicroG expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/d61f35c782f10c69b6df0560d26d8348
  - http://speckle.xyz/streams/bf7685a6aa/objects/bd4c1bbaf855ba85dd10beedc3c5f7f4 on http://speckle.xyz/streams/bf7685a6aa/objects/d61f35c782f10c69b6df0560d26d8348 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/bd4c1bbaf855ba85dd10beedc3c5f7f4 on http://speckle.xyz/streams/bf7685a6aa/objects/d61f35c782f10c69b6df0560d26d8348 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/BioconcentrationFactor
  - http://qudt.org/vocab/quantitykind/BioconcentrationFactor expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/unit/PlanckCharge
  - http://qudt.org/vocab/unit/PlanckCharge expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/PlanckCharge expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/e9bb64558aad109eec6b03ead18cf6ad
  - http://speckle.xyz/streams/bf7685a6aa/objects/e5eb69c71be84f5da9e07df2de08c8eb on http://speckle.xyz/streams/bf7685a6aa/objects/e9bb64558aad109eec6b03ead18cf6ad needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e5eb69c71be84f5da9e07df2de08c8eb on http://speckle.xyz/streams/bf7685a6aa/objects/e9bb64558aad109eec6b03ead18cf6ad needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/d1881e2edfce944b1cf7ff9b2a20706e
  - http://speckle.xyz/streams/bf7685a6aa/objects/9235406fdde87cb2ee62f34297961438 on http://speckle.xyz/streams/bf7685a6aa/objects/d1881e2edfce944b1cf7ff9b2a20706e needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/9235406fdde87cb2ee62f34297961438 on http://speckle.xyz/streams/bf7685a6aa/objects/d1881e2edfce944b1cf7ff9b2a20706e needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/ModulusOfElasticity
  - http://qudt.org/vocab/quantitykind/ModulusOfElasticity expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/bf22233594323201967f65119b8c6b54
  - http://speckle.xyz/streams/bf7685a6aa/objects/c1e7bac9cc9cff56ce6fff37c81afd27 on http://speckle.xyz/streams/bf7685a6aa/objects/bf22233594323201967f65119b8c6b54 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/c1e7bac9cc9cff56ce6fff37c81afd27 on http://speckle.xyz/streams/bf7685a6aa/objects/bf22233594323201967f65119b8c6b54 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/b84667799c23ae163a0de3b59b645033
  - http://speckle.xyz/streams/bf7685a6aa/objects/416e54a4b145034d01f2f05617c72569 on http://speckle.xyz/streams/bf7685a6aa/objects/b84667799c23ae163a0de3b59b645033 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/416e54a4b145034d01f2f05617c72569 on http://speckle.xyz/streams/bf7685a6aa/objects/b84667799c23ae163a0de3b59b645033 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/constant/Value_HartreeAtomicMassUnitRelationship
  - http://qudt.org/vocab/constant/Value_HartreeAtomicMassUnitRelationship expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/quantitykind/CurrentOfTheAmountOfSubstance
  - http://qudt.org/vocab/quantitykind/CurrentOfTheAmountOfSubstance expected at most 1 uses of path qudt:plainTextDescription
http://speckle.xyz/streams/bf7685a6aa/objects/de0f7811e28c6620b75d27925b8b19b8
  - http://speckle.xyz/streams/bf7685a6aa/objects/8e754b8c808cf1a1e48137195659f8c8 on http://speckle.xyz/streams/bf7685a6aa/objects/de0f7811e28c6620b75d27925b8b19b8 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/8e754b8c808cf1a1e48137195659f8c8 on http://speckle.xyz/streams/bf7685a6aa/objects/de0f7811e28c6620b75d27925b8b19b8 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/PressureBasedMolality
  - http://qudt.org/vocab/quantitykind/PressureBasedMolality expected at most 1 uses of path qudt:plainTextDescription
http://qudt.org/vocab/unit/GigaBasePair
  - http://qudt.org/vocab/unit/GigaBasePair expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/GigaBasePair expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/98c007af60e53c20b828317c4a412eb3
  - http://speckle.xyz/streams/bf7685a6aa/objects/9bbb96d450ec2617aa02cc6f1b800bba on http://speckle.xyz/streams/bf7685a6aa/objects/98c007af60e53c20b828317c4a412eb3 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/9bbb96d450ec2617aa02cc6f1b800bba on http://speckle.xyz/streams/bf7685a6aa/objects/98c007af60e53c20b828317c4a412eb3 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/MassRelatedElectricalCurrent
  - http://qudt.org/vocab/quantitykind/MassRelatedElectricalCurrent expected at most 1 uses of path qudt:plainTextDescription
http://speckle.xyz/streams/bf7685a6aa/objects/25fd9efc5544507849dfd97e833a5238
  - http://speckle.xyz/streams/bf7685a6aa/objects/0d8c716bf524666d44c38328fe3f5865 on http://speckle.xyz/streams/bf7685a6aa/objects/25fd9efc5544507849dfd97e833a5238 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/0d8c716bf524666d44c38328fe3f5865 on http://speckle.xyz/streams/bf7685a6aa/objects/25fd9efc5544507849dfd97e833a5238 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/V_Ab-SEC
  - http://qudt.org/vocab/unit/V_Ab-SEC expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/V_Ab-SEC expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/ThermalResistivity
  - http://qudt.org/vocab/unit/DEG_F-HR-FT2-PER-BTU_TH-IN on http://qudt.org/vocab/quantitykind/ThermalResistivity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/DEG_F-HR-FT2-PER-BTU_IT-IN on http://qudt.org/vocab/quantitykind/ThermalResistivity needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/Wavelength
  - http://qudt.org/vocab/unit/ZOLL on http://qudt.org/vocab/quantitykind/Wavelength needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CHAIN_US on http://qudt.org/vocab/quantitykind/Wavelength needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GA_Charriere on http://qudt.org/vocab/quantitykind/Wavelength needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/unit/KiloCAL-PER-CentiM2-MIN
  - http://qudt.org/vocab/unit/KiloCAL-PER-CentiM2-MIN expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/KiloCAL-PER-CentiM2-MIN expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/PlanckTime
  - http://qudt.org/vocab/unit/PlanckTime expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/PlanckTime expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/ModulusOfAdmittance
  - http://qudt.org/vocab/quantitykind/ModulusOfAdmittance expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/VideoFrameRate
  - http://qudt.org/vocab/quantitykind/VideoFrameRate expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/unit/MilliR_man
  - http://qudt.org/vocab/unit/MilliR_man expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MilliR_man expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/MicroM3
  - http://qudt.org/vocab/unit/MicroM3 expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MicroM3 expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/Thrust
  - http://qudt.org/vocab/unit/KiloGM-M-PER-SEC2 on http://qudt.org/vocab/quantitykind/Thrust needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/P on http://qudt.org/vocab/quantitykind/Thrust needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/POND on http://qudt.org/vocab/quantitykind/Thrust needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/84cc7ff3fd1a81eb8876acabda9a0086
  - http://speckle.xyz/streams/bf7685a6aa/objects/688eea56b7b78e0f7c7b90dced966926 on http://speckle.xyz/streams/bf7685a6aa/objects/84cc7ff3fd1a81eb8876acabda9a0086 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/688eea56b7b78e0f7c7b90dced966926 on http://speckle.xyz/streams/bf7685a6aa/objects/84cc7ff3fd1a81eb8876acabda9a0086 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/constant/Value_KilogramElectronVoltRelationship
  - http://qudt.org/vocab/constant/Value_KilogramElectronVoltRelationship expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/quantitykind/NormalizedDimensionlessRatio
  - http://qudt.org/vocab/unit/PPT on http://qudt.org/vocab/quantitykind/NormalizedDimensionlessRatio needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/NormalizedDimensionlessRatio expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/PPQ on http://qudt.org/vocab/quantitykind/NormalizedDimensionlessRatio needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/SpecificHeatCapacityAtConstantPressure
  - http://qudt.org/vocab/unit/J-PER-KiloGM-DEG_C on http://qudt.org/vocab/quantitykind/SpecificHeatCapacityAtConstantPressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/SpecificHeatCapacityAtConstantPressure expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/J-PER-GM-DEG_C on http://qudt.org/vocab/quantitykind/SpecificHeatCapacityAtConstantPressure needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/unit/MicroH-PER-KiloOHM
  - http://qudt.org/vocab/unit/MicroH-PER-KiloOHM expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MicroH-PER-KiloOHM expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/RelativeHumidity
  - http://qudt.org/vocab/quantitykind/RelativeHumidity expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/a437ecc3472d7c7b4e3d513fb3542170
  - http://speckle.xyz/streams/bf7685a6aa/objects/1aa18520ad959a6b477ce9a6cd61c432 on http://speckle.xyz/streams/bf7685a6aa/objects/a437ecc3472d7c7b4e3d513fb3542170 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/1aa18520ad959a6b477ce9a6cd61c432 on http://speckle.xyz/streams/bf7685a6aa/objects/a437ecc3472d7c7b4e3d513fb3542170 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/WarmReceptorThreshold
  - http://qudt.org/vocab/quantitykind/WarmReceptorThreshold expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/SolidAngle
  - http://qudt.org/vocab/quantitykind/SolidAngle expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/unit/MegaBIT-PER-SEC
  - http://qudt.org/vocab/unit/MegaBIT-PER-SEC expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MegaBIT-PER-SEC expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/constant/Value_MuonMassEnergyEquivalent
  - http://qudt.org/vocab/constant/Value_MuonMassEnergyEquivalent expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/unit/TeraW-HR
  - http://qudt.org/vocab/unit/TeraW-HR expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/TeraW-HR expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/TemperatureBasedMass
  - http://qudt.org/vocab/quantitykind/TemperatureBasedMass expected at most 1 uses of path qudt:plainTextDescription
http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H-1T-3D0
  - http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H-1T-3D0 expected at most 1 uses of path qudt:latexDefinition
http://qudt.org/vocab/quantitykind/ActiveEnergy
  - http://qudt.org/vocab/unit/PicoJ on http://qudt.org/vocab/quantitykind/ActiveEnergy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/THERM_US on http://qudt.org/vocab/quantitykind/ActiveEnergy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/THERM_EC on http://qudt.org/vocab/quantitykind/ActiveEnergy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/NanoJ on http://qudt.org/vocab/quantitykind/ActiveEnergy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/ActiveEnergy expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/constant/Value_ProtonMassInAtomicMassUnit
  - http://qudt.org/vocab/constant/Value_ProtonMassInAtomicMassUnit expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/dimensionvector/A1E0L0I0M0H1T0D0
  - http://qudt.org/vocab/dimensionvector/A1E0L0I0M0H1T0D0 expected at most 1 uses of path qudt:latexDefinition
http://speckle.xyz/streams/bf7685a6aa/objects/adefdfc8f9ec41df1d00e5780ac2bc68
  - http://speckle.xyz/streams/bf7685a6aa/objects/f7c769a50d39f020556ab74d468269a2 on http://speckle.xyz/streams/bf7685a6aa/objects/adefdfc8f9ec41df1d00e5780ac2bc68 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/f7c769a50d39f020556ab74d468269a2 on http://speckle.xyz/streams/bf7685a6aa/objects/adefdfc8f9ec41df1d00e5780ac2bc68 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/a820085c1d17d6bb95e31bc8f419f694
  - http://speckle.xyz/streams/bf7685a6aa/objects/692b74cce4df1fc8676e483160064c85 on http://speckle.xyz/streams/bf7685a6aa/objects/a820085c1d17d6bb95e31bc8f419f694 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/692b74cce4df1fc8676e483160064c85 on http://speckle.xyz/streams/bf7685a6aa/objects/a820085c1d17d6bb95e31bc8f419f694 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/AcceptorDensity
  - http://qudt.org/vocab/unit/NUM-PER-MilliL on http://qudt.org/vocab/quantitykind/AcceptorDensity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/AcceptorDensity expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/c8f3d6ffb505ef84df26b9a320227824
  - http://speckle.xyz/streams/bf7685a6aa/objects/e13dd4b578872dbd32e09626f5d25240 on http://speckle.xyz/streams/bf7685a6aa/objects/c8f3d6ffb505ef84df26b9a320227824 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e13dd4b578872dbd32e09626f5d25240 on http://speckle.xyz/streams/bf7685a6aa/objects/c8f3d6ffb505ef84df26b9a320227824 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/bc642f2c7efaefbf7b34075f8afefae7
  - http://speckle.xyz/streams/bf7685a6aa/objects/e9d3c9ff9450f7b762dcae8badb9365d on http://speckle.xyz/streams/bf7685a6aa/objects/bc642f2c7efaefbf7b34075f8afefae7 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e9d3c9ff9450f7b762dcae8badb9365d on http://speckle.xyz/streams/bf7685a6aa/objects/bc642f2c7efaefbf7b34075f8afefae7 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/4be4bf015947e0d51fbed81750316bc4
  - http://speckle.xyz/streams/bf7685a6aa/objects/c1f8ba2020eb6468b1d37e4445924aa6 on http://speckle.xyz/streams/bf7685a6aa/objects/4be4bf015947e0d51fbed81750316bc4 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/c1f8ba2020eb6468b1d37e4445924aa6 on http://speckle.xyz/streams/bf7685a6aa/objects/4be4bf015947e0d51fbed81750316bc4 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/MicroM
  - http://qudt.org/vocab/unit/MicroM expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MicroM expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/LY
  - http://qudt.org/vocab/unit/LY expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/LY expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/VoltageRatio
  - http://qudt.org/vocab/unit/PPQ on http://qudt.org/vocab/quantitykind/VoltageRatio needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PPT on http://qudt.org/vocab/quantitykind/VoltageRatio needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/MassPerTime
  - http://qudt.org/vocab/unit/KiloLB-PER-HR on http://qudt.org/vocab/quantitykind/MassPerTime needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/TONNE-PER-MO on http://qudt.org/vocab/quantitykind/MassPerTime needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/TONNE-PER-YR on http://qudt.org/vocab/quantitykind/MassPerTime needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/5781780cf806a8eca19014ec91537d04
  - http://speckle.xyz/streams/bf7685a6aa/objects/e9670962d6933d8e0a96caf59912d990 on http://speckle.xyz/streams/bf7685a6aa/objects/5781780cf806a8eca19014ec91537d04 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e9670962d6933d8e0a96caf59912d990 on http://speckle.xyz/streams/bf7685a6aa/objects/5781780cf806a8eca19014ec91537d04 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/Permeance
  - http://qudt.org/vocab/quantitykind/Permeance expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/1e083e1b841e1c3e2c6952db822d19c2
  - http://speckle.xyz/streams/bf7685a6aa/objects/b1704240e49d5b4aa831d684c64ab3e7 on http://speckle.xyz/streams/bf7685a6aa/objects/1e083e1b841e1c3e2c6952db822d19c2 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/b1704240e49d5b4aa831d684c64ab3e7 on http://speckle.xyz/streams/bf7685a6aa/objects/1e083e1b841e1c3e2c6952db822d19c2 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/RelativeMassDensity
  - http://qudt.org/vocab/quantitykind/RelativeMassDensity expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/3f2266917b1ce24305339071d228bab3
  - http://speckle.xyz/streams/bf7685a6aa/objects/03183bd47ce710193f9d15449df4add8 on http://speckle.xyz/streams/bf7685a6aa/objects/3f2266917b1ce24305339071d228bab3 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/03183bd47ce710193f9d15449df4add8 on http://speckle.xyz/streams/bf7685a6aa/objects/3f2266917b1ce24305339071d228bab3 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/33521fd0a161991e00af3ca38bf44d1a
  - http://speckle.xyz/streams/bf7685a6aa/objects/1a82242a9320f719b8162c37bd9c580e on http://speckle.xyz/streams/bf7685a6aa/objects/33521fd0a161991e00af3ca38bf44d1a needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/1a82242a9320f719b8162c37bd9c580e on http://speckle.xyz/streams/bf7685a6aa/objects/33521fd0a161991e00af3ca38bf44d1a needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/constant/Value_AtomicUnitOfVelocity
  - http://qudt.org/vocab/constant/Value_AtomicUnitOfVelocity expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/quantitykind/LondonPenetrationDepth
  - http://qudt.org/vocab/quantitykind/LondonPenetrationDepth expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/ZOLL on http://qudt.org/vocab/quantitykind/LondonPenetrationDepth needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CHAIN_US on http://qudt.org/vocab/quantitykind/LondonPenetrationDepth needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GA_Charriere on http://qudt.org/vocab/quantitykind/LondonPenetrationDepth needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/EnergyInternal
  - http://qudt.org/vocab/unit/NanoJ on http://qudt.org/vocab/quantitykind/EnergyInternal needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PicoJ on http://qudt.org/vocab/quantitykind/EnergyInternal needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/THERM_EC on http://qudt.org/vocab/quantitykind/EnergyInternal needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/THERM_US on http://qudt.org/vocab/quantitykind/EnergyInternal needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/04181fae5e7659c5d6c163456ef878d0
  - http://speckle.xyz/streams/bf7685a6aa/objects/f7c769a50d39f020556ab74d468269a2 on http://speckle.xyz/streams/bf7685a6aa/objects/04181fae5e7659c5d6c163456ef878d0 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/f7c769a50d39f020556ab74d468269a2 on http://speckle.xyz/streams/bf7685a6aa/objects/04181fae5e7659c5d6c163456ef878d0 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/5885d09a8fffa206f45d7a49ad477e23
  - http://speckle.xyz/streams/bf7685a6aa/objects/12a37af4b50e5c925cc2fe8c5cfd161a on http://speckle.xyz/streams/bf7685a6aa/objects/5885d09a8fffa206f45d7a49ad477e23 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/12a37af4b50e5c925cc2fe8c5cfd161a on http://speckle.xyz/streams/bf7685a6aa/objects/5885d09a8fffa206f45d7a49ad477e23 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/dimensionvector/A0E0L-2I1M0H0T1D0
  - http://qudt.org/vocab/dimensionvector/A0E0L-2I1M0H0T1D0 expected at most 1 uses of path qudt:latexDefinition
http://qudt.org/vocab/unit/THM_US
  - http://qudt.org/vocab/unit/THM_US expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/THM_US expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/QuantumNumber
  - http://qudt.org/vocab/quantitykind/QuantumNumber expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/470899f2c2550c727ad9c9d2b2a40dd1
  - http://speckle.xyz/streams/bf7685a6aa/objects/e13dd4b578872dbd32e09626f5d25240 on http://speckle.xyz/streams/bf7685a6aa/objects/470899f2c2550c727ad9c9d2b2a40dd1 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e13dd4b578872dbd32e09626f5d25240 on http://speckle.xyz/streams/bf7685a6aa/objects/470899f2c2550c727ad9c9d2b2a40dd1 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/SpeedRatio
  - http://qudt.org/vocab/unit/PPQ on http://qudt.org/vocab/quantitykind/SpeedRatio needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PPT on http://qudt.org/vocab/quantitykind/SpeedRatio needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/unit/KiloGM-MilliM2
  - http://qudt.org/vocab/unit/KiloGM-MilliM2 expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/KiloGM-MilliM2 expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/MicroC
  - http://qudt.org/vocab/unit/MicroC expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MicroC expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/Reactance
  - http://qudt.org/vocab/quantitykind/Reactance expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/2aa1359759e50a2eac92e82b1ed41e19
  - http://speckle.xyz/streams/bf7685a6aa/objects/3efdbbd7d157786885a7c74d641c8fae on http://speckle.xyz/streams/bf7685a6aa/objects/2aa1359759e50a2eac92e82b1ed41e19 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/3efdbbd7d157786885a7c74d641c8fae on http://speckle.xyz/streams/bf7685a6aa/objects/2aa1359759e50a2eac92e82b1ed41e19 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/ResistanceBasedInductance
  - http://qudt.org/vocab/quantitykind/ResistanceBasedInductance expected at most 1 uses of path qudt:plainTextDescription
http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-3D0
  - http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-3D0 expected at most 1 uses of path qudt:latexDefinition
http://speckle.xyz/streams/bf7685a6aa/objects/36546750c232f8a7c816a545712d7da4
  - http://speckle.xyz/streams/bf7685a6aa/objects/f031db8cf74c1d34f7ec9caaa44e707f on http://speckle.xyz/streams/bf7685a6aa/objects/36546750c232f8a7c816a545712d7da4 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/f031db8cf74c1d34f7ec9caaa44e707f on http://speckle.xyz/streams/bf7685a6aa/objects/36546750c232f8a7c816a545712d7da4 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/GigaC
  - http://qudt.org/vocab/unit/GigaC expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/GigaC expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/KiloGM_F-PER-MilliM2
  - http://qudt.org/vocab/unit/KiloGM_F-PER-MilliM2 expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/KiloGM_F-PER-MilliM2 expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/MassConcentrationOfWater
  - http://qudt.org/vocab/quantitykind/MassConcentrationOfWater expected at most 1 uses of path qudt:plainTextDescription
  - http://qudt.org/vocab/quantitykind/MassConcentrationOfWater expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/TemperatureBasedDensity
  - http://qudt.org/vocab/quantitykind/TemperatureBasedDensity expected at most 1 uses of path qudt:plainTextDescription
http://speckle.xyz/streams/bf7685a6aa/objects/42a9328544b8cbb9812ba3647a235a93
  - http://speckle.xyz/streams/bf7685a6aa/objects/5751a7a8490e489a1a00976905f9b01b on http://speckle.xyz/streams/bf7685a6aa/objects/42a9328544b8cbb9812ba3647a235a93 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/5751a7a8490e489a1a00976905f9b01b on http://speckle.xyz/streams/bf7685a6aa/objects/42a9328544b8cbb9812ba3647a235a93 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/396a6130067ca260abc4438d31a0f289
  - http://speckle.xyz/streams/bf7685a6aa/objects/e9490e3512dab7db58f40a947313427f on http://speckle.xyz/streams/bf7685a6aa/objects/396a6130067ca260abc4438d31a0f289 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e9490e3512dab7db58f40a947313427f on http://speckle.xyz/streams/bf7685a6aa/objects/396a6130067ca260abc4438d31a0f289 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/8e2576e1bd8fd95121147cbc93f41d21
  - http://speckle.xyz/streams/bf7685a6aa/objects/22ee737a989391acee4ea60354e91210 on http://speckle.xyz/streams/bf7685a6aa/objects/8e2576e1bd8fd95121147cbc93f41d21 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/22ee737a989391acee4ea60354e91210 on http://speckle.xyz/streams/bf7685a6aa/objects/8e2576e1bd8fd95121147cbc93f41d21 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/PINT_US-PER-HR
  - http://qudt.org/vocab/unit/PINT_US-PER-HR expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/PINT_US-PER-HR expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/8eb1bdb6401700494986b65359a4eb8f
  - http://speckle.xyz/streams/bf7685a6aa/objects/f5d08d08b8a951b4e8c6f58253819260 on http://speckle.xyz/streams/bf7685a6aa/objects/8eb1bdb6401700494986b65359a4eb8f needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/f5d08d08b8a951b4e8c6f58253819260 on http://speckle.xyz/streams/bf7685a6aa/objects/8eb1bdb6401700494986b65359a4eb8f needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/ThermalDiffusionRatio
  - http://qudt.org/vocab/quantitykind/ThermalDiffusionRatio expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/979ce36e081b321cc1f806788bf5cf3f
  - http://speckle.xyz/streams/bf7685a6aa/objects/5751a7a8490e489a1a00976905f9b01b on http://speckle.xyz/streams/bf7685a6aa/objects/979ce36e081b321cc1f806788bf5cf3f needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/5751a7a8490e489a1a00976905f9b01b on http://speckle.xyz/streams/bf7685a6aa/objects/979ce36e081b321cc1f806788bf5cf3f needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/4211d350b857b5eb04b723cb9dea5857
  - http://speckle.xyz/streams/bf7685a6aa/objects/f031db8cf74c1d34f7ec9caaa44e707f on http://speckle.xyz/streams/bf7685a6aa/objects/4211d350b857b5eb04b723cb9dea5857 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/f031db8cf74c1d34f7ec9caaa44e707f on http://speckle.xyz/streams/bf7685a6aa/objects/4211d350b857b5eb04b723cb9dea5857 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/CENTER-OF-GRAVITY_Y
  - http://qudt.org/vocab/unit/GA_Charriere on http://qudt.org/vocab/quantitykind/CENTER-OF-GRAVITY_Y needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/ZOLL on http://qudt.org/vocab/quantitykind/CENTER-OF-GRAVITY_Y needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CHAIN_US on http://qudt.org/vocab/quantitykind/CENTER-OF-GRAVITY_Y needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/DebyeTemperature
  - http://qudt.org/vocab/quantitykind/DebyeTemperature expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/PressureBasedKinematicViscosity
  - http://qudt.org/vocab/quantitykind/PressureBasedKinematicViscosity expected at most 1 uses of path qudt:plainTextDescription
http://speckle.xyz/streams/bf7685a6aa/objects/cb19827e77109e47c73a13f6bb1bc2d2
  - http://speckle.xyz/streams/bf7685a6aa/objects/f3ec1e36a99896dc93fec2e9644475bf on http://speckle.xyz/streams/bf7685a6aa/objects/cb19827e77109e47c73a13f6bb1bc2d2 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/f3ec1e36a99896dc93fec2e9644475bf on http://speckle.xyz/streams/bf7685a6aa/objects/cb19827e77109e47c73a13f6bb1bc2d2 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/FT3-PER-HR
  - http://qudt.org/vocab/unit/FT3-PER-HR expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/FT3-PER-HR expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/PicoA
  - http://qudt.org/vocab/unit/PicoA expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/PicoA expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/constant/Value_TauNeutronMassRatio
  - http://qudt.org/vocab/constant/Value_TauNeutronMassRatio expected at most 1 uses of path qudt:standardUncertainty
http://speckle.xyz/streams/bf7685a6aa/objects/1d877153f24d425de40980a24267d0c3
  - http://speckle.xyz/streams/bf7685a6aa/objects/f031db8cf74c1d34f7ec9caaa44e707f on http://speckle.xyz/streams/bf7685a6aa/objects/1d877153f24d425de40980a24267d0c3 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/f031db8cf74c1d34f7ec9caaa44e707f on http://speckle.xyz/streams/bf7685a6aa/objects/1d877153f24d425de40980a24267d0c3 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/constant/Value_NuclearMagnetonInMHzPerT
  - http://qudt.org/vocab/constant/Value_NuclearMagnetonInMHzPerT expected at most 1 uses of path qudt:standardUncertainty
http://speckle.xyz/streams/bf7685a6aa/objects/f6088a1e990f328f5ba4be3d59e6481c
  - http://speckle.xyz/streams/bf7685a6aa/objects/416e54a4b145034d01f2f05617c72569 on http://speckle.xyz/streams/bf7685a6aa/objects/f6088a1e990f328f5ba4be3d59e6481c needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/416e54a4b145034d01f2f05617c72569 on http://speckle.xyz/streams/bf7685a6aa/objects/f6088a1e990f328f5ba4be3d59e6481c needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/PicoSEC
  - http://qudt.org/vocab/unit/PicoSEC expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/PicoSEC expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/MolecularMass
  - http://qudt.org/vocab/quantitykind/MolecularMass expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/SignalStrength
  - http://qudt.org/vocab/quantitykind/SignalStrength expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/constant/Value_AtomicUnitOfMass
  - http://qudt.org/vocab/constant/Value_AtomicUnitOfMass expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/quantitykind/TemperatureBasedKinematicViscosity
  - http://qudt.org/vocab/quantitykind/TemperatureBasedKinematicViscosity expected at most 1 uses of path qudt:plainTextDescription
http://qudt.org/vocab/unit/CentiM3-PER-DAY
  - http://qudt.org/vocab/unit/CentiM3-PER-DAY expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/CentiM3-PER-DAY expected at most 1 uses of path qudt:plainTextDescription
  - http://qudt.org/vocab/unit/CentiM3-PER-DAY expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/AmountOfSubstanceFractionOfB
  - http://qudt.org/vocab/unit/PPT on http://qudt.org/vocab/quantitykind/AmountOfSubstanceFractionOfB needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/AmountOfSubstanceFractionOfB expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/PPQ on http://qudt.org/vocab/quantitykind/AmountOfSubstanceFractionOfB needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/SurfaceCoefficientOfHeatTransfer
  - http://qudt.org/vocab/unit/KiloW-PER-M2-K on http://qudt.org/vocab/quantitykind/SurfaceCoefficientOfHeatTransfer needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/constant/Value_ShieldedHelionMagneticMoment
  - http://qudt.org/vocab/constant/Value_ShieldedHelionMagneticMoment expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/quantitykind/InverseTemperature
  - http://qudt.org/vocab/unit/PER-MegaK on http://qudt.org/vocab/quantitykind/InverseTemperature needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PER-DEG_F on http://qudt.org/vocab/quantitykind/InverseTemperature needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/898118327b129ad64ecc34be2cb27244
  - http://speckle.xyz/streams/bf7685a6aa/objects/18357be2061a0be61152934dd62335e9 on http://speckle.xyz/streams/bf7685a6aa/objects/898118327b129ad64ecc34be2cb27244 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/18357be2061a0be61152934dd62335e9 on http://speckle.xyz/streams/bf7685a6aa/objects/898118327b129ad64ecc34be2cb27244 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/schema/qudt/CT_UNCOUNTABLE
  - http://qudt.org/schema/qudt/CT_UNCOUNTABLE expected at most 1 uses of path dcterms:description
  - http://qudt.org/schema/qudt/CT_UNCOUNTABLE expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/c544d2b1b67e2ea5bb68c150825c541a
  - http://speckle.xyz/streams/bf7685a6aa/objects/5751a7a8490e489a1a00976905f9b01b on http://speckle.xyz/streams/bf7685a6aa/objects/c544d2b1b67e2ea5bb68c150825c541a needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/5751a7a8490e489a1a00976905f9b01b on http://speckle.xyz/streams/bf7685a6aa/objects/c544d2b1b67e2ea5bb68c150825c541a needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/LogarithmicFrequencyIntervalToBase10
  - http://qudt.org/vocab/quantitykind/LogarithmicFrequencyIntervalToBase10 expected at most 1 uses of path qudt:plainTextDescription
http://speckle.xyz/streams/bf7685a6aa/objects/269f7d793e015612b84d2812554e8a88
  - http://speckle.xyz/streams/bf7685a6aa/objects/7027106b86bbf1624aeecea353bf4412 on http://speckle.xyz/streams/bf7685a6aa/objects/269f7d793e015612b84d2812554e8a88 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/7027106b86bbf1624aeecea353bf4412 on http://speckle.xyz/streams/bf7685a6aa/objects/269f7d793e015612b84d2812554e8a88 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/a996b395e9beeec7a9d5748503c873d7
  - http://speckle.xyz/streams/bf7685a6aa/objects/28aef50ead306cc9aaa610ad0b1fe1f6 on http://speckle.xyz/streams/bf7685a6aa/objects/a996b395e9beeec7a9d5748503c873d7 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/28aef50ead306cc9aaa610ad0b1fe1f6 on http://speckle.xyz/streams/bf7685a6aa/objects/a996b395e9beeec7a9d5748503c873d7 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/HectoBAR
  - http://qudt.org/vocab/unit/HectoBAR expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/HectoBAR expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/72c2896aea2fbf4952169474c7f60ce0
  - http://speckle.xyz/streams/bf7685a6aa/objects/5751a7a8490e489a1a00976905f9b01b on http://speckle.xyz/streams/bf7685a6aa/objects/72c2896aea2fbf4952169474c7f60ce0 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/5751a7a8490e489a1a00976905f9b01b on http://speckle.xyz/streams/bf7685a6aa/objects/72c2896aea2fbf4952169474c7f60ce0 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/9a0d2bf79e7d263e531be0b2af54f907
  - http://speckle.xyz/streams/bf7685a6aa/objects/089b7b828f28a846fcbcbd103c8492e5 on http://speckle.xyz/streams/bf7685a6aa/objects/9a0d2bf79e7d263e531be0b2af54f907 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/089b7b828f28a846fcbcbd103c8492e5 on http://speckle.xyz/streams/bf7685a6aa/objects/9a0d2bf79e7d263e531be0b2af54f907 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/TeraOHM
  - http://qudt.org/vocab/unit/TeraOHM expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/TeraOHM expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/a5f7011804e02426fa0f4dddbd899cf4
  - http://speckle.xyz/streams/bf7685a6aa/objects/16c0ff093fe0cf359342709f754806e1 on http://speckle.xyz/streams/bf7685a6aa/objects/a5f7011804e02426fa0f4dddbd899cf4 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/16c0ff093fe0cf359342709f754806e1 on http://speckle.xyz/streams/bf7685a6aa/objects/a5f7011804e02426fa0f4dddbd899cf4 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/934acf98b5f95816d8e502c76a9ef259
  - http://speckle.xyz/streams/bf7685a6aa/objects/e2c2fcb66699bae88ba79c422b644168 on http://speckle.xyz/streams/bf7685a6aa/objects/934acf98b5f95816d8e502c76a9ef259 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e2c2fcb66699bae88ba79c422b644168 on http://speckle.xyz/streams/bf7685a6aa/objects/934acf98b5f95816d8e502c76a9ef259 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/3ca4a897cd837f41e045bdf814847e47
  - http://speckle.xyz/streams/bf7685a6aa/objects/57b18a74ff93e5a9428e838f72c71067 on http://speckle.xyz/streams/bf7685a6aa/objects/3ca4a897cd837f41e045bdf814847e47 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/57b18a74ff93e5a9428e838f72c71067 on http://speckle.xyz/streams/bf7685a6aa/objects/3ca4a897cd837f41e045bdf814847e47 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/dimensionvector/A0E4L-2I0M-3H0T10D0
  - http://qudt.org/vocab/dimensionvector/A0E4L-2I0M-3H0T10D0 expected at most 1 uses of path qudt:latexDefinition
http://speckle.xyz/streams/bf7685a6aa/objects/f7e2b75e56237ac529ef8b171634e21a
  - http://speckle.xyz/streams/bf7685a6aa/objects/60dec90ea4a69243d04d1865db4ab294 on http://speckle.xyz/streams/bf7685a6aa/objects/f7e2b75e56237ac529ef8b171634e21a needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/60dec90ea4a69243d04d1865db4ab294 on http://speckle.xyz/streams/bf7685a6aa/objects/f7e2b75e56237ac529ef8b171634e21a needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/constant/Value_FermiCouplingConstant
  - http://qudt.org/vocab/constant/Value_FermiCouplingConstant expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/constant/Value_ProtonNeutronMassRatio
  - http://qudt.org/vocab/constant/Value_ProtonNeutronMassRatio expected at most 1 uses of path qudt:standardUncertainty
http://speckle.xyz/streams/bf7685a6aa/objects/a5850dfc20485272f258166e3b48749b
  - http://speckle.xyz/streams/bf7685a6aa/objects/b12ac1bee6f170f908d300fa71c95111 on http://speckle.xyz/streams/bf7685a6aa/objects/a5850dfc20485272f258166e3b48749b needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/b12ac1bee6f170f908d300fa71c95111 on http://speckle.xyz/streams/bf7685a6aa/objects/a5850dfc20485272f258166e3b48749b needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/ParticleFluenceRate
  - http://qudt.org/vocab/quantitykind/ParticleFluenceRate expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/EnergyPerMagneticFluxDensity_Squared
  - http://qudt.org/vocab/quantitykind/EnergyPerMagneticFluxDensity_Squared expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/unit/GM-PER-M2-DAY
  - http://qudt.org/vocab/unit/GM-PER-M2-DAY expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/GM-PER-M2-DAY expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/ExpansionRatio
  - http://qudt.org/vocab/unit/PER-MegaK on http://qudt.org/vocab/quantitykind/ExpansionRatio needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PER-DEG_F on http://qudt.org/vocab/quantitykind/ExpansionRatio needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliM-PER-DEG_C-M on http://qudt.org/vocab/quantitykind/ExpansionRatio needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/M-PER-DEG_C-M on http://qudt.org/vocab/quantitykind/ExpansionRatio needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/17b7f5f9b0b8c3a0dac87aed4efd8c90
  - http://speckle.xyz/streams/bf7685a6aa/objects/c1f8ba2020eb6468b1d37e4445924aa6 on http://speckle.xyz/streams/bf7685a6aa/objects/17b7f5f9b0b8c3a0dac87aed4efd8c90 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/c1f8ba2020eb6468b1d37e4445924aa6 on http://speckle.xyz/streams/bf7685a6aa/objects/17b7f5f9b0b8c3a0dac87aed4efd8c90 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/ea019874e4ef59ed860c9d39ceded2ba
  - http://speckle.xyz/streams/bf7685a6aa/objects/e9490e3512dab7db58f40a947313427f on http://speckle.xyz/streams/bf7685a6aa/objects/ea019874e4ef59ed860c9d39ceded2ba needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e9490e3512dab7db58f40a947313427f on http://speckle.xyz/streams/bf7685a6aa/objects/ea019874e4ef59ed860c9d39ceded2ba needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/Height
  - http://qudt.org/vocab/unit/GA_Charriere on http://qudt.org/vocab/quantitykind/Height needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/ZOLL on http://qudt.org/vocab/quantitykind/Height needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CHAIN_US on http://qudt.org/vocab/quantitykind/Height needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Height expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/e7215c5371fc73db98c35605baad1de0
  - http://speckle.xyz/streams/bf7685a6aa/objects/03183bd47ce710193f9d15449df4add8 on http://speckle.xyz/streams/bf7685a6aa/objects/e7215c5371fc73db98c35605baad1de0 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/03183bd47ce710193f9d15449df4add8 on http://speckle.xyz/streams/bf7685a6aa/objects/e7215c5371fc73db98c35605baad1de0 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/2ccaa203f6a8cc94c24c4c7e33522fe2
  - http://speckle.xyz/streams/bf7685a6aa/objects/ea809d7a6106eaba6d818bfdb3e3e5b9 on http://speckle.xyz/streams/bf7685a6aa/objects/2ccaa203f6a8cc94c24c4c7e33522fe2 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/ea809d7a6106eaba6d818bfdb3e3e5b9 on http://speckle.xyz/streams/bf7685a6aa/objects/2ccaa203f6a8cc94c24c4c7e33522fe2 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/RelativeMassRatioOfVapour
  - http://qudt.org/vocab/quantitykind/RelativeMassRatioOfVapour expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/quantitykind/RelativeMassRatioOfVapour expected at most 1 uses of path qudt:plainTextDescription
http://qudt.org/vocab/quantitykind/EquilibriumConstantOnPressureBasis
  - http://qudt.org/vocab/quantitykind/EquilibriumConstantOnPressureBasis expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/7d9949a076985e916b28754ba98a9e93
  - http://speckle.xyz/streams/bf7685a6aa/objects/1a6afbdfd275e54fbec0848e9cc9a48d on http://speckle.xyz/streams/bf7685a6aa/objects/7d9949a076985e916b28754ba98a9e93 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/1a6afbdfd275e54fbec0848e9cc9a48d on http://speckle.xyz/streams/bf7685a6aa/objects/7d9949a076985e916b28754ba98a9e93 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/RotationalFrequency
  - http://qudt.org/vocab/unit/CYC-PER-SEC on http://qudt.org/vocab/quantitykind/RotationalFrequency needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/unit/GM_Carbon-PER-M2-DAY
  - http://qudt.org/vocab/unit/GM_Carbon-PER-M2-DAY expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/GM_Carbon-PER-M2-DAY expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/GigaBYTE
  - http://qudt.org/vocab/unit/GigaBYTE expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/GigaBYTE expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/GigaBYTE expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/510e84a3bb28f90505506cef357be125
  - http://speckle.xyz/streams/bf7685a6aa/objects/5751a7a8490e489a1a00976905f9b01b on http://speckle.xyz/streams/bf7685a6aa/objects/510e84a3bb28f90505506cef357be125 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/5751a7a8490e489a1a00976905f9b01b on http://speckle.xyz/streams/bf7685a6aa/objects/510e84a3bb28f90505506cef357be125 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/5bfbcecccf38dad1b473a21299f1f7a1
  - http://speckle.xyz/streams/bf7685a6aa/objects/2574b16b5e9d5e0bea710d1ca119a45a on http://speckle.xyz/streams/bf7685a6aa/objects/5bfbcecccf38dad1b473a21299f1f7a1 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/2574b16b5e9d5e0bea710d1ca119a45a on http://speckle.xyz/streams/bf7685a6aa/objects/5bfbcecccf38dad1b473a21299f1f7a1 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/VolumeFlowRate
  - http://qudt.org/vocab/quantitykind/VolumeFlowRate expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/M3-PER-YR on http://qudt.org/vocab/quantitykind/VolumeFlowRate needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/ba1f077790d75a9e87cbbdbccb26ad18
  - http://speckle.xyz/streams/bf7685a6aa/objects/af1446d067d1a6d619cec36730b3234c on http://speckle.xyz/streams/bf7685a6aa/objects/ba1f077790d75a9e87cbbdbccb26ad18 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/af1446d067d1a6d619cec36730b3234c on http://speckle.xyz/streams/bf7685a6aa/objects/ba1f077790d75a9e87cbbdbccb26ad18 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/DonorDensity
  - http://qudt.org/vocab/unit/NUM-PER-MilliL on http://qudt.org/vocab/quantitykind/DonorDensity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/DonorDensity expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/constant/Value_TauComptonWavelengthOver2Pi
  - http://qudt.org/vocab/constant/Value_TauComptonWavelengthOver2Pi expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/unit/NUM-PER-M2-DAY
  - http://qudt.org/vocab/unit/NUM-PER-M2-DAY expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/NUM-PER-M2-DAY expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/dimensionvector/A1E0L0I0M0H0T-1D0
  - http://qudt.org/vocab/dimensionvector/A1E0L0I0M0H0T-1D0 expected at most 1 uses of path qudt:latexDefinition
http://qudt.org/vocab/quantitykind/CurieTemperature
  - http://qudt.org/vocab/quantitykind/CurieTemperature expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/2bf0d0c36f955af71be5e06d89f8ec31
  - http://speckle.xyz/streams/bf7685a6aa/objects/0d8c716bf524666d44c38328fe3f5865 on http://speckle.xyz/streams/bf7685a6aa/objects/2bf0d0c36f955af71be5e06d89f8ec31 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/0d8c716bf524666d44c38328fe3f5865 on http://speckle.xyz/streams/bf7685a6aa/objects/2bf0d0c36f955af71be5e06d89f8ec31 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/1754088c143b53bd054cf1cba681e463
  - http://speckle.xyz/streams/bf7685a6aa/objects/c5380b973ef73d9425d8fd919e1a7538 on http://speckle.xyz/streams/bf7685a6aa/objects/1754088c143b53bd054cf1cba681e463 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/c5380b973ef73d9425d8fd919e1a7538 on http://speckle.xyz/streams/bf7685a6aa/objects/1754088c143b53bd054cf1cba681e463 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H-1T-2D0
  - http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H-1T-2D0 expected at most 1 uses of path qudt:latexDefinition
http://qudt.org/vocab/quantitykind/PhotonLuminance
  - http://qudt.org/vocab/quantitykind/PhotonLuminance expected at most 1 uses of path qudt:plainTextDescription
http://qudt.org/vocab/unit/PlanckPower
  - http://qudt.org/vocab/unit/PlanckPower expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/PlanckPower expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/GAL_UK-PER-DAY
  - http://qudt.org/vocab/unit/GAL_UK-PER-DAY expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/GAL_UK-PER-DAY expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/constant/Value_AtomicUnitOfCurrent
  - http://qudt.org/vocab/constant/Value_AtomicUnitOfCurrent expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/quantitykind/MagneticFlux
  - http://qudt.org/vocab/quantitykind/MagneticFlux expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/acaa3a0bc1f3e9fab30f61b8030f3efc
  - http://speckle.xyz/streams/bf7685a6aa/objects/1a82242a9320f719b8162c37bd9c580e on http://speckle.xyz/streams/bf7685a6aa/objects/acaa3a0bc1f3e9fab30f61b8030f3efc needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/1a82242a9320f719b8162c37bd9c580e on http://speckle.xyz/streams/bf7685a6aa/objects/acaa3a0bc1f3e9fab30f61b8030f3efc needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/25a5d982e42643aed1f2da90e33fff43
  - http://speckle.xyz/streams/bf7685a6aa/objects/ea1260ec254fcbc4b0630875ec6ed737 on http://speckle.xyz/streams/bf7685a6aa/objects/25a5d982e42643aed1f2da90e33fff43 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/ea1260ec254fcbc4b0630875ec6ed737 on http://speckle.xyz/streams/bf7685a6aa/objects/25a5d982e42643aed1f2da90e33fff43 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/Da
  - http://qudt.org/vocab/unit/Da expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/Da expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/a610bed388f92851f6c158184a2c02a3
  - http://speckle.xyz/streams/bf7685a6aa/objects/e8e61103cdf42e0fd7b5f6b6301376d0 on http://speckle.xyz/streams/bf7685a6aa/objects/a610bed388f92851f6c158184a2c02a3 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e8e61103cdf42e0fd7b5f6b6301376d0 on http://speckle.xyz/streams/bf7685a6aa/objects/a610bed388f92851f6c158184a2c02a3 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/45a805f07983ea4aeb641f75ce125f37
  - http://speckle.xyz/streams/bf7685a6aa/objects/ca6cec87b2cfc139e5610127872951ea on http://speckle.xyz/streams/bf7685a6aa/objects/45a805f07983ea4aeb641f75ce125f37 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/ca6cec87b2cfc139e5610127872951ea on http://speckle.xyz/streams/bf7685a6aa/objects/45a805f07983ea4aeb641f75ce125f37 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/GM-MilliM
  - http://qudt.org/vocab/unit/GM-MilliM expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/GM-MilliM expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/constant/Value_PlanckConstantOver2PiInEVS
  - http://qudt.org/vocab/constant/Value_PlanckConstantOver2PiInEVS expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/constant/Value_MuonComptonWavelength
  - http://qudt.org/vocab/constant/Value_MuonComptonWavelength expected at most 1 uses of path qudt:standardUncertainty
http://speckle.xyz/streams/bf7685a6aa/objects/8b2a9026db7ff7ba5e84a51a6911fab1
  - http://speckle.xyz/streams/bf7685a6aa/objects/8d3ab9635d58bfdfc81c3f647c553b97 on http://speckle.xyz/streams/bf7685a6aa/objects/8b2a9026db7ff7ba5e84a51a6911fab1 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/8d3ab9635d58bfdfc81c3f647c553b97 on http://speckle.xyz/streams/bf7685a6aa/objects/8b2a9026db7ff7ba5e84a51a6911fab1 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/EnergyContent
  - http://qudt.org/vocab/quantitykind/EnergyContent expected at most 1 uses of path qudt:plainTextDescription
  - http://qudt.org/vocab/unit/THERM_EC on http://qudt.org/vocab/quantitykind/EnergyContent needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PicoJ on http://qudt.org/vocab/quantitykind/EnergyContent needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/THERM_US on http://qudt.org/vocab/quantitykind/EnergyContent needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/NanoJ on http://qudt.org/vocab/quantitykind/EnergyContent needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/unit/MicroA
  - http://qudt.org/vocab/unit/MicroA expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MicroA expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/a400c0bfc65505e1b22cb0c756d085a2
  - http://speckle.xyz/streams/bf7685a6aa/objects/c1f8ba2020eb6468b1d37e4445924aa6 on http://speckle.xyz/streams/bf7685a6aa/objects/a400c0bfc65505e1b22cb0c756d085a2 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/c1f8ba2020eb6468b1d37e4445924aa6 on http://speckle.xyz/streams/bf7685a6aa/objects/a400c0bfc65505e1b22cb0c756d085a2 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/LuminousExposure
  - http://qudt.org/vocab/unit/LUX-SEC on http://qudt.org/vocab/quantitykind/LuminousExposure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/LuminousExposure expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/NozzleThroatDiameter
  - http://qudt.org/vocab/unit/CHAIN_US on http://qudt.org/vocab/quantitykind/NozzleThroatDiameter needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GA_Charriere on http://qudt.org/vocab/quantitykind/NozzleThroatDiameter needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/ZOLL on http://qudt.org/vocab/quantitykind/NozzleThroatDiameter needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/0c3d176462221a21df9f01f98c050382
  - http://speckle.xyz/streams/bf7685a6aa/objects/87f74a2a608ccd6932697eb7aea3ec7c on http://speckle.xyz/streams/bf7685a6aa/objects/0c3d176462221a21df9f01f98c050382 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/87f74a2a608ccd6932697eb7aea3ec7c on http://speckle.xyz/streams/bf7685a6aa/objects/0c3d176462221a21df9f01f98c050382 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/e91e57fce0d50a6893f21b762343385e
  - http://speckle.xyz/streams/bf7685a6aa/objects/0d245daa39fba4d252d07553fdb4c419 on http://speckle.xyz/streams/bf7685a6aa/objects/e91e57fce0d50a6893f21b762343385e needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/0d245daa39fba4d252d07553fdb4c419 on http://speckle.xyz/streams/bf7685a6aa/objects/e91e57fce0d50a6893f21b762343385e needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/fae3a4a3ea80fb9b89b9240483733c68
  - http://speckle.xyz/streams/bf7685a6aa/objects/0e5bab348c0d7a43d3197d71b2ecdff0 on http://speckle.xyz/streams/bf7685a6aa/objects/fae3a4a3ea80fb9b89b9240483733c68 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/0e5bab348c0d7a43d3197d71b2ecdff0 on http://speckle.xyz/streams/bf7685a6aa/objects/fae3a4a3ea80fb9b89b9240483733c68 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/4f8edcf4e6e424204806764380180f83
  - http://speckle.xyz/streams/bf7685a6aa/objects/03183bd47ce710193f9d15449df4add8 on http://speckle.xyz/streams/bf7685a6aa/objects/4f8edcf4e6e424204806764380180f83 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/03183bd47ce710193f9d15449df4add8 on http://speckle.xyz/streams/bf7685a6aa/objects/4f8edcf4e6e424204806764380180f83 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/2108f108ffb96732d326f69c74d44431
  - http://speckle.xyz/streams/bf7685a6aa/objects/e9670962d6933d8e0a96caf59912d990 on http://speckle.xyz/streams/bf7685a6aa/objects/2108f108ffb96732d326f69c74d44431 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e9670962d6933d8e0a96caf59912d990 on http://speckle.xyz/streams/bf7685a6aa/objects/2108f108ffb96732d326f69c74d44431 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/PicoFARAD
  - http://qudt.org/vocab/unit/PicoFARAD expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/PicoFARAD expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/dimensionvector/A0E0L-2I0M-1H1T3D0
  - http://qudt.org/vocab/dimensionvector/A0E0L-2I0M-1H1T3D0 expected at most 1 uses of path qudt:latexDefinition
http://qudt.org/vocab/unit/MicroBQ-PER-KiloGM
  - http://qudt.org/vocab/unit/MicroBQ-PER-KiloGM expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MicroBQ-PER-KiloGM expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/f8e4955f9e4673a501618e8b354206b2
  - http://speckle.xyz/streams/bf7685a6aa/objects/2bab3a834da573d903244a9902f78aa1 on http://speckle.xyz/streams/bf7685a6aa/objects/f8e4955f9e4673a501618e8b354206b2 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/2bab3a834da573d903244a9902f78aa1 on http://speckle.xyz/streams/bf7685a6aa/objects/f8e4955f9e4673a501618e8b354206b2 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/constant/Value_NeutronMagneticMomentToNuclearMagnetonRatio
  - http://qudt.org/vocab/constant/Value_NeutronMagneticMomentToNuclearMagnetonRatio expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/quantitykind/Absorptance
  - http://qudt.org/vocab/quantitykind/Absorptance expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/cf88069de5f6c704bbf7c07d7a97f875
  - http://speckle.xyz/streams/bf7685a6aa/objects/598a0c5bed585c4e7fdfeb688cc62eb2 on http://speckle.xyz/streams/bf7685a6aa/objects/cf88069de5f6c704bbf7c07d7a97f875 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/598a0c5bed585c4e7fdfeb688cc62eb2 on http://speckle.xyz/streams/bf7685a6aa/objects/cf88069de5f6c704bbf7c07d7a97f875 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/KineticEnergy
  - http://qudt.org/vocab/unit/THERM_EC on http://qudt.org/vocab/quantitykind/KineticEnergy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/THERM_US on http://qudt.org/vocab/quantitykind/KineticEnergy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/NanoJ on http://qudt.org/vocab/quantitykind/KineticEnergy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PicoJ on http://qudt.org/vocab/quantitykind/KineticEnergy needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/ed0634dd6c97fbdbdb445f19e4f41929
  - http://speckle.xyz/streams/bf7685a6aa/objects/436cbdf042b2430d478faaa32f8345b5 on http://speckle.xyz/streams/bf7685a6aa/objects/ed0634dd6c97fbdbdb445f19e4f41929 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/436cbdf042b2430d478faaa32f8345b5 on http://speckle.xyz/streams/bf7685a6aa/objects/ed0634dd6c97fbdbdb445f19e4f41929 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/FemtoC
  - http://qudt.org/vocab/unit/FemtoC expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/FemtoC expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/GrandCanonicalPartitionFunction
  - http://qudt.org/vocab/quantitykind/GrandCanonicalPartitionFunction expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/LeakageFactor
  - http://qudt.org/vocab/quantitykind/LeakageFactor expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/unit/CentiM3-PER-K
  - http://qudt.org/vocab/unit/CentiM3-PER-K expected at most 1 uses of path qudt:plainTextDescription
  - http://qudt.org/vocab/unit/CentiM3-PER-K expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/CentiM3-PER-K expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/constant/Value_MuonMagneticMomentAnomaly
  - http://qudt.org/vocab/constant/Value_MuonMagneticMomentAnomaly expected at most 1 uses of path qudt:standardUncertainty
http://speckle.xyz/streams/bf7685a6aa/objects/e30008eb2eed893d89fed7f2f94b9525
  - http://speckle.xyz/streams/bf7685a6aa/objects/bd4c1bbaf855ba85dd10beedc3c5f7f4 on http://speckle.xyz/streams/bf7685a6aa/objects/e30008eb2eed893d89fed7f2f94b9525 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/bd4c1bbaf855ba85dd10beedc3c5f7f4 on http://speckle.xyz/streams/bf7685a6aa/objects/e30008eb2eed893d89fed7f2f94b9525 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/constant/Value_PlanckMassEnergyEquivalentInGeV
  - http://qudt.org/vocab/constant/Value_PlanckMassEnergyEquivalentInGeV expected at most 1 uses of path qudt:standardUncertainty
http://speckle.xyz/streams/bf7685a6aa/objects/d86847a12366464320497f8df032de66
  - http://speckle.xyz/streams/bf7685a6aa/objects/1dc2c8fcc6faad709669a1da5c22f1fb on http://speckle.xyz/streams/bf7685a6aa/objects/d86847a12366464320497f8df032de66 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/1dc2c8fcc6faad709669a1da5c22f1fb on http://speckle.xyz/streams/bf7685a6aa/objects/d86847a12366464320497f8df032de66 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/MegaV-A
  - http://qudt.org/vocab/unit/MegaV-A expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MegaV-A expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/4f1e169e9a80f247b21e712e60c4bcab
  - http://speckle.xyz/streams/bf7685a6aa/objects/5751a7a8490e489a1a00976905f9b01b on http://speckle.xyz/streams/bf7685a6aa/objects/4f1e169e9a80f247b21e712e60c4bcab needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/5751a7a8490e489a1a00976905f9b01b on http://speckle.xyz/streams/bf7685a6aa/objects/4f1e169e9a80f247b21e712e60c4bcab needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/b31b0ab09185746d2f2245c36f6da4a7
  - http://speckle.xyz/streams/bf7685a6aa/objects/f5d08d08b8a951b4e8c6f58253819260 on http://speckle.xyz/streams/bf7685a6aa/objects/b31b0ab09185746d2f2245c36f6da4a7 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/f5d08d08b8a951b4e8c6f58253819260 on http://speckle.xyz/streams/bf7685a6aa/objects/b31b0ab09185746d2f2245c36f6da4a7 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/constant/Value_ElectronMassInAtomicMassUnit
  - http://qudt.org/vocab/constant/Value_ElectronMassInAtomicMassUnit expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/unit/W-PER-M2-NanoM-SR
  - http://qudt.org/vocab/unit/W-PER-M2-NanoM-SR expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/W-PER-M2-NanoM-SR expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/c63f56dd6f85e05e865507b7f4339cb5
  - http://speckle.xyz/streams/bf7685a6aa/objects/f031db8cf74c1d34f7ec9caaa44e707f on http://speckle.xyz/streams/bf7685a6aa/objects/c63f56dd6f85e05e865507b7f4339cb5 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/f031db8cf74c1d34f7ec9caaa44e707f on http://speckle.xyz/streams/bf7685a6aa/objects/c63f56dd6f85e05e865507b7f4339cb5 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/d9acb3987cf5c4a8e12f2c9c7fd2bc16
  - http://speckle.xyz/streams/bf7685a6aa/objects/afd2940fe9aa7135187ec2abaaef0157 on http://speckle.xyz/streams/bf7685a6aa/objects/d9acb3987cf5c4a8e12f2c9c7fd2bc16 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/afd2940fe9aa7135187ec2abaaef0157 on http://speckle.xyz/streams/bf7685a6aa/objects/d9acb3987cf5c4a8e12f2c9c7fd2bc16 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/81e498816e3c3d6d96ae53ff9032fff1
  - http://speckle.xyz/streams/bf7685a6aa/objects/d10364e92e51783f043254a82d39aa37 on http://speckle.xyz/streams/bf7685a6aa/objects/81e498816e3c3d6d96ae53ff9032fff1 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/d10364e92e51783f043254a82d39aa37 on http://speckle.xyz/streams/bf7685a6aa/objects/81e498816e3c3d6d96ae53ff9032fff1 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H0T0D0
  - http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H0T0D0 expected at most 1 uses of path qudt:latexDefinition
http://qudt.org/vocab/dimensionvector/A0E0L-2I0M1H0T0D0
  - http://qudt.org/vocab/dimensionvector/A0E0L-2I0M1H0T0D0 expected at most 1 uses of path qudt:latexDefinition
http://qudt.org/vocab/quantitykind/ElectricDisplacementField
  - http://qudt.org/vocab/unit/A-HR-PER-M2 on http://qudt.org/vocab/quantitykind/ElectricDisplacementField needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/unit/MicroMOL-PER-M2-DAY
  - http://qudt.org/vocab/unit/MicroMOL-PER-M2-DAY expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MicroMOL-PER-M2-DAY expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/MilliGAL-PER-MO
  - http://qudt.org/vocab/unit/MilliGAL-PER-MO expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MilliGAL-PER-MO expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/VolumeDensityOfCharge
  - http://qudt.org/vocab/quantitykind/VolumeDensityOfCharge expected at most 1 uses of path qudt:plainTextDescription
http://qudt.org/vocab/unit/C_Ab-PER-CentiM2
  - http://qudt.org/vocab/unit/C_Ab-PER-CentiM2 expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/C_Ab-PER-CentiM2 expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/PER-YR
  - http://qudt.org/vocab/unit/PER-YR expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/PER-YR expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/353c4d96ec63a99add852b4915375775
  - http://speckle.xyz/streams/bf7685a6aa/objects/c004d7eef81cf6ab6b6ddf38b1cbabc1 on http://speckle.xyz/streams/bf7685a6aa/objects/353c4d96ec63a99add852b4915375775 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/c004d7eef81cf6ab6b6ddf38b1cbabc1 on http://speckle.xyz/streams/bf7685a6aa/objects/353c4d96ec63a99add852b4915375775 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/constant/Value_NuclearMagnetonInEVPerT
  - http://qudt.org/vocab/constant/Value_NuclearMagnetonInEVPerT expected at most 1 uses of path qudt:standardUncertainty
http://speckle.xyz/streams/bf7685a6aa/objects/28e100a959b20040694ded3159b28ed3
  - http://speckle.xyz/streams/bf7685a6aa/objects/e70d7bc92fc874a812626d682a29b370 on http://speckle.xyz/streams/bf7685a6aa/objects/28e100a959b20040694ded3159b28ed3 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e70d7bc92fc874a812626d682a29b370 on http://speckle.xyz/streams/bf7685a6aa/objects/28e100a959b20040694ded3159b28ed3 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/WK
  - http://qudt.org/vocab/unit/WK expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/WK expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/dcd260674975cd21803eb8688f431cd2
  - http://speckle.xyz/streams/bf7685a6aa/objects/d5b1769b748423fb98cace29a0366946 on http://speckle.xyz/streams/bf7685a6aa/objects/dcd260674975cd21803eb8688f431cd2 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/d5b1769b748423fb98cace29a0366946 on http://speckle.xyz/streams/bf7685a6aa/objects/dcd260674975cd21803eb8688f431cd2 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/WorkFunction
  - http://qudt.org/vocab/unit/PicoJ on http://qudt.org/vocab/quantitykind/WorkFunction needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/THERM_EC on http://qudt.org/vocab/quantitykind/WorkFunction needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/THERM_US on http://qudt.org/vocab/quantitykind/WorkFunction needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/NanoJ on http://qudt.org/vocab/quantitykind/WorkFunction needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/WorkFunction expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/constant/Value_DeuteronProtonMassRatio
  - http://qudt.org/vocab/constant/Value_DeuteronProtonMassRatio expected at most 1 uses of path qudt:standardUncertainty
http://speckle.xyz/streams/bf7685a6aa/objects/af793db933de38861859f72e868db188
  - http://speckle.xyz/streams/bf7685a6aa/objects/0e5bab348c0d7a43d3197d71b2ecdff0 on http://speckle.xyz/streams/bf7685a6aa/objects/af793db933de38861859f72e868db188 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/0e5bab348c0d7a43d3197d71b2ecdff0 on http://speckle.xyz/streams/bf7685a6aa/objects/af793db933de38861859f72e868db188 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/constant/Value_QuantumOfCirculation
  - http://qudt.org/vocab/constant/Value_QuantumOfCirculation expected at most 1 uses of path qudt:standardUncertainty
http://speckle.xyz/streams/bf7685a6aa/objects/3a660d024057b52e1fa444c0044e1f79
  - http://speckle.xyz/streams/bf7685a6aa/objects/6522948c17f68892a20ab290338e3478 on http://speckle.xyz/streams/bf7685a6aa/objects/3a660d024057b52e1fa444c0044e1f79 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/6522948c17f68892a20ab290338e3478 on http://speckle.xyz/streams/bf7685a6aa/objects/3a660d024057b52e1fa444c0044e1f79 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/02c8f1a980755ebae7d8c43f042754e5
  - http://speckle.xyz/streams/bf7685a6aa/objects/c8fb46fc939728e45252377481a55e6a on http://speckle.xyz/streams/bf7685a6aa/objects/02c8f1a980755ebae7d8c43f042754e5 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/c8fb46fc939728e45252377481a55e6a on http://speckle.xyz/streams/bf7685a6aa/objects/02c8f1a980755ebae7d8c43f042754e5 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/137acf14960562b731b55f26ebc8776c
  - http://speckle.xyz/streams/bf7685a6aa/objects/99404186dbba0f4f7f1398f8aa74f39f on http://speckle.xyz/streams/bf7685a6aa/objects/137acf14960562b731b55f26ebc8776c needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/99404186dbba0f4f7f1398f8aa74f39f on http://speckle.xyz/streams/bf7685a6aa/objects/137acf14960562b731b55f26ebc8776c needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/TemperatureBasedMassFlowRate
  - http://qudt.org/vocab/quantitykind/TemperatureBasedMassFlowRate expected at most 1 uses of path qudt:plainTextDescription
http://qudt.org/vocab/quantitykind/InformationContentExpressedAsALogarithmToBase10
  - http://qudt.org/vocab/quantitykind/InformationContentExpressedAsALogarithmToBase10 expected at most 1 uses of path qudt:plainTextDescription
http://qudt.org/vocab/unit/KiloTONNE
  - http://qudt.org/vocab/unit/KiloTONNE expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/KiloTONNE expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/Debye-WallerFactor
  - http://qudt.org/vocab/quantitykind/Debye-WallerFactor expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/821793012278619ab54619561c62b0ba
  - http://speckle.xyz/streams/bf7685a6aa/objects/9a31f4bc3b0b7b0d9e646386a04f1dd7 on http://speckle.xyz/streams/bf7685a6aa/objects/821793012278619ab54619561c62b0ba needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/9a31f4bc3b0b7b0d9e646386a04f1dd7 on http://speckle.xyz/streams/bf7685a6aa/objects/821793012278619ab54619561c62b0ba needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/e5fbb5a9fdc4ebea5f0f2e1d05e89a4a
  - http://speckle.xyz/streams/bf7685a6aa/objects/d912bfa2c63c5be2c0557c9a5ac0045b on http://speckle.xyz/streams/bf7685a6aa/objects/e5fbb5a9fdc4ebea5f0f2e1d05e89a4a needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/d912bfa2c63c5be2c0557c9a5ac0045b on http://speckle.xyz/streams/bf7685a6aa/objects/e5fbb5a9fdc4ebea5f0f2e1d05e89a4a needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/GFactorOfNucleus
  - http://qudt.org/vocab/quantitykind/GFactorOfNucleus expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/7a731bdcd8700d513a9956bcc7e7e333
  - http://speckle.xyz/streams/bf7685a6aa/objects/f9f9f58777812d5fea59aef9b267ba4e on http://speckle.xyz/streams/bf7685a6aa/objects/7a731bdcd8700d513a9956bcc7e7e333 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/f9f9f58777812d5fea59aef9b267ba4e on http://speckle.xyz/streams/bf7685a6aa/objects/7a731bdcd8700d513a9956bcc7e7e333 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/LinearCompressibility
  - http://qudt.org/vocab/quantitykind/LinearCompressibility expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/unit/QT_US-PER-SEC
  - http://qudt.org/vocab/unit/QT_US-PER-SEC expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/QT_US-PER-SEC expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/a329b9f5ac91df90e706576588889d89
  - http://speckle.xyz/streams/bf7685a6aa/objects/b1704240e49d5b4aa831d684c64ab3e7 on http://speckle.xyz/streams/bf7685a6aa/objects/a329b9f5ac91df90e706576588889d89 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/b1704240e49d5b4aa831d684c64ab3e7 on http://speckle.xyz/streams/bf7685a6aa/objects/a329b9f5ac91df90e706576588889d89 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/c6787c0e89957a3bc173980becabb3c0
  - http://speckle.xyz/streams/bf7685a6aa/objects/22ee737a989391acee4ea60354e91210 on http://speckle.xyz/streams/bf7685a6aa/objects/c6787c0e89957a3bc173980becabb3c0 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/22ee737a989391acee4ea60354e91210 on http://speckle.xyz/streams/bf7685a6aa/objects/c6787c0e89957a3bc173980becabb3c0 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/4b84371a7e0aadadb1204471b13b6b33
  - http://speckle.xyz/streams/bf7685a6aa/objects/1a82242a9320f719b8162c37bd9c580e on http://speckle.xyz/streams/bf7685a6aa/objects/4b84371a7e0aadadb1204471b13b6b33 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/1a82242a9320f719b8162c37bd9c580e on http://speckle.xyz/streams/bf7685a6aa/objects/4b84371a7e0aadadb1204471b13b6b33 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/Temperature
  - http://qudt.org/vocab/quantitykind/Temperature expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/dimensionvector/A0E0L3I0M-1H0T0D0
  - http://qudt.org/vocab/dimensionvector/A0E0L3I0M-1H0T0D0 expected at most 1 uses of path qudt:latexDefinition
http://qudt.org/vocab/constant/Value_BohrMagnetonInInverseMetersPerTesla
  - http://qudt.org/vocab/constant/Value_BohrMagnetonInInverseMetersPerTesla expected at most 1 uses of path qudt:standardUncertainty
http://speckle.xyz/streams/bf7685a6aa/objects/4462057ba36765401db76cbdfd5882b7
  - http://speckle.xyz/streams/bf7685a6aa/objects/e13dd4b578872dbd32e09626f5d25240 on http://speckle.xyz/streams/bf7685a6aa/objects/4462057ba36765401db76cbdfd5882b7 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e13dd4b578872dbd32e09626f5d25240 on http://speckle.xyz/streams/bf7685a6aa/objects/4462057ba36765401db76cbdfd5882b7 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/YR
  - http://qudt.org/vocab/unit/YR expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/YR expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/constant/FaradayConstant
  - http://qudt.org/vocab/constant/FaradayConstant expected at most 1 uses of path qudt:plainTextDescription
http://qudt.org/vocab/quantitykind/SpecificInternalEnergy
  - http://qudt.org/vocab/unit/W-HR-PER-KiloGM on http://qudt.org/vocab/quantitykind/SpecificInternalEnergy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/SpecificInternalEnergy expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/TimeRatio
  - http://qudt.org/vocab/unit/HR-PER-YR on http://qudt.org/vocab/quantitykind/TimeRatio needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/unit/GI_UK-PER-MIN
  - http://qudt.org/vocab/unit/GI_UK-PER-MIN expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/GI_UK-PER-MIN expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/0b4dbba735b1c081284499fd37a23223
  - http://speckle.xyz/streams/bf7685a6aa/objects/18357be2061a0be61152934dd62335e9 on http://speckle.xyz/streams/bf7685a6aa/objects/0b4dbba735b1c081284499fd37a23223 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/18357be2061a0be61152934dd62335e9 on http://speckle.xyz/streams/bf7685a6aa/objects/0b4dbba735b1c081284499fd37a23223 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/9e80e3c08b35b61f6fe45b56a2fdcbbc
  - http://speckle.xyz/streams/bf7685a6aa/objects/e9670962d6933d8e0a96caf59912d990 on http://speckle.xyz/streams/bf7685a6aa/objects/9e80e3c08b35b61f6fe45b56a2fdcbbc needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e9670962d6933d8e0a96caf59912d990 on http://speckle.xyz/streams/bf7685a6aa/objects/9e80e3c08b35b61f6fe45b56a2fdcbbc needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/MebiBYTE
  - http://qudt.org/vocab/unit/MebiBYTE expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MebiBYTE expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H0T1D0
  - http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H0T1D0 expected at most 1 uses of path qudt:latexDefinition
http://qudt.org/vocab/constant/Value_HelionMass
  - http://qudt.org/vocab/constant/Value_HelionMass expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/quantitykind/AtomScatteringFactor
  - http://qudt.org/vocab/quantitykind/AtomScatteringFactor expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/bb75dfb3762cfb84b6c91358fc0d4ff0
  - http://speckle.xyz/streams/bf7685a6aa/objects/03183bd47ce710193f9d15449df4add8 on http://speckle.xyz/streams/bf7685a6aa/objects/bb75dfb3762cfb84b6c91358fc0d4ff0 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/03183bd47ce710193f9d15449df4add8 on http://speckle.xyz/streams/bf7685a6aa/objects/bb75dfb3762cfb84b6c91358fc0d4ff0 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/PlanckCurrent
  - http://qudt.org/vocab/unit/PlanckCurrent expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/PlanckCurrent expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/C-PER-CentiM3
  - http://qudt.org/vocab/unit/C-PER-CentiM3 expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/C-PER-CentiM3 expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/constant/Value_BohrMagnetonInKPerT
  - http://qudt.org/vocab/constant/Value_BohrMagnetonInKPerT expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/unit/L-PER-MIN
  - http://qudt.org/vocab/unit/L-PER-MIN expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/L-PER-MIN expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/LinearAcceleration
  - http://qudt.org/vocab/unit/KiloM-PER-SEC2 on http://qudt.org/vocab/quantitykind/LinearAcceleration needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MI_US-PER-SEC2 on http://qudt.org/vocab/quantitykind/LinearAcceleration needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/YD-PER-SEC2 on http://qudt.org/vocab/quantitykind/LinearAcceleration needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MilliM-PER-SEC2 on http://qudt.org/vocab/quantitykind/LinearAcceleration needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/d3e0ec26181b863d74aac405f06e8435
  - http://speckle.xyz/streams/bf7685a6aa/objects/c1f8ba2020eb6468b1d37e4445924aa6 on http://speckle.xyz/streams/bf7685a6aa/objects/d3e0ec26181b863d74aac405f06e8435 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/c1f8ba2020eb6468b1d37e4445924aa6 on http://speckle.xyz/streams/bf7685a6aa/objects/d3e0ec26181b863d74aac405f06e8435 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/FissionFuelUtilizationFactor
  - http://qudt.org/vocab/unit/FLIGHT on http://qudt.org/vocab/quantitykind/FissionFuelUtilizationFactor needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/6e940d687d3230658d6d9eb5f8c77d73
  - http://speckle.xyz/streams/bf7685a6aa/objects/decfcfb9b61288ea8bb8b586936e4e71 on http://speckle.xyz/streams/bf7685a6aa/objects/6e940d687d3230658d6d9eb5f8c77d73 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/decfcfb9b61288ea8bb8b586936e4e71 on http://speckle.xyz/streams/bf7685a6aa/objects/6e940d687d3230658d6d9eb5f8c77d73 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/TorquePerAngle
  - http://qudt.org/vocab/unit/N-M-PER-DEG on http://qudt.org/vocab/quantitykind/TorquePerAngle needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/N-M-PER-MIN_Angle on http://qudt.org/vocab/quantitykind/TorquePerAngle needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/N-M-PER-ARCMIN on http://qudt.org/vocab/quantitykind/TorquePerAngle needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/c6610bcdaa983651fbb0125c5914810c
  - http://speckle.xyz/streams/bf7685a6aa/objects/03183bd47ce710193f9d15449df4add8 on http://speckle.xyz/streams/bf7685a6aa/objects/c6610bcdaa983651fbb0125c5914810c needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/03183bd47ce710193f9d15449df4add8 on http://speckle.xyz/streams/bf7685a6aa/objects/c6610bcdaa983651fbb0125c5914810c needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/00a44420676cc1751ab0a7c868911b45
  - http://speckle.xyz/streams/bf7685a6aa/objects/666041a31abcd611d10724fa62536d0b on http://speckle.xyz/streams/bf7685a6aa/objects/00a44420676cc1751ab0a7c868911b45 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/666041a31abcd611d10724fa62536d0b on http://speckle.xyz/streams/bf7685a6aa/objects/00a44420676cc1751ab0a7c868911b45 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/DEATHS-PER-1000000I-YR
  - http://qudt.org/vocab/unit/DEATHS-PER-1000000I-YR expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/DEATHS-PER-1000000I-YR expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/5a57ee24583f499153143f404e3b466c
  - http://speckle.xyz/streams/bf7685a6aa/objects/8d3ab9635d58bfdfc81c3f647c553b97 on http://speckle.xyz/streams/bf7685a6aa/objects/5a57ee24583f499153143f404e3b466c needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/8d3ab9635d58bfdfc81c3f647c553b97 on http://speckle.xyz/streams/bf7685a6aa/objects/5a57ee24583f499153143f404e3b466c needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/ParticleCurrentDensity
  - http://qudt.org/vocab/quantitykind/ParticleCurrentDensity expected at most 1 uses of path qudt:plainTextDescription
http://qudt.org/vocab/quantitykind/PermeabilityRatio
  - http://qudt.org/vocab/quantitykind/PermeabilityRatio expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/9b65ae32bc00ff2726ed19f36b3184f1
  - http://speckle.xyz/streams/bf7685a6aa/objects/2ae3884269b0a46e5ece05ce9e1fcd71 on http://speckle.xyz/streams/bf7685a6aa/objects/9b65ae32bc00ff2726ed19f36b3184f1 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/2ae3884269b0a46e5ece05ce9e1fcd71 on http://speckle.xyz/streams/bf7685a6aa/objects/9b65ae32bc00ff2726ed19f36b3184f1 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/d95931671386a279ff6ce2aa88972cdb
  - http://speckle.xyz/streams/bf7685a6aa/objects/5c9925a4674bb4a61b33bb0452c6deaf on http://speckle.xyz/streams/bf7685a6aa/objects/d95931671386a279ff6ce2aa88972cdb needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/5c9925a4674bb4a61b33bb0452c6deaf on http://speckle.xyz/streams/bf7685a6aa/objects/d95931671386a279ff6ce2aa88972cdb needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/c6290cf78cc3b09abd4345496913d9a4
  - http://speckle.xyz/streams/bf7685a6aa/objects/2ae3884269b0a46e5ece05ce9e1fcd71 on http://speckle.xyz/streams/bf7685a6aa/objects/c6290cf78cc3b09abd4345496913d9a4 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/2ae3884269b0a46e5ece05ce9e1fcd71 on http://speckle.xyz/streams/bf7685a6aa/objects/c6290cf78cc3b09abd4345496913d9a4 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/1dfc1d51c14f0053580777ae2fafe106
  - http://speckle.xyz/streams/bf7685a6aa/objects/fd13fab9dd5bf7fb5f34f8a47903f3c4 on http://speckle.xyz/streams/bf7685a6aa/objects/1dfc1d51c14f0053580777ae2fafe106 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/fd13fab9dd5bf7fb5f34f8a47903f3c4 on http://speckle.xyz/streams/bf7685a6aa/objects/1dfc1d51c14f0053580777ae2fafe106 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/SecondRadiationConstant
  - http://qudt.org/vocab/quantitykind/SecondRadiationConstant expected at most 1 uses of path qudt:plainTextDescription
http://qudt.org/vocab/dimensionvector/A0E0L-1I0M0H0T1D0
  - http://qudt.org/vocab/dimensionvector/A0E0L-1I0M0H0T1D0 expected at most 1 uses of path qudt:latexDefinition
http://qudt.org/vocab/unit/MilLength
  - http://qudt.org/vocab/unit/MilLength expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MilLength expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/MegaJ-PER-M2
  - http://qudt.org/vocab/unit/MegaJ-PER-M2 expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MegaJ-PER-M2 expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/SpecificHeatVolume
  - http://qudt.org/vocab/quantitykind/SpecificHeatVolume expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/Period
  - http://qudt.org/vocab/quantitykind/Period expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/MegaSEC on http://qudt.org/vocab/quantitykind/Period needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/Resistance
  - http://qudt.org/vocab/quantitykind/Resistance expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/ba25b76f8935958657f6aa033ff75699
  - http://speckle.xyz/streams/bf7685a6aa/objects/570de36b94b8ce5c1670646dcd7526e1 on http://speckle.xyz/streams/bf7685a6aa/objects/ba25b76f8935958657f6aa033ff75699 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/570de36b94b8ce5c1670646dcd7526e1 on http://speckle.xyz/streams/bf7685a6aa/objects/ba25b76f8935958657f6aa033ff75699 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/KiloGM-PER-DAY
  - http://qudt.org/vocab/unit/KiloGM-PER-DAY expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/KiloGM-PER-DAY expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/constant/Value_AtomicMassUnitKelvinRelationship
  - http://qudt.org/vocab/constant/Value_AtomicMassUnitKelvinRelationship expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/quantitykind/TemperatureBasedVelocity
  - http://qudt.org/vocab/quantitykind/TemperatureBasedVelocity expected at most 1 uses of path qudt:plainTextDescription
http://qudt.org/vocab/constant/Value_HartreeEnergyInEV
  - http://qudt.org/vocab/constant/Value_HartreeEnergyInEV expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/dimensionvector/A0E0L-2I0M1H0T-3D0
  - http://qudt.org/vocab/dimensionvector/A0E0L-2I0M1H0T-3D0 expected at most 1 uses of path qudt:latexDefinition
http://qudt.org/vocab/unit/MicroM3-PER-MilliL
  - http://qudt.org/vocab/unit/MicroM3-PER-MilliL expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MicroM3-PER-MilliL expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/constant/Value_DeuteronMassInAtomicMassUnit
  - http://qudt.org/vocab/constant/Value_DeuteronMassInAtomicMassUnit expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/unit/MI2
  - http://qudt.org/vocab/unit/MI2 expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MI2 expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/constant/Value_PlanckMass
  - http://qudt.org/vocab/constant/Value_PlanckMass expected at most 1 uses of path qudt:standardUncertainty
http://speckle.xyz/streams/bf7685a6aa/objects/9f93a48080c532d6a84f2192d05ec282
  - http://speckle.xyz/streams/bf7685a6aa/objects/5751a7a8490e489a1a00976905f9b01b on http://speckle.xyz/streams/bf7685a6aa/objects/9f93a48080c532d6a84f2192d05ec282 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/5751a7a8490e489a1a00976905f9b01b on http://speckle.xyz/streams/bf7685a6aa/objects/9f93a48080c532d6a84f2192d05ec282 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/27aef61af53546ff843f7433572bdc8d
  - http://speckle.xyz/streams/bf7685a6aa/objects/2bab3a834da573d903244a9902f78aa1 on http://speckle.xyz/streams/bf7685a6aa/objects/27aef61af53546ff843f7433572bdc8d needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/2bab3a834da573d903244a9902f78aa1 on http://speckle.xyz/streams/bf7685a6aa/objects/27aef61af53546ff843f7433572bdc8d needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/Susceptance
  - http://qudt.org/vocab/quantitykind/Susceptance expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/6cf0356b8b9eef9173d317b5d80721fc
  - http://speckle.xyz/streams/bf7685a6aa/objects/e192c1307d2ac8dcde3ff49ce414db81 on http://speckle.xyz/streams/bf7685a6aa/objects/6cf0356b8b9eef9173d317b5d80721fc needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e192c1307d2ac8dcde3ff49ce414db81 on http://speckle.xyz/streams/bf7685a6aa/objects/6cf0356b8b9eef9173d317b5d80721fc needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/SpinQuantumNumber
  - http://qudt.org/vocab/quantitykind/SpinQuantumNumber expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/PowerPerElectricCharge
  - http://qudt.org/vocab/quantitykind/PowerPerElectricCharge expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/4d1af41845573e1607ba793244a45616
  - http://speckle.xyz/streams/bf7685a6aa/objects/fd13fab9dd5bf7fb5f34f8a47903f3c4 on http://speckle.xyz/streams/bf7685a6aa/objects/4d1af41845573e1607ba793244a45616 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/fd13fab9dd5bf7fb5f34f8a47903f3c4 on http://speckle.xyz/streams/bf7685a6aa/objects/4d1af41845573e1607ba793244a45616 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/InversePressure
  - http://qudt.org/vocab/unit/PER-MILLE-PSI on http://qudt.org/vocab/quantitykind/InversePressure needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PER-MegaPA on http://qudt.org/vocab/quantitykind/InversePressure needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/constant/Value_NuclearMagneton
  - http://qudt.org/vocab/constant/Value_NuclearMagneton expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/unit/CentiM3-PER-SEC
  - http://qudt.org/vocab/unit/CentiM3-PER-SEC expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/CentiM3-PER-SEC expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/PicoMOL-PER-L-DAY
  - http://qudt.org/vocab/unit/PicoMOL-PER-L-DAY expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/PicoMOL-PER-L-DAY expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/ERG
  - http://qudt.org/vocab/unit/ERG expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/ERG expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/NuclearEnergy
  - http://qudt.org/vocab/unit/NanoJ on http://qudt.org/vocab/quantitykind/NuclearEnergy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/THERM_EC on http://qudt.org/vocab/quantitykind/NuclearEnergy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PicoJ on http://qudt.org/vocab/quantitykind/NuclearEnergy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/THERM_US on http://qudt.org/vocab/quantitykind/NuclearEnergy needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/4e985920b24b46d79da1ec84bd622fe3
  - http://speckle.xyz/streams/bf7685a6aa/objects/87f74a2a608ccd6932697eb7aea3ec7c on http://speckle.xyz/streams/bf7685a6aa/objects/4e985920b24b46d79da1ec84bd622fe3 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/87f74a2a608ccd6932697eb7aea3ec7c on http://speckle.xyz/streams/bf7685a6aa/objects/4e985920b24b46d79da1ec84bd622fe3 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/constant/Value_HertzKelvinRelationship
  - http://qudt.org/vocab/constant/Value_HertzKelvinRelationship expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/quantitykind/AreaMass
  - http://qudt.org/vocab/unit/NanoGM-PER-CentiM2 on http://qudt.org/vocab/quantitykind/AreaMass needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MicroGM-PER-CentiM2 on http://qudt.org/vocab/quantitykind/AreaMass needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/LB-PER-YD2 on http://qudt.org/vocab/quantitykind/AreaMass needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MicroGM-PER-IN2 on http://qudt.org/vocab/quantitykind/AreaMass needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GM-PER-MilliM2 on http://qudt.org/vocab/quantitykind/AreaMass needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/OZ-PER-IN2 on http://qudt.org/vocab/quantitykind/AreaMass needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/8440a7ac59963dcf9713155c0865ba47
  - http://speckle.xyz/streams/bf7685a6aa/objects/416e54a4b145034d01f2f05617c72569 on http://speckle.xyz/streams/bf7685a6aa/objects/8440a7ac59963dcf9713155c0865ba47 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/416e54a4b145034d01f2f05617c72569 on http://speckle.xyz/streams/bf7685a6aa/objects/8440a7ac59963dcf9713155c0865ba47 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/c2f53dd9a0d26979869d42ba93501ebe
  - http://speckle.xyz/streams/bf7685a6aa/objects/d10364e92e51783f043254a82d39aa37 on http://speckle.xyz/streams/bf7685a6aa/objects/c2f53dd9a0d26979869d42ba93501ebe needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/d10364e92e51783f043254a82d39aa37 on http://speckle.xyz/streams/bf7685a6aa/objects/c2f53dd9a0d26979869d42ba93501ebe needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/5c6299bf0d39b6269c7f8817f51f35e0
  - http://speckle.xyz/streams/bf7685a6aa/objects/f73afc48debde36cdd78d51a0b31c30a on http://speckle.xyz/streams/bf7685a6aa/objects/5c6299bf0d39b6269c7f8817f51f35e0 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/f73afc48debde36cdd78d51a0b31c30a on http://speckle.xyz/streams/bf7685a6aa/objects/5c6299bf0d39b6269c7f8817f51f35e0 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/PicoM
  - http://qudt.org/vocab/unit/PicoM expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/PicoM expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/constant/Value_AtomicMassUnitHertzRelationship
  - http://qudt.org/vocab/constant/Value_AtomicMassUnitHertzRelationship expected at most 1 uses of path qudt:standardUncertainty
http://speckle.xyz/streams/bf7685a6aa/objects/f8b0951a940c463c90026af83327abe3
  - http://speckle.xyz/streams/bf7685a6aa/objects/9afce26e156ee27c0851a8c7906ff506 on http://speckle.xyz/streams/bf7685a6aa/objects/f8b0951a940c463c90026af83327abe3 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/9afce26e156ee27c0851a8c7906ff506 on http://speckle.xyz/streams/bf7685a6aa/objects/f8b0951a940c463c90026af83327abe3 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/c4eab2f115584b5ba9f4de56e7682f83
  - http://speckle.xyz/streams/bf7685a6aa/objects/0e5bab348c0d7a43d3197d71b2ecdff0 on http://speckle.xyz/streams/bf7685a6aa/objects/c4eab2f115584b5ba9f4de56e7682f83 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/0e5bab348c0d7a43d3197d71b2ecdff0 on http://speckle.xyz/streams/bf7685a6aa/objects/c4eab2f115584b5ba9f4de56e7682f83 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/NanoMOL-PER-GM-SEC
  - http://qudt.org/vocab/unit/NanoMOL-PER-GM-SEC expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/NanoMOL-PER-GM-SEC expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/MI3
  - http://qudt.org/vocab/unit/MI3 expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MI3 expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/MilliGM-PER-M2-SEC
  - http://qudt.org/vocab/unit/MilliGM-PER-M2-SEC expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MilliGM-PER-M2-SEC expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/f24be800ac8aa1d0c5d47d0816714d45
  - http://speckle.xyz/streams/bf7685a6aa/objects/e8e61103cdf42e0fd7b5f6b6301376d0 on http://speckle.xyz/streams/bf7685a6aa/objects/f24be800ac8aa1d0c5d47d0816714d45 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e8e61103cdf42e0fd7b5f6b6301376d0 on http://speckle.xyz/streams/bf7685a6aa/objects/f24be800ac8aa1d0c5d47d0816714d45 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/AttenuationCoefficient
  - http://qudt.org/vocab/quantitykind/AttenuationCoefficient expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/0613871e93e525eec1ef264c66177afa
  - http://speckle.xyz/streams/bf7685a6aa/objects/62014ffc2035e78fa2838efe58021617 on http://speckle.xyz/streams/bf7685a6aa/objects/0613871e93e525eec1ef264c66177afa needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/62014ffc2035e78fa2838efe58021617 on http://speckle.xyz/streams/bf7685a6aa/objects/0613871e93e525eec1ef264c66177afa needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/ThermalCoefficientOfLinearExpansion
  - http://qudt.org/vocab/quantitykind/ThermalCoefficientOfLinearExpansion expected at most 1 uses of path qudt:plainTextDescription
http://qudt.org/vocab/constant/Value_BoltzmannConstantInInverseMetersPerKelvin
  - http://qudt.org/vocab/constant/Value_BoltzmannConstantInInverseMetersPerKelvin expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/quantitykind/AngularWavenumber
  - http://qudt.org/vocab/quantitykind/AngularWavenumber expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/5b716e6f858da5b48a34a0c1932b3ef4
  - http://speckle.xyz/streams/bf7685a6aa/objects/42b77602b43873e4fbc17acb6b3b7f34 on http://speckle.xyz/streams/bf7685a6aa/objects/5b716e6f858da5b48a34a0c1932b3ef4 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/42b77602b43873e4fbc17acb6b3b7f34 on http://speckle.xyz/streams/bf7685a6aa/objects/5b716e6f858da5b48a34a0c1932b3ef4 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/MilliGM-PER-M2-HR
  - http://qudt.org/vocab/unit/MilliGM-PER-M2-HR expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MilliGM-PER-M2-HR expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/1293842dc3b8eadaa5ba95c64555d543
  - http://speckle.xyz/streams/bf7685a6aa/objects/e13dd4b578872dbd32e09626f5d25240 on http://speckle.xyz/streams/bf7685a6aa/objects/1293842dc3b8eadaa5ba95c64555d543 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e13dd4b578872dbd32e09626f5d25240 on http://speckle.xyz/streams/bf7685a6aa/objects/1293842dc3b8eadaa5ba95c64555d543 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/72dc95e18434e8915c0e7c0656e2e718
  - http://speckle.xyz/streams/bf7685a6aa/objects/b1704240e49d5b4aa831d684c64ab3e7 on http://speckle.xyz/streams/bf7685a6aa/objects/72dc95e18434e8915c0e7c0656e2e718 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/b1704240e49d5b4aa831d684c64ab3e7 on http://speckle.xyz/streams/bf7685a6aa/objects/72dc95e18434e8915c0e7c0656e2e718 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/GigaC-PER-M3
  - http://qudt.org/vocab/unit/GigaC-PER-M3 expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/GigaC-PER-M3 expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/MicroFARAD-PER-M
  - http://qudt.org/vocab/unit/MicroFARAD-PER-M expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MicroFARAD-PER-M expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/320eabfb6aaccb81d09834014fe7d387
  - http://speckle.xyz/streams/bf7685a6aa/objects/8d3ab9635d58bfdfc81c3f647c553b97 on http://speckle.xyz/streams/bf7685a6aa/objects/320eabfb6aaccb81d09834014fe7d387 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/8d3ab9635d58bfdfc81c3f647c553b97 on http://speckle.xyz/streams/bf7685a6aa/objects/320eabfb6aaccb81d09834014fe7d387 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/HelmholtzEnergy
  - http://qudt.org/vocab/unit/THERM_EC on http://qudt.org/vocab/quantitykind/HelmholtzEnergy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PicoJ on http://qudt.org/vocab/quantitykind/HelmholtzEnergy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/THERM_US on http://qudt.org/vocab/quantitykind/HelmholtzEnergy needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/NanoJ on http://qudt.org/vocab/quantitykind/HelmholtzEnergy needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/901562ec519a8c0c50a409fa020c8b91
  - http://speckle.xyz/streams/bf7685a6aa/objects/b1704240e49d5b4aa831d684c64ab3e7 on http://speckle.xyz/streams/bf7685a6aa/objects/901562ec519a8c0c50a409fa020c8b91 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/b1704240e49d5b4aa831d684c64ab3e7 on http://speckle.xyz/streams/bf7685a6aa/objects/901562ec519a8c0c50a409fa020c8b91 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/75156f213aec644856f858a85b74c5b8
  - http://speckle.xyz/streams/bf7685a6aa/objects/089b7b828f28a846fcbcbd103c8492e5 on http://speckle.xyz/streams/bf7685a6aa/objects/75156f213aec644856f858a85b74c5b8 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/089b7b828f28a846fcbcbd103c8492e5 on http://speckle.xyz/streams/bf7685a6aa/objects/75156f213aec644856f858a85b74c5b8 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/34cc427d78df1d173f97611e471b751d
  - http://speckle.xyz/streams/bf7685a6aa/objects/5751a7a8490e489a1a00976905f9b01b on http://speckle.xyz/streams/bf7685a6aa/objects/34cc427d78df1d173f97611e471b751d needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/5751a7a8490e489a1a00976905f9b01b on http://speckle.xyz/streams/bf7685a6aa/objects/34cc427d78df1d173f97611e471b751d needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/PolarMomentOfInertia
  - http://qudt.org/vocab/quantitykind/PolarMomentOfInertia expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/BucklingFactor
  - http://qudt.org/vocab/unit/FLIGHT on http://qudt.org/vocab/quantitykind/BucklingFactor needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/181a3c94ff1165214d923aa8005b5a56
  - http://speckle.xyz/streams/bf7685a6aa/objects/c5380b973ef73d9425d8fd919e1a7538 on http://speckle.xyz/streams/bf7685a6aa/objects/181a3c94ff1165214d923aa8005b5a56 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/c5380b973ef73d9425d8fd919e1a7538 on http://speckle.xyz/streams/bf7685a6aa/objects/181a3c94ff1165214d923aa8005b5a56 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/ModulusOfLinearSubgradeReaction
  - http://qudt.org/vocab/unit/PDL-PER-IN2 on http://qudt.org/vocab/quantitykind/ModulusOfLinearSubgradeReaction needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/ModulusOfLinearSubgradeReaction expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/InformationEntropy
  - http://qudt.org/vocab/quantitykind/InformationEntropy expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/8095ecffd0fe8ae6693b3453cbbd3501
  - http://speckle.xyz/streams/bf7685a6aa/objects/ea809d7a6106eaba6d818bfdb3e3e5b9 on http://speckle.xyz/streams/bf7685a6aa/objects/8095ecffd0fe8ae6693b3453cbbd3501 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/ea809d7a6106eaba6d818bfdb3e3e5b9 on http://speckle.xyz/streams/bf7685a6aa/objects/8095ecffd0fe8ae6693b3453cbbd3501 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/Unbalance
  - http://qudt.org/vocab/unit/KiloGM-M on http://qudt.org/vocab/quantitykind/Unbalance needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Unbalance expected at most 1 uses of path qudt:plainTextDescription
http://qudt.org/vocab/dimensionvector/A0E0L-2I1M-1H0T3D1
  - http://qudt.org/vocab/dimensionvector/A0E0L-2I1M-1H0T3D1 expected at most 1 uses of path qudt:latexDefinition
http://speckle.xyz/streams/bf7685a6aa/objects/830fc12e3cd6f72422caa764c8d16638
  - http://speckle.xyz/streams/bf7685a6aa/objects/ce3f60d6e3b49ebc1f1e6990046a5617 on http://speckle.xyz/streams/bf7685a6aa/objects/830fc12e3cd6f72422caa764c8d16638 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/ce3f60d6e3b49ebc1f1e6990046a5617 on http://speckle.xyz/streams/bf7685a6aa/objects/830fc12e3cd6f72422caa764c8d16638 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/EquilibriumConstantOnConcentrationBasis
  - http://qudt.org/vocab/quantitykind/EquilibriumConstantOnConcentrationBasis expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/dimensionvector/A-1E0L2I0M1H0T-2D0
  - http://qudt.org/vocab/dimensionvector/A-1E0L2I0M1H0T-2D0 expected at most 1 uses of path qudt:latexDefinition
http://qudt.org/vocab/quantitykind/TorqueConstant
  - http://qudt.org/vocab/quantitykind/TorqueConstant expected at most 1 uses of path qudt:plainTextDescription
http://qudt.org/vocab/dimensionvector/A0E0L3I0M-1H-1T0D0
  - http://qudt.org/vocab/dimensionvector/A0E0L3I0M-1H-1T0D0 expected at most 1 uses of path qudt:latexDefinition
http://qudt.org/vocab/constant/Value_TauMassEnergyEquivalentInMeV
  - http://qudt.org/vocab/constant/Value_TauMassEnergyEquivalentInMeV expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/constant/Value_TauMassEnergyEquivalent
  - http://qudt.org/vocab/constant/Value_TauMassEnergyEquivalent expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/quantitykind/RespiratoryRate
  - http://qudt.org/vocab/quantitykind/RespiratoryRate expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/unit/MegaA
  - http://qudt.org/vocab/unit/MegaA expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MegaA expected at most 1 uses of path qudt:plainTextDescription
  - http://qudt.org/vocab/unit/MegaA expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/5485f2fd197d8c2b174721290c36201b
  - http://speckle.xyz/streams/bf7685a6aa/objects/22ee737a989391acee4ea60354e91210 on http://speckle.xyz/streams/bf7685a6aa/objects/5485f2fd197d8c2b174721290c36201b needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/22ee737a989391acee4ea60354e91210 on http://speckle.xyz/streams/bf7685a6aa/objects/5485f2fd197d8c2b174721290c36201b needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/CanonicalPartitionFunction
  - http://qudt.org/vocab/quantitykind/CanonicalPartitionFunction expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/96c92d9107b35581b43ebcbdfc1c0267
  - http://speckle.xyz/streams/bf7685a6aa/objects/688eea56b7b78e0f7c7b90dced966926 on http://speckle.xyz/streams/bf7685a6aa/objects/96c92d9107b35581b43ebcbdfc1c0267 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/688eea56b7b78e0f7c7b90dced966926 on http://speckle.xyz/streams/bf7685a6aa/objects/96c92d9107b35581b43ebcbdfc1c0267 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/ThrusterPowerToThrustEfficiency
  - http://qudt.org/vocab/unit/LB-PER-SEC-PSI on http://qudt.org/vocab/quantitykind/ThrusterPowerToThrustEfficiency needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/LB-PER-MIN-PSI on http://qudt.org/vocab/quantitykind/ThrusterPowerToThrustEfficiency needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/LB-PER-HR-PSI on http://qudt.org/vocab/quantitykind/ThrusterPowerToThrustEfficiency needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H0T-1D0
  - http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H0T-1D0 expected at most 1 uses of path qudt:latexDefinition
http://speckle.xyz/streams/bf7685a6aa/objects/0d3e942c06ccdaa4158ebc62edbcfe1e
  - http://speckle.xyz/streams/bf7685a6aa/objects/fd13fab9dd5bf7fb5f34f8a47903f3c4 on http://speckle.xyz/streams/bf7685a6aa/objects/0d3e942c06ccdaa4158ebc62edbcfe1e needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/fd13fab9dd5bf7fb5f34f8a47903f3c4 on http://speckle.xyz/streams/bf7685a6aa/objects/0d3e942c06ccdaa4158ebc62edbcfe1e needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/67a9697a84ddd54091a57e80021d352b
  - http://speckle.xyz/streams/bf7685a6aa/objects/077fed24ea7f83e4fab775c9a2571143 on http://speckle.xyz/streams/bf7685a6aa/objects/67a9697a84ddd54091a57e80021d352b needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/077fed24ea7f83e4fab775c9a2571143 on http://speckle.xyz/streams/bf7685a6aa/objects/67a9697a84ddd54091a57e80021d352b needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/constant/Value_BoltzmannConstantInHzPerK
  - http://qudt.org/vocab/constant/Value_BoltzmannConstantInHzPerK expected at most 1 uses of path qudt:standardUncertainty
http://speckle.xyz/streams/bf7685a6aa/objects/0c52fb81702d5cdd63024f118419484c
  - http://speckle.xyz/streams/bf7685a6aa/objects/16c0ff093fe0cf359342709f754806e1 on http://speckle.xyz/streams/bf7685a6aa/objects/0c52fb81702d5cdd63024f118419484c needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/16c0ff093fe0cf359342709f754806e1 on http://speckle.xyz/streams/bf7685a6aa/objects/0c52fb81702d5cdd63024f118419484c needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/7cb45cdf0272553b5c4f09ce74d6cd95
  - http://speckle.xyz/streams/bf7685a6aa/objects/e9490e3512dab7db58f40a947313427f on http://speckle.xyz/streams/bf7685a6aa/objects/7cb45cdf0272553b5c4f09ce74d6cd95 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e9490e3512dab7db58f40a947313427f on http://speckle.xyz/streams/bf7685a6aa/objects/7cb45cdf0272553b5c4f09ce74d6cd95 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/PlanckTemperature
  - http://qudt.org/vocab/unit/PlanckTemperature expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/PlanckTemperature expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/NUM-PER-HA
  - http://qudt.org/vocab/unit/NUM-PER-HA expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/NUM-PER-HA expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/EV-SEC
  - http://qudt.org/vocab/unit/EV-SEC expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/EV-SEC expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/DebyeAngularFrequency
  - http://qudt.org/vocab/quantitykind/DebyeAngularFrequency expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/f65a5c171ee24207465d48a3949aa94d
  - http://speckle.xyz/streams/bf7685a6aa/objects/436cbdf042b2430d478faaa32f8345b5 on http://speckle.xyz/streams/bf7685a6aa/objects/f65a5c171ee24207465d48a3949aa94d needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/436cbdf042b2430d478faaa32f8345b5 on http://speckle.xyz/streams/bf7685a6aa/objects/f65a5c171ee24207465d48a3949aa94d needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/6ba1f001fe0a67128ab46738b874b597
  - http://speckle.xyz/streams/bf7685a6aa/objects/6522948c17f68892a20ab290338e3478 on http://speckle.xyz/streams/bf7685a6aa/objects/6ba1f001fe0a67128ab46738b874b597 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/6522948c17f68892a20ab290338e3478 on http://speckle.xyz/streams/bf7685a6aa/objects/6ba1f001fe0a67128ab46738b874b597 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/5c7221180e4efd4a211d52df704d4a9b
  - http://speckle.xyz/streams/bf7685a6aa/objects/c8fb46fc939728e45252377481a55e6a on http://speckle.xyz/streams/bf7685a6aa/objects/5c7221180e4efd4a211d52df704d4a9b needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/c8fb46fc939728e45252377481a55e6a on http://speckle.xyz/streams/bf7685a6aa/objects/5c7221180e4efd4a211d52df704d4a9b needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/AverageVacuumThrust
  - http://qudt.org/vocab/unit/KiloGM-M-PER-SEC2 on http://qudt.org/vocab/quantitykind/AverageVacuumThrust needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/P on http://qudt.org/vocab/quantitykind/AverageVacuumThrust needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/POND on http://qudt.org/vocab/quantitykind/AverageVacuumThrust needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/constant/Value_DeuteronMassEnergyEquivalent
  - http://qudt.org/vocab/constant/Value_DeuteronMassEnergyEquivalent expected at most 1 uses of path qudt:standardUncertainty
http://speckle.xyz/streams/bf7685a6aa/objects/d1cd0e152a87863d6de658a3332163c3
  - http://speckle.xyz/streams/bf7685a6aa/objects/8290128282ec5e0854b6b095c1cfbe9b on http://speckle.xyz/streams/bf7685a6aa/objects/d1cd0e152a87863d6de658a3332163c3 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/8290128282ec5e0854b6b095c1cfbe9b on http://speckle.xyz/streams/bf7685a6aa/objects/d1cd0e152a87863d6de658a3332163c3 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/81b13cab27ffbdc7cfabee35019a8450
  - http://speckle.xyz/streams/bf7685a6aa/objects/0e5bab348c0d7a43d3197d71b2ecdff0 on http://speckle.xyz/streams/bf7685a6aa/objects/81b13cab27ffbdc7cfabee35019a8450 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/0e5bab348c0d7a43d3197d71b2ecdff0 on http://speckle.xyz/streams/bf7685a6aa/objects/81b13cab27ffbdc7cfabee35019a8450 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/constant/Value_MuonProtonMagneticMomentRatio
  - http://qudt.org/vocab/constant/Value_MuonProtonMagneticMomentRatio expected at most 1 uses of path qudt:standardUncertainty
http://speckle.xyz/streams/bf7685a6aa/objects/defae5d613a5ded50e3a958ba8961848
  - http://speckle.xyz/streams/bf7685a6aa/objects/9a31f4bc3b0b7b0d9e646386a04f1dd7 on http://speckle.xyz/streams/bf7685a6aa/objects/defae5d613a5ded50e3a958ba8961848 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/9a31f4bc3b0b7b0d9e646386a04f1dd7 on http://speckle.xyz/streams/bf7685a6aa/objects/defae5d613a5ded50e3a958ba8961848 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/ERG-PER-CentiM
  - http://qudt.org/vocab/unit/ERG-PER-CentiM expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/ERG-PER-CentiM expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/PressureBasedMassFlow
  - http://qudt.org/vocab/quantitykind/PressureBasedMassFlow expected at most 1 uses of path qudt:plainTextDescription
http://speckle.xyz/streams/bf7685a6aa/objects/31ce5cd0092893f43451556d1dc68674
  - http://speckle.xyz/streams/bf7685a6aa/objects/1aa18520ad959a6b477ce9a6cd61c432 on http://speckle.xyz/streams/bf7685a6aa/objects/31ce5cd0092893f43451556d1dc68674 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/1aa18520ad959a6b477ce9a6cd61c432 on http://speckle.xyz/streams/bf7685a6aa/objects/31ce5cd0092893f43451556d1dc68674 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/NUM-PER-YR
  - http://qudt.org/vocab/unit/NUM-PER-YR expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/NUM-PER-YR expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/dimensionvector/A0E2L2I0M-1H0T2D0
  - http://qudt.org/vocab/dimensionvector/A0E2L2I0M-1H0T2D0 expected at most 1 uses of path qudt:latexDefinition
http://qudt.org/vocab/unit/DeciM3-PER-HR
  - http://qudt.org/vocab/unit/DeciM3-PER-HR expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/DeciM3-PER-HR expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/MicroMOL
  - http://qudt.org/vocab/unit/MicroMOL expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MicroMOL expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/02c90f3aed5767a9c3da7d60618ac7a2
  - http://speckle.xyz/streams/bf7685a6aa/objects/f031db8cf74c1d34f7ec9caaa44e707f on http://speckle.xyz/streams/bf7685a6aa/objects/02c90f3aed5767a9c3da7d60618ac7a2 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/f031db8cf74c1d34f7ec9caaa44e707f on http://speckle.xyz/streams/bf7685a6aa/objects/02c90f3aed5767a9c3da7d60618ac7a2 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/e18400f7f7959bfde6898e6816b3c565
  - http://speckle.xyz/streams/bf7685a6aa/objects/ca6cec87b2cfc139e5610127872951ea on http://speckle.xyz/streams/bf7685a6aa/objects/e18400f7f7959bfde6898e6816b3c565 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/ca6cec87b2cfc139e5610127872951ea on http://speckle.xyz/streams/bf7685a6aa/objects/e18400f7f7959bfde6898e6816b3c565 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/fcf01970e97d283a13cfe4040d8ce288
  - http://speckle.xyz/streams/bf7685a6aa/objects/2bab3a834da573d903244a9902f78aa1 on http://speckle.xyz/streams/bf7685a6aa/objects/fcf01970e97d283a13cfe4040d8ce288 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/2bab3a834da573d903244a9902f78aa1 on http://speckle.xyz/streams/bf7685a6aa/objects/fcf01970e97d283a13cfe4040d8ce288 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/de0124c038f8d74e2c7593480c7126e0
  - http://speckle.xyz/streams/bf7685a6aa/objects/17592c23e3930128143ddd679cd6a0d0 on http://speckle.xyz/streams/bf7685a6aa/objects/de0124c038f8d74e2c7593480c7126e0 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/17592c23e3930128143ddd679cd6a0d0 on http://speckle.xyz/streams/bf7685a6aa/objects/de0124c038f8d74e2c7593480c7126e0 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/5f826ca12db14d6c6f60d0e9b78da659
  - http://speckle.xyz/streams/bf7685a6aa/objects/f9f9f58777812d5fea59aef9b267ba4e on http://speckle.xyz/streams/bf7685a6aa/objects/5f826ca12db14d6c6f60d0e9b78da659 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/f9f9f58777812d5fea59aef9b267ba4e on http://speckle.xyz/streams/bf7685a6aa/objects/5f826ca12db14d6c6f60d0e9b78da659 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/PER-MilliM3
  - http://qudt.org/vocab/unit/PER-MilliM3 expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/PER-MilliM3 expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/RelativePressureCoefficient
  - http://qudt.org/vocab/unit/PER-DEG_F on http://qudt.org/vocab/quantitykind/RelativePressureCoefficient needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PER-MegaK on http://qudt.org/vocab/quantitykind/RelativePressureCoefficient needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/Dissipance
  - http://qudt.org/vocab/quantitykind/Dissipance expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/unit/K-PER-W
  - http://qudt.org/vocab/unit/K-PER-W expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/DragCoefficient
  - http://qudt.org/vocab/unit/FLIGHT on http://qudt.org/vocab/quantitykind/DragCoefficient needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/DragCoefficient expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/constant/Value_TauProtonMassRatio
  - http://qudt.org/vocab/constant/Value_TauProtonMassRatio expected at most 1 uses of path qudt:standardUncertainty
http://speckle.xyz/streams/bf7685a6aa/objects/08c5961bfe563167a1131b996b364d74
  - http://speckle.xyz/streams/bf7685a6aa/objects/7dbc8030bcb7a9e9a7a560eec36e9290 on http://speckle.xyz/streams/bf7685a6aa/objects/08c5961bfe563167a1131b996b364d74 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/7dbc8030bcb7a9e9a7a560eec36e9290 on http://speckle.xyz/streams/bf7685a6aa/objects/08c5961bfe563167a1131b996b364d74 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/43483f4043d07f8f6ffdb39e3b0da1fe
  - http://speckle.xyz/streams/bf7685a6aa/objects/e9670962d6933d8e0a96caf59912d990 on http://speckle.xyz/streams/bf7685a6aa/objects/43483f4043d07f8f6ffdb39e3b0da1fe needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e9670962d6933d8e0a96caf59912d990 on http://speckle.xyz/streams/bf7685a6aa/objects/43483f4043d07f8f6ffdb39e3b0da1fe needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T-1D1
  - http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T-1D1 expected at most 1 uses of path qudt:latexDefinition
http://speckle.xyz/streams/bf7685a6aa/objects/978e64f766e711a6cc73f3a4d4c0a3e9
  - http://speckle.xyz/streams/bf7685a6aa/objects/570de36b94b8ce5c1670646dcd7526e1 on http://speckle.xyz/streams/bf7685a6aa/objects/978e64f766e711a6cc73f3a4d4c0a3e9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/570de36b94b8ce5c1670646dcd7526e1 on http://speckle.xyz/streams/bf7685a6aa/objects/978e64f766e711a6cc73f3a4d4c0a3e9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/MilliL-PER-K
  - http://qudt.org/vocab/unit/MilliL-PER-K expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MilliL-PER-K expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/constant/Value_NeutronToShieldedProtonMagneticMomentRatio
  - http://qudt.org/vocab/constant/Value_NeutronToShieldedProtonMagneticMomentRatio expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/quantitykind/AreicChargeDensityOrElectricFluxDensityOrElectricPolarization
  - http://qudt.org/vocab/quantitykind/AreicChargeDensityOrElectricFluxDensityOrElectricPolarization expected at most 1 uses of path qudt:plainTextDescription
http://qudt.org/vocab/quantitykind/MassConcentrationOfWaterVapour
  - http://qudt.org/vocab/quantitykind/MassConcentrationOfWaterVapour expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/quantitykind/MassConcentrationOfWaterVapour expected at most 1 uses of path qudt:plainTextDescription
http://qudt.org/vocab/unit/FT-PER-DAY
  - http://qudt.org/vocab/unit/FT-PER-DAY expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/FT-PER-DAY expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/VentilationRatePerFloorArea
  - http://qudt.org/vocab/quantitykind/VentilationRatePerFloorArea expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/SolidStateDiffusionLength
  - http://qudt.org/vocab/unit/CHAIN_US on http://qudt.org/vocab/quantitykind/SolidStateDiffusionLength needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/ZOLL on http://qudt.org/vocab/quantitykind/SolidStateDiffusionLength needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/SolidStateDiffusionLength expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/GA_Charriere on http://qudt.org/vocab/quantitykind/SolidStateDiffusionLength needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/unit/QT_UK-PER-MIN
  - http://qudt.org/vocab/unit/QT_UK-PER-MIN expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/QT_UK-PER-MIN expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/CouplingFactor
  - http://qudt.org/vocab/quantitykind/CouplingFactor expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/11cb44ed3e10f3a01701c5ad53302c0d
  - http://speckle.xyz/streams/bf7685a6aa/objects/e9670962d6933d8e0a96caf59912d990 on http://speckle.xyz/streams/bf7685a6aa/objects/11cb44ed3e10f3a01701c5ad53302c0d needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e9670962d6933d8e0a96caf59912d990 on http://speckle.xyz/streams/bf7685a6aa/objects/11cb44ed3e10f3a01701c5ad53302c0d needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/18206c406cc69168911f99cc83e418ea
  - http://speckle.xyz/streams/bf7685a6aa/objects/11e2de971443671ebd78fe480e1cd147 on http://speckle.xyz/streams/bf7685a6aa/objects/18206c406cc69168911f99cc83e418ea needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/11e2de971443671ebd78fe480e1cd147 on http://speckle.xyz/streams/bf7685a6aa/objects/18206c406cc69168911f99cc83e418ea needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/38719458f9fcfb0ad4b43eb51fcef5c4
  - http://speckle.xyz/streams/bf7685a6aa/objects/e192c1307d2ac8dcde3ff49ce414db81 on http://speckle.xyz/streams/bf7685a6aa/objects/38719458f9fcfb0ad4b43eb51fcef5c4 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e192c1307d2ac8dcde3ff49ce414db81 on http://speckle.xyz/streams/bf7685a6aa/objects/38719458f9fcfb0ad4b43eb51fcef5c4 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/FemtoGM-PER-L
  - http://qudt.org/vocab/unit/FemtoGM-PER-L expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/FemtoGM-PER-L expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/StatisticalWeight
  - http://qudt.org/vocab/quantitykind/StatisticalWeight expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/constant/Value_HartreeJouleRelationship
  - http://qudt.org/vocab/constant/Value_HartreeJouleRelationship expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/constant/Value_TritonProtonMassRatio
  - http://qudt.org/vocab/constant/Value_TritonProtonMassRatio expected at most 1 uses of path qudt:standardUncertainty
http://speckle.xyz/streams/bf7685a6aa/objects/aed4228d36691126e92487e1f31c0872
  - http://speckle.xyz/streams/bf7685a6aa/objects/666041a31abcd611d10724fa62536d0b on http://speckle.xyz/streams/bf7685a6aa/objects/aed4228d36691126e92487e1f31c0872 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/666041a31abcd611d10724fa62536d0b on http://speckle.xyz/streams/bf7685a6aa/objects/aed4228d36691126e92487e1f31c0872 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/dbcc6df8c9728c20b0b4de02121c9667
  - http://speckle.xyz/streams/bf7685a6aa/objects/e70d7bc92fc874a812626d682a29b370 on http://speckle.xyz/streams/bf7685a6aa/objects/dbcc6df8c9728c20b0b4de02121c9667 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e70d7bc92fc874a812626d682a29b370 on http://speckle.xyz/streams/bf7685a6aa/objects/dbcc6df8c9728c20b0b4de02121c9667 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/PERM_US
  - http://qudt.org/vocab/unit/PERM_US expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/PERM_US expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/MegaA-PER-M2
  - http://qudt.org/vocab/unit/MegaA-PER-M2 expected at most 1 uses of path qudt:plainTextDescription
  - http://qudt.org/vocab/unit/MegaA-PER-M2 expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MegaA-PER-M2 expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/Polarizability
  - http://qudt.org/vocab/quantitykind/Polarizability expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/quantitykind/Polarizability expected at most 1 uses of path qudt:plainTextDescription
http://speckle.xyz/streams/bf7685a6aa/objects/640b1273034bdf54c62135bf3380e05d
  - http://speckle.xyz/streams/bf7685a6aa/objects/a5893cbf3605b39a09225a1ca64b0b2e on http://speckle.xyz/streams/bf7685a6aa/objects/640b1273034bdf54c62135bf3380e05d needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/a5893cbf3605b39a09225a1ca64b0b2e on http://speckle.xyz/streams/bf7685a6aa/objects/640b1273034bdf54c62135bf3380e05d needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/bf3f54c116230276c288bbbfc93a249f
  - http://speckle.xyz/streams/bf7685a6aa/objects/2bab3a834da573d903244a9902f78aa1 on http://speckle.xyz/streams/bf7685a6aa/objects/bf3f54c116230276c288bbbfc93a249f needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/2bab3a834da573d903244a9902f78aa1 on http://speckle.xyz/streams/bf7685a6aa/objects/bf3f54c116230276c288bbbfc93a249f needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/EarthquakeMagnitude
  - http://qudt.org/vocab/unit/RichterMagnitude on http://qudt.org/vocab/quantitykind/EarthquakeMagnitude needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/380dd63a9dfbc3f3393ac4586cd08262
  - http://speckle.xyz/streams/bf7685a6aa/objects/c2c965eb3fae861fbf679d2fd79cae7a on http://speckle.xyz/streams/bf7685a6aa/objects/380dd63a9dfbc3f3393ac4586cd08262 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/c2c965eb3fae861fbf679d2fd79cae7a on http://speckle.xyz/streams/bf7685a6aa/objects/380dd63a9dfbc3f3393ac4586cd08262 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/86adeb53a5b00966b0012e472bc859e1
  - http://speckle.xyz/streams/bf7685a6aa/objects/17592c23e3930128143ddd679cd6a0d0 on http://speckle.xyz/streams/bf7685a6aa/objects/86adeb53a5b00966b0012e472bc859e1 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/17592c23e3930128143ddd679cd6a0d0 on http://speckle.xyz/streams/bf7685a6aa/objects/86adeb53a5b00966b0012e472bc859e1 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/constant/Value_NaturalUnitOfMomentumInMeVPerC
  - http://qudt.org/vocab/constant/Value_NaturalUnitOfMomentumInMeVPerC expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/unit/MicroM2
  - http://qudt.org/vocab/unit/MicroM2 expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MicroM2 expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/dimensionvector/A0E2L0I0M-1H0T4D0
  - http://qudt.org/vocab/dimensionvector/A0E2L0I0M-1H0T4D0 expected at most 1 uses of path qudt:latexDefinition
http://qudt.org/vocab/constant/Value_AtomicUnitOfMagnetizability
  - http://qudt.org/vocab/constant/Value_AtomicUnitOfMagnetizability expected at most 1 uses of path qudt:standardUncertainty
http://speckle.xyz/streams/bf7685a6aa/objects/93a39e17b716f7e52c8b3468d912a996
  - http://speckle.xyz/streams/bf7685a6aa/objects/ce1738a180c1ee8473a14a728d2fec4b on http://speckle.xyz/streams/bf7685a6aa/objects/93a39e17b716f7e52c8b3468d912a996 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/ce1738a180c1ee8473a14a728d2fec4b on http://speckle.xyz/streams/bf7685a6aa/objects/93a39e17b716f7e52c8b3468d912a996 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/ResonanceEscapeProbability
  - http://qudt.org/vocab/quantitykind/ResonanceEscapeProbability expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/unit/OZ_VOL_UK-PER-HR
  - http://qudt.org/vocab/unit/OZ_VOL_UK-PER-HR expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/OZ_VOL_UK-PER-HR expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/12c8c55a2e8cbc5003cd4f8ebf635b06
  - http://speckle.xyz/streams/bf7685a6aa/objects/acb6542f18bd3dc78a9dcd9b4ad32d71 on http://speckle.xyz/streams/bf7685a6aa/objects/12c8c55a2e8cbc5003cd4f8ebf635b06 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/acb6542f18bd3dc78a9dcd9b4ad32d71 on http://speckle.xyz/streams/bf7685a6aa/objects/12c8c55a2e8cbc5003cd4f8ebf635b06 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/RotationalMass
  - http://qudt.org/vocab/quantitykind/RotationalMass expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/fe6bd73b635ae7e16057c3ad41f0846c
  - http://speckle.xyz/streams/bf7685a6aa/objects/74116e0c46d445a4c9ac39c7f1b75206 on http://speckle.xyz/streams/bf7685a6aa/objects/fe6bd73b635ae7e16057c3ad41f0846c needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/74116e0c46d445a4c9ac39c7f1b75206 on http://speckle.xyz/streams/bf7685a6aa/objects/fe6bd73b635ae7e16057c3ad41f0846c needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/b79f43766beddb20ed14547dfe2d36f1
  - http://speckle.xyz/streams/bf7685a6aa/objects/c1f8ba2020eb6468b1d37e4445924aa6 on http://speckle.xyz/streams/bf7685a6aa/objects/b79f43766beddb20ed14547dfe2d36f1 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/c1f8ba2020eb6468b1d37e4445924aa6 on http://speckle.xyz/streams/bf7685a6aa/objects/b79f43766beddb20ed14547dfe2d36f1 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/b6c1dd91233f57c810c85195a4c1943f
  - http://speckle.xyz/streams/bf7685a6aa/objects/15b9f1bbc651a81dea26684ad543f70a on http://speckle.xyz/streams/bf7685a6aa/objects/b6c1dd91233f57c810c85195a4c1943f needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/15b9f1bbc651a81dea26684ad543f70a on http://speckle.xyz/streams/bf7685a6aa/objects/b6c1dd91233f57c810c85195a4c1943f needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/9e622c79d9673a49a41d7ddb0a8cb341
  - http://speckle.xyz/streams/bf7685a6aa/objects/6e02e6432b5c2bd4b3c9f66e71ca8f1a on http://speckle.xyz/streams/bf7685a6aa/objects/9e622c79d9673a49a41d7ddb0a8cb341 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/6e02e6432b5c2bd4b3c9f66e71ca8f1a on http://speckle.xyz/streams/bf7685a6aa/objects/9e622c79d9673a49a41d7ddb0a8cb341 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/1bb29563ff2f666a92db0e259a416fa7
  - http://speckle.xyz/streams/bf7685a6aa/objects/570de36b94b8ce5c1670646dcd7526e1 on http://speckle.xyz/streams/bf7685a6aa/objects/1bb29563ff2f666a92db0e259a416fa7 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/570de36b94b8ce5c1670646dcd7526e1 on http://speckle.xyz/streams/bf7685a6aa/objects/1bb29563ff2f666a92db0e259a416fa7 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/dimensionvector/A0E2L-3I0M-1H0T4D0
  - http://qudt.org/vocab/dimensionvector/A0E2L-3I0M-1H0T4D0 expected at most 1 uses of path qudt:latexDefinition
http://qudt.org/vocab/quantitykind/CostPerPower
  - http://qudt.org/vocab/unit/EUR-PER-KiloW on http://qudt.org/vocab/quantitykind/CostPerPower needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/EUR-PER-W on http://qudt.org/vocab/quantitykind/CostPerPower needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/703bb423759d14145794096b24ae4430
  - http://speckle.xyz/streams/bf7685a6aa/objects/f9f9f58777812d5fea59aef9b267ba4e on http://speckle.xyz/streams/bf7685a6aa/objects/703bb423759d14145794096b24ae4430 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/f9f9f58777812d5fea59aef9b267ba4e on http://speckle.xyz/streams/bf7685a6aa/objects/703bb423759d14145794096b24ae4430 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/963898e7c763b26c9449f21263e2475c
  - http://speckle.xyz/streams/bf7685a6aa/objects/8492684344e3fa16fe12d0303f24fe0d on http://speckle.xyz/streams/bf7685a6aa/objects/963898e7c763b26c9449f21263e2475c needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/8492684344e3fa16fe12d0303f24fe0d on http://speckle.xyz/streams/bf7685a6aa/objects/963898e7c763b26c9449f21263e2475c needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/MHO_Stat
  - http://qudt.org/vocab/unit/MHO_Stat expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MHO_Stat expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/OZ-PER-HR
  - http://qudt.org/vocab/unit/OZ-PER-HR expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/OZ-PER-HR expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/c47c578c26487ed4fe9a8808504d18d0
  - http://speckle.xyz/streams/bf7685a6aa/objects/9235406fdde87cb2ee62f34297961438 on http://speckle.xyz/streams/bf7685a6aa/objects/c47c578c26487ed4fe9a8808504d18d0 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/9235406fdde87cb2ee62f34297961438 on http://speckle.xyz/streams/bf7685a6aa/objects/c47c578c26487ed4fe9a8808504d18d0 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/a54a2e6920df9cd381b8d53995127708
  - http://speckle.xyz/streams/bf7685a6aa/objects/18357be2061a0be61152934dd62335e9 on http://speckle.xyz/streams/bf7685a6aa/objects/a54a2e6920df9cd381b8d53995127708 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/18357be2061a0be61152934dd62335e9 on http://speckle.xyz/streams/bf7685a6aa/objects/a54a2e6920df9cd381b8d53995127708 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/ab1f0687dd3669ae1716156a869b3a92
  - http://speckle.xyz/streams/bf7685a6aa/objects/42b77602b43873e4fbc17acb6b3b7f34 on http://speckle.xyz/streams/bf7685a6aa/objects/ab1f0687dd3669ae1716156a869b3a92 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/42b77602b43873e4fbc17acb6b3b7f34 on http://speckle.xyz/streams/bf7685a6aa/objects/ab1f0687dd3669ae1716156a869b3a92 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/GroupSpeedOfSound
  - http://qudt.org/vocab/quantitykind/GroupSpeedOfSound expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/abd17fc0060832ceb22dc7749f49f9a0
  - http://speckle.xyz/streams/bf7685a6aa/objects/7027106b86bbf1624aeecea353bf4412 on http://speckle.xyz/streams/bf7685a6aa/objects/abd17fc0060832ceb22dc7749f49f9a0 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/7027106b86bbf1624aeecea353bf4412 on http://speckle.xyz/streams/bf7685a6aa/objects/abd17fc0060832ceb22dc7749f49f9a0 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/27ca398868e30a9651bfd9ffaa809e17
  - http://speckle.xyz/streams/bf7685a6aa/objects/18f8a94e26f42bba94e987e597ddfd5d on http://speckle.xyz/streams/bf7685a6aa/objects/27ca398868e30a9651bfd9ffaa809e17 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/18f8a94e26f42bba94e987e597ddfd5d on http://speckle.xyz/streams/bf7685a6aa/objects/27ca398868e30a9651bfd9ffaa809e17 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/dimensionvector/A0E0L-4I0M-2H0T4D0
  - http://qudt.org/vocab/dimensionvector/A0E0L-4I0M-2H0T4D0 expected at most 1 uses of path qudt:latexDefinition
http://qudt.org/vocab/quantitykind/Landau-GinzburgNumber
  - http://qudt.org/vocab/quantitykind/Landau-GinzburgNumber expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/626a5807f49c8cb3c1a393eeeade71e4
  - http://speckle.xyz/streams/bf7685a6aa/objects/2bab3a834da573d903244a9902f78aa1 on http://speckle.xyz/streams/bf7685a6aa/objects/626a5807f49c8cb3c1a393eeeade71e4 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/2bab3a834da573d903244a9902f78aa1 on http://speckle.xyz/streams/bf7685a6aa/objects/626a5807f49c8cb3c1a393eeeade71e4 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/f30f89ead23bd7ebb79d0ca7c0372a30
  - http://speckle.xyz/streams/bf7685a6aa/objects/0152b9161ed0a0d6e3ae6919ab77ab11 on http://speckle.xyz/streams/bf7685a6aa/objects/f30f89ead23bd7ebb79d0ca7c0372a30 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/0152b9161ed0a0d6e3ae6919ab77ab11 on http://speckle.xyz/streams/bf7685a6aa/objects/f30f89ead23bd7ebb79d0ca7c0372a30 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/0af884579261966eddf03d2142421e94
  - http://speckle.xyz/streams/bf7685a6aa/objects/03183bd47ce710193f9d15449df4add8 on http://speckle.xyz/streams/bf7685a6aa/objects/0af884579261966eddf03d2142421e94 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/03183bd47ce710193f9d15449df4add8 on http://speckle.xyz/streams/bf7685a6aa/objects/0af884579261966eddf03d2142421e94 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/constant/Value_KelvinHertzRelationship
  - http://qudt.org/vocab/constant/Value_KelvinHertzRelationship expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/quantitykind/Duv
  - http://qudt.org/vocab/quantitykind/Duv expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/constant/Value_FineStructureConstant
  - http://qudt.org/vocab/constant/Value_FineStructureConstant expected at most 1 uses of path qudt:standardUncertainty
http://speckle.xyz/streams/bf7685a6aa/objects/bc534e510b540c9c318887f7e0028875
  - http://speckle.xyz/streams/bf7685a6aa/objects/f031db8cf74c1d34f7ec9caaa44e707f on http://speckle.xyz/streams/bf7685a6aa/objects/bc534e510b540c9c318887f7e0028875 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/f031db8cf74c1d34f7ec9caaa44e707f on http://speckle.xyz/streams/bf7685a6aa/objects/bc534e510b540c9c318887f7e0028875 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/1a9d7d9fede99e738b530291d130818c
  - http://speckle.xyz/streams/bf7685a6aa/objects/fd13fab9dd5bf7fb5f34f8a47903f3c4 on http://speckle.xyz/streams/bf7685a6aa/objects/1a9d7d9fede99e738b530291d130818c needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/fd13fab9dd5bf7fb5f34f8a47903f3c4 on http://speckle.xyz/streams/bf7685a6aa/objects/1a9d7d9fede99e738b530291d130818c needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/f9dca3d3f4d3a6669a9531ad640e6e1c
  - http://speckle.xyz/streams/bf7685a6aa/objects/74116e0c46d445a4c9ac39c7f1b75206 on http://speckle.xyz/streams/bf7685a6aa/objects/f9dca3d3f4d3a6669a9531ad640e6e1c needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/74116e0c46d445a4c9ac39c7f1b75206 on http://speckle.xyz/streams/bf7685a6aa/objects/f9dca3d3f4d3a6669a9531ad640e6e1c needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/MilliGM-PER-M3-SEC
  - http://qudt.org/vocab/unit/MilliGM-PER-M3-SEC expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MilliGM-PER-M3-SEC expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/constant/Value_ProtonMagneticMoment
  - http://qudt.org/vocab/constant/Value_ProtonMagneticMoment expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/quantitykind/NeutronYieldPerFission
  - http://qudt.org/vocab/quantitykind/NeutronYieldPerFission expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/7baf97abacb3f6a393b50bb4d9bb4cd1
  - http://speckle.xyz/streams/bf7685a6aa/objects/e9670962d6933d8e0a96caf59912d990 on http://speckle.xyz/streams/bf7685a6aa/objects/7baf97abacb3f6a393b50bb4d9bb4cd1 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e9670962d6933d8e0a96caf59912d990 on http://speckle.xyz/streams/bf7685a6aa/objects/7baf97abacb3f6a393b50bb4d9bb4cd1 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/OZ_VOL_UK-PER-SEC
  - http://qudt.org/vocab/unit/OZ_VOL_UK-PER-SEC expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/OZ_VOL_UK-PER-SEC expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/ThermodynamicCriticalMagneticFluxDensity
  - http://qudt.org/vocab/unit/KiloT on http://qudt.org/vocab/quantitykind/ThermodynamicCriticalMagneticFluxDensity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/ThermodynamicCriticalMagneticFluxDensity expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/unit/SLUG-PER-DAY
  - http://qudt.org/vocab/unit/SLUG-PER-DAY expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/SLUG-PER-DAY expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/f576ee906ff80b60cb89da8b35936f4f
  - http://speckle.xyz/streams/bf7685a6aa/objects/0d3bf549d1c8d3a7f42c473f8fa81827 on http://speckle.xyz/streams/bf7685a6aa/objects/f576ee906ff80b60cb89da8b35936f4f needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/0d3bf549d1c8d3a7f42c473f8fa81827 on http://speckle.xyz/streams/bf7685a6aa/objects/f576ee906ff80b60cb89da8b35936f4f needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/PER-PicoM
  - http://qudt.org/vocab/unit/PER-PicoM expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/PER-PicoM expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/PER-NanoM
  - http://qudt.org/vocab/unit/PER-NanoM expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/PER-NanoM expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/GigaW
  - http://qudt.org/vocab/unit/GigaW expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/GigaW expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/85265166211c4e4b9ead9fc08b297e50
  - http://speckle.xyz/streams/bf7685a6aa/objects/61392c60c3f0f6583028d86c3528cd5c on http://speckle.xyz/streams/bf7685a6aa/objects/85265166211c4e4b9ead9fc08b297e50 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/61392c60c3f0f6583028d86c3528cd5c on http://speckle.xyz/streams/bf7685a6aa/objects/85265166211c4e4b9ead9fc08b297e50 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/95e94a896a1c580131f07b732d561ed2
  - http://speckle.xyz/streams/bf7685a6aa/objects/ea1260ec254fcbc4b0630875ec6ed737 on http://speckle.xyz/streams/bf7685a6aa/objects/95e94a896a1c580131f07b732d561ed2 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/ea1260ec254fcbc4b0630875ec6ed737 on http://speckle.xyz/streams/bf7685a6aa/objects/95e94a896a1c580131f07b732d561ed2 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/bf60a9aee3701e2efd061288b4e4cd5d
  - http://speckle.xyz/streams/bf7685a6aa/objects/570de36b94b8ce5c1670646dcd7526e1 on http://speckle.xyz/streams/bf7685a6aa/objects/bf60a9aee3701e2efd061288b4e4cd5d needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/570de36b94b8ce5c1670646dcd7526e1 on http://speckle.xyz/streams/bf7685a6aa/objects/bf60a9aee3701e2efd061288b4e4cd5d needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/0d3a1e37013d8caa3457ccb0678a83e3
  - http://speckle.xyz/streams/bf7685a6aa/objects/ea809d7a6106eaba6d818bfdb3e3e5b9 on http://speckle.xyz/streams/bf7685a6aa/objects/0d3a1e37013d8caa3457ccb0678a83e3 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/ea809d7a6106eaba6d818bfdb3e3e5b9 on http://speckle.xyz/streams/bf7685a6aa/objects/0d3a1e37013d8caa3457ccb0678a83e3 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/EV-PER-T
  - http://qudt.org/vocab/unit/EV-PER-T expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/EV-PER-T expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/PERCENT-PER-DAY
  - http://qudt.org/vocab/unit/PERCENT-PER-DAY expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/PERCENT-PER-DAY expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/a6d82b02548ff468106a7b6c13f37ecc
  - http://speckle.xyz/streams/bf7685a6aa/objects/e9d3c9ff9450f7b762dcae8badb9365d on http://speckle.xyz/streams/bf7685a6aa/objects/a6d82b02548ff468106a7b6c13f37ecc needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e9d3c9ff9450f7b762dcae8badb9365d on http://speckle.xyz/streams/bf7685a6aa/objects/a6d82b02548ff468106a7b6c13f37ecc needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/TON_LONG
  - http://qudt.org/vocab/unit/TON_LONG expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/abc7fb62bda7f830085c61df76042f5d
  - http://speckle.xyz/streams/bf7685a6aa/objects/f73afc48debde36cdd78d51a0b31c30a on http://speckle.xyz/streams/bf7685a6aa/objects/abc7fb62bda7f830085c61df76042f5d needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/f73afc48debde36cdd78d51a0b31c30a on http://speckle.xyz/streams/bf7685a6aa/objects/abc7fb62bda7f830085c61df76042f5d needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/dimensionvector/A0E0L-1I0M-1H1T3D0
  - http://qudt.org/vocab/dimensionvector/A0E0L-1I0M-1H1T3D0 expected at most 1 uses of path qudt:latexDefinition
http://qudt.org/vocab/quantitykind/AmountOfSubstanceFraction
  - http://qudt.org/vocab/quantitykind/AmountOfSubstanceFraction expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/a56892e8eb6540fe35f0c96785d917e6
  - http://speckle.xyz/streams/bf7685a6aa/objects/c1f8ba2020eb6468b1d37e4445924aa6 on http://speckle.xyz/streams/bf7685a6aa/objects/a56892e8eb6540fe35f0c96785d917e6 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/c1f8ba2020eb6468b1d37e4445924aa6 on http://speckle.xyz/streams/bf7685a6aa/objects/a56892e8eb6540fe35f0c96785d917e6 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/e14bb7754edbfa6f46a8c553c81fdbff
  - http://speckle.xyz/streams/bf7685a6aa/objects/ea809d7a6106eaba6d818bfdb3e3e5b9 on http://speckle.xyz/streams/bf7685a6aa/objects/e14bb7754edbfa6f46a8c553c81fdbff needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/ea809d7a6106eaba6d818bfdb3e3e5b9 on http://speckle.xyz/streams/bf7685a6aa/objects/e14bb7754edbfa6f46a8c553c81fdbff needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/dimensionvector/A0E1L-1I0M0H0T1D0
  - http://qudt.org/vocab/dimensionvector/A0E1L-1I0M0H0T1D0 expected at most 1 uses of path qudt:latexDefinition
http://qudt.org/vocab/quantitykind/MassAbsorptionCoefficient
  - http://qudt.org/vocab/quantitykind/MassAbsorptionCoefficient expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/b71cf10efa0cb4d48517e4bbeff100e2
  - http://speckle.xyz/streams/bf7685a6aa/objects/1a82242a9320f719b8162c37bd9c580e on http://speckle.xyz/streams/bf7685a6aa/objects/b71cf10efa0cb4d48517e4bbeff100e2 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/1a82242a9320f719b8162c37bd9c580e on http://speckle.xyz/streams/bf7685a6aa/objects/b71cf10efa0cb4d48517e4bbeff100e2 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/MolarAttenuationCoefficient
  - http://qudt.org/vocab/quantitykind/MolarAttenuationCoefficient expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/unit/MegaN
  - http://qudt.org/vocab/unit/MegaN expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MegaN expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/constant/Value_NeutronTauMassRatio
  - http://qudt.org/vocab/constant/Value_NeutronTauMassRatio expected at most 1 uses of path qudt:standardUncertainty
http://speckle.xyz/streams/bf7685a6aa/objects/c1f15a68b91526a9e949f575e4125ca0
  - http://speckle.xyz/streams/bf7685a6aa/objects/e13dd4b578872dbd32e09626f5d25240 on http://speckle.xyz/streams/bf7685a6aa/objects/c1f15a68b91526a9e949f575e4125ca0 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e13dd4b578872dbd32e09626f5d25240 on http://speckle.xyz/streams/bf7685a6aa/objects/c1f15a68b91526a9e949f575e4125ca0 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/DisplacementVectorOfIon
  - http://qudt.org/vocab/unit/GA_Charriere on http://qudt.org/vocab/quantitykind/DisplacementVectorOfIon needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CHAIN_US on http://qudt.org/vocab/quantitykind/DisplacementVectorOfIon needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/ZOLL on http://qudt.org/vocab/quantitykind/DisplacementVectorOfIon needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/DisplacementVectorOfIon expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/f39b29c71d353b97df73a07d417da1dc
  - http://speckle.xyz/streams/bf7685a6aa/objects/39585c6ef6b03b8dbb18fb8a3bed20a3 on http://speckle.xyz/streams/bf7685a6aa/objects/f39b29c71d353b97df73a07d417da1dc needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/39585c6ef6b03b8dbb18fb8a3bed20a3 on http://speckle.xyz/streams/bf7685a6aa/objects/f39b29c71d353b97df73a07d417da1dc needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/bfb110da0ad69e072966675c4e1ceba9
  - http://speckle.xyz/streams/bf7685a6aa/objects/0dbe61414366819b7df5eff0ff4290d0 on http://speckle.xyz/streams/bf7685a6aa/objects/bfb110da0ad69e072966675c4e1ceba9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/0dbe61414366819b7df5eff0ff4290d0 on http://speckle.xyz/streams/bf7685a6aa/objects/bfb110da0ad69e072966675c4e1ceba9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/NanoGM-PER-MilliL
  - http://qudt.org/vocab/unit/NanoGM-PER-MilliL expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/NanoGM-PER-MilliL expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/MassRatio
  - http://qudt.org/vocab/quantitykind/MassRatio expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/LB-PER-LB on http://qudt.org/vocab/quantitykind/MassRatio needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/LuminousEfficacy
  - http://qudt.org/vocab/quantitykind/LuminousEfficacy expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/9f555496b8e092cc31a71ee25a6a8fe1
  - http://speckle.xyz/streams/bf7685a6aa/objects/0dbe61414366819b7df5eff0ff4290d0 on http://speckle.xyz/streams/bf7685a6aa/objects/9f555496b8e092cc31a71ee25a6a8fe1 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/0dbe61414366819b7df5eff0ff4290d0 on http://speckle.xyz/streams/bf7685a6aa/objects/9f555496b8e092cc31a71ee25a6a8fe1 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/dimensionvector/A0E-1L2I0M1H0T-3D0
  - http://qudt.org/vocab/dimensionvector/A0E-1L2I0M1H0T-3D0 expected at most 1 uses of path qudt:latexDefinition
http://speckle.xyz/streams/bf7685a6aa/objects/62773bf0ba4664313cb93f9547bececd
  - http://speckle.xyz/streams/bf7685a6aa/objects/f031db8cf74c1d34f7ec9caaa44e707f on http://speckle.xyz/streams/bf7685a6aa/objects/62773bf0ba4664313cb93f9547bececd needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/f031db8cf74c1d34f7ec9caaa44e707f on http://speckle.xyz/streams/bf7685a6aa/objects/62773bf0ba4664313cb93f9547bececd needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/BBL_US_PET-PER-HR
  - http://qudt.org/vocab/unit/BBL_US_PET-PER-HR expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/BBL_US_PET-PER-HR expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/a177bb6189485904f36affcaf261c66d
  - http://speckle.xyz/streams/bf7685a6aa/objects/ea809d7a6106eaba6d818bfdb3e3e5b9 on http://speckle.xyz/streams/bf7685a6aa/objects/a177bb6189485904f36affcaf261c66d needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/ea809d7a6106eaba6d818bfdb3e3e5b9 on http://speckle.xyz/streams/bf7685a6aa/objects/a177bb6189485904f36affcaf261c66d needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/MOMENT-OF-INERTIA_Y
  - http://qudt.org/vocab/quantitykind/MOMENT-OF-INERTIA_Y expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/1cb48cd0ed612cac24c668590add5b4f
  - http://speckle.xyz/streams/bf7685a6aa/objects/b1704240e49d5b4aa831d684c64ab3e7 on http://speckle.xyz/streams/bf7685a6aa/objects/1cb48cd0ed612cac24c668590add5b4f needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/b1704240e49d5b4aa831d684c64ab3e7 on http://speckle.xyz/streams/bf7685a6aa/objects/1cb48cd0ed612cac24c668590add5b4f needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/729bd69be81b0462b2f1b06b5a2e713d
  - http://speckle.xyz/streams/bf7685a6aa/objects/6522948c17f68892a20ab290338e3478 on http://speckle.xyz/streams/bf7685a6aa/objects/729bd69be81b0462b2f1b06b5a2e713d needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/6522948c17f68892a20ab290338e3478 on http://speckle.xyz/streams/bf7685a6aa/objects/729bd69be81b0462b2f1b06b5a2e713d needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/MicroW
  - http://qudt.org/vocab/unit/MicroW expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MicroW expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/constant/Value_PlanckConstantInEVS
  - http://qudt.org/vocab/constant/Value_PlanckConstantInEVS expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/quantitykind/MacroscopicTotalCrossSection
  - http://qudt.org/vocab/unit/KiloM2 on http://qudt.org/vocab/quantitykind/MacroscopicTotalCrossSection needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloMIL_Circ on http://qudt.org/vocab/quantitykind/MacroscopicTotalCrossSection needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MI_US2 on http://qudt.org/vocab/quantitykind/MacroscopicTotalCrossSection needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/MacroscopicTotalCrossSection expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/8a5b093f02239265c40214dc8665bcfe
  - http://speckle.xyz/streams/bf7685a6aa/objects/e9490e3512dab7db58f40a947313427f on http://speckle.xyz/streams/bf7685a6aa/objects/8a5b093f02239265c40214dc8665bcfe needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e9490e3512dab7db58f40a947313427f on http://speckle.xyz/streams/bf7685a6aa/objects/8a5b093f02239265c40214dc8665bcfe needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/ddd3f67965b2051d6d4f07c487face7a
  - http://speckle.xyz/streams/bf7685a6aa/objects/5aa8dbce5ed730aeaaab18a2c23b2dae on http://speckle.xyz/streams/bf7685a6aa/objects/ddd3f67965b2051d6d4f07c487face7a needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/5aa8dbce5ed730aeaaab18a2c23b2dae on http://speckle.xyz/streams/bf7685a6aa/objects/ddd3f67965b2051d6d4f07c487face7a needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/IU-PER-MilliGM
  - http://qudt.org/vocab/unit/IU-PER-MilliGM expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/IU-PER-MilliGM expected at most 1 uses of path qudt:conversionOffset
http://speckle.xyz/streams/bf7685a6aa/objects/dd8496cafd05e313ff7f2922f11ebf2c
  - http://speckle.xyz/streams/bf7685a6aa/objects/61392c60c3f0f6583028d86c3528cd5c on http://speckle.xyz/streams/bf7685a6aa/objects/dd8496cafd05e313ff7f2922f11ebf2c needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/61392c60c3f0f6583028d86c3528cd5c on http://speckle.xyz/streams/bf7685a6aa/objects/dd8496cafd05e313ff7f2922f11ebf2c needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/e3743d684c92b8cf26307cf35b931d54
  - http://speckle.xyz/streams/bf7685a6aa/objects/9857c2e4ec6cf0ebcb9e452e1ad1fa77 on http://speckle.xyz/streams/bf7685a6aa/objects/e3743d684c92b8cf26307cf35b931d54 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/9857c2e4ec6cf0ebcb9e452e1ad1fa77 on http://speckle.xyz/streams/bf7685a6aa/objects/e3743d684c92b8cf26307cf35b931d54 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/0396c6e8d5c36569b303d4b91fe4b080
  - http://speckle.xyz/streams/bf7685a6aa/objects/f7c769a50d39f020556ab74d468269a2 on http://speckle.xyz/streams/bf7685a6aa/objects/0396c6e8d5c36569b303d4b91fe4b080 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/f7c769a50d39f020556ab74d468269a2 on http://speckle.xyz/streams/bf7685a6aa/objects/0396c6e8d5c36569b303d4b91fe4b080 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/ba42083719815ec43b7eeb1bcd02f739
  - http://speckle.xyz/streams/bf7685a6aa/objects/03183bd47ce710193f9d15449df4add8 on http://speckle.xyz/streams/bf7685a6aa/objects/ba42083719815ec43b7eeb1bcd02f739 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/03183bd47ce710193f9d15449df4add8 on http://speckle.xyz/streams/bf7685a6aa/objects/ba42083719815ec43b7eeb1bcd02f739 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/schema/qudt/CT_FINITE
  - http://qudt.org/schema/qudt/CT_FINITE expected at most 1 uses of path dcterms:description
  - http://qudt.org/schema/qudt/CT_FINITE expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/unit/BU_UK-PER-DAY
  - http://qudt.org/vocab/unit/BU_UK-PER-DAY expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/BU_UK-PER-DAY expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/MilliV-PER-MIN
  - http://qudt.org/vocab/unit/MilliV-PER-MIN expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MilliV-PER-MIN expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/constant/Value_TritonMassEnergyEquivalent
  - http://qudt.org/vocab/constant/Value_TritonMassEnergyEquivalent expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/unit/PetaC
  - http://qudt.org/vocab/unit/PetaC expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/PetaC expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/b3cdfa23ef6978a4a3023808342ffc0c
  - http://speckle.xyz/streams/bf7685a6aa/objects/f031db8cf74c1d34f7ec9caaa44e707f on http://speckle.xyz/streams/bf7685a6aa/objects/b3cdfa23ef6978a4a3023808342ffc0c needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/f031db8cf74c1d34f7ec9caaa44e707f on http://speckle.xyz/streams/bf7685a6aa/objects/b3cdfa23ef6978a4a3023808342ffc0c needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/c3906f5036047fae456342c3d306bbe6
  - http://speckle.xyz/streams/bf7685a6aa/objects/03183bd47ce710193f9d15449df4add8 on http://speckle.xyz/streams/bf7685a6aa/objects/c3906f5036047fae456342c3d306bbe6 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/03183bd47ce710193f9d15449df4add8 on http://speckle.xyz/streams/bf7685a6aa/objects/c3906f5036047fae456342c3d306bbe6 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/constant/Value_ElectronMuonMagneticMomentRatio
  - http://qudt.org/vocab/constant/Value_ElectronMuonMagneticMomentRatio expected at most 1 uses of path qudt:standardUncertainty
http://speckle.xyz/streams/bf7685a6aa/objects/ffb639a53f8337bc1311c86ed955e257
  - http://speckle.xyz/streams/bf7685a6aa/objects/1dc2c8fcc6faad709669a1da5c22f1fb on http://speckle.xyz/streams/bf7685a6aa/objects/ffb639a53f8337bc1311c86ed955e257 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/1dc2c8fcc6faad709669a1da5c22f1fb on http://speckle.xyz/streams/bf7685a6aa/objects/ffb639a53f8337bc1311c86ed955e257 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/PicoFARAD-PER-M
  - http://qudt.org/vocab/unit/PicoFARAD-PER-M expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/PicoFARAD-PER-M expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/1f1f3004462935e6af02cca719eae242
  - http://speckle.xyz/streams/bf7685a6aa/objects/c8fb46fc939728e45252377481a55e6a on http://speckle.xyz/streams/bf7685a6aa/objects/1f1f3004462935e6af02cca719eae242 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/c8fb46fc939728e45252377481a55e6a on http://speckle.xyz/streams/bf7685a6aa/objects/1f1f3004462935e6af02cca719eae242 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/41fa466f508228c52726b32963c6f44b
  - http://speckle.xyz/streams/bf7685a6aa/objects/1aa18520ad959a6b477ce9a6cd61c432 on http://speckle.xyz/streams/bf7685a6aa/objects/41fa466f508228c52726b32963c6f44b needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/1aa18520ad959a6b477ce9a6cd61c432 on http://speckle.xyz/streams/bf7685a6aa/objects/41fa466f508228c52726b32963c6f44b needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/FemtoM
  - http://qudt.org/vocab/unit/FemtoM expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/FemtoM expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/FissionCoreRadiusToHeightRatio
  - http://qudt.org/vocab/unit/PPT on http://qudt.org/vocab/quantitykind/FissionCoreRadiusToHeightRatio needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PPQ on http://qudt.org/vocab/quantitykind/FissionCoreRadiusToHeightRatio needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/0d0769f8c166befae4b9fd0a6fdbcbfc
  - http://speckle.xyz/streams/bf7685a6aa/objects/0d8c716bf524666d44c38328fe3f5865 on http://speckle.xyz/streams/bf7685a6aa/objects/0d0769f8c166befae4b9fd0a6fdbcbfc needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/0d8c716bf524666d44c38328fe3f5865 on http://speckle.xyz/streams/bf7685a6aa/objects/0d0769f8c166befae4b9fd0a6fdbcbfc needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/409c13a3f0124f7ad3f3e1f3ee12f8ba
  - http://speckle.xyz/streams/bf7685a6aa/objects/1a82242a9320f719b8162c37bd9c580e on http://speckle.xyz/streams/bf7685a6aa/objects/409c13a3f0124f7ad3f3e1f3ee12f8ba needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/1a82242a9320f719b8162c37bd9c580e on http://speckle.xyz/streams/bf7685a6aa/objects/409c13a3f0124f7ad3f3e1f3ee12f8ba needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/MassEnergyTransferCoefficient
  - http://qudt.org/vocab/quantitykind/MassEnergyTransferCoefficient expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/d9cc6536b5d2394f7efbfdde6ab4c734
  - http://speckle.xyz/streams/bf7685a6aa/objects/0ad95ab1c7f34686f7ac100a0f473d42 on http://speckle.xyz/streams/bf7685a6aa/objects/d9cc6536b5d2394f7efbfdde6ab4c734 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/0ad95ab1c7f34686f7ac100a0f473d42 on http://speckle.xyz/streams/bf7685a6aa/objects/d9cc6536b5d2394f7efbfdde6ab4c734 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/29ba28e43f081053e38b3a8885719da1
  - http://speckle.xyz/streams/bf7685a6aa/objects/671f0fd33000e3c39075ec98e1126a0a on http://speckle.xyz/streams/bf7685a6aa/objects/29ba28e43f081053e38b3a8885719da1 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/671f0fd33000e3c39075ec98e1126a0a on http://speckle.xyz/streams/bf7685a6aa/objects/29ba28e43f081053e38b3a8885719da1 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/ElectricCurrentDensity
  - http://qudt.org/vocab/quantitykind/ElectricCurrentDensity expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/b30fe7f8f383458c9ad9c4d0c4a184bd
  - http://speckle.xyz/streams/bf7685a6aa/objects/ea809d7a6106eaba6d818bfdb3e3e5b9 on http://speckle.xyz/streams/bf7685a6aa/objects/b30fe7f8f383458c9ad9c4d0c4a184bd needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/ea809d7a6106eaba6d818bfdb3e3e5b9 on http://speckle.xyz/streams/bf7685a6aa/objects/b30fe7f8f383458c9ad9c4d0c4a184bd needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/StaticFrictionCoefficient
  - http://qudt.org/vocab/quantitykind/StaticFrictionCoefficient expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/unit/GM_Nitrogen-PER-M2-DAY
  - http://qudt.org/vocab/unit/GM_Nitrogen-PER-M2-DAY expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/GM_Nitrogen-PER-M2-DAY expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/1079b0f7faba49b21ffe01312d678b87
  - http://speckle.xyz/streams/bf7685a6aa/objects/e8908b5eec592c1e9e520605ad787a0c on http://speckle.xyz/streams/bf7685a6aa/objects/1079b0f7faba49b21ffe01312d678b87 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e8908b5eec592c1e9e520605ad787a0c on http://speckle.xyz/streams/bf7685a6aa/objects/1079b0f7faba49b21ffe01312d678b87 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/TemperatureRelatedMolarMass
  - http://qudt.org/vocab/quantitykind/TemperatureRelatedMolarMass expected at most 1 uses of path qudt:plainTextDescription
http://qudt.org/vocab/quantitykind/ThrustCoefficient
  - http://qudt.org/vocab/quantitykind/ThrustCoefficient expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/2512806340df4be86262b3fe4a9a555e
  - http://speckle.xyz/streams/bf7685a6aa/objects/87f74a2a608ccd6932697eb7aea3ec7c on http://speckle.xyz/streams/bf7685a6aa/objects/2512806340df4be86262b3fe4a9a555e needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/87f74a2a608ccd6932697eb7aea3ec7c on http://speckle.xyz/streams/bf7685a6aa/objects/2512806340df4be86262b3fe4a9a555e needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/7f347e86b0023b6ec33b9b22312a251b
  - http://speckle.xyz/streams/bf7685a6aa/objects/1aa18520ad959a6b477ce9a6cd61c432 on http://speckle.xyz/streams/bf7685a6aa/objects/7f347e86b0023b6ec33b9b22312a251b needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/1aa18520ad959a6b477ce9a6cd61c432 on http://speckle.xyz/streams/bf7685a6aa/objects/7f347e86b0023b6ec33b9b22312a251b needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/MilliRAD_R-PER-HR
  - http://qudt.org/vocab/unit/MilliRAD_R-PER-HR expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MilliRAD_R-PER-HR expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/GT
  - http://qudt.org/vocab/unit/GT expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/constant/Value_ElectronToShieldedHelionMagneticMomentRatio
  - http://qudt.org/vocab/constant/Value_ElectronToShieldedHelionMagneticMomentRatio expected at most 1 uses of path qudt:standardUncertainty
http://speckle.xyz/streams/bf7685a6aa/objects/ac3dc20601e63620e7521bbef265f143
  - http://speckle.xyz/streams/bf7685a6aa/objects/8492684344e3fa16fe12d0303f24fe0d on http://speckle.xyz/streams/bf7685a6aa/objects/ac3dc20601e63620e7521bbef265f143 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/8492684344e3fa16fe12d0303f24fe0d on http://speckle.xyz/streams/bf7685a6aa/objects/ac3dc20601e63620e7521bbef265f143 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/dimensionvector/A0E-1L1I0M0H0T0D0
  - http://qudt.org/vocab/dimensionvector/A0E-1L1I0M0H0T0D0 expected at most 1 uses of path qudt:latexDefinition
http://speckle.xyz/streams/bf7685a6aa/objects/2f45b0f6378fa43d6685bcdb93cc7b04
  - http://speckle.xyz/streams/bf7685a6aa/objects/e13dd4b578872dbd32e09626f5d25240 on http://speckle.xyz/streams/bf7685a6aa/objects/2f45b0f6378fa43d6685bcdb93cc7b04 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e13dd4b578872dbd32e09626f5d25240 on http://speckle.xyz/streams/bf7685a6aa/objects/2f45b0f6378fa43d6685bcdb93cc7b04 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/constant/Value_ElectronMuonMassRatio
  - http://qudt.org/vocab/constant/Value_ElectronMuonMassRatio expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/unit/AttoC
  - http://qudt.org/vocab/unit/AttoC expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/AttoC expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T0D0
  - http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T0D0 expected at most 1 uses of path qudt:latexDefinition
http://qudt.org/vocab/quantitykind/IsentropicExponent
  - http://qudt.org/vocab/quantitykind/IsentropicExponent expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/9f4a71c0c8ab08ea12c073bcf6f0759c
  - http://speckle.xyz/streams/bf7685a6aa/objects/e8e61103cdf42e0fd7b5f6b6301376d0 on http://speckle.xyz/streams/bf7685a6aa/objects/9f4a71c0c8ab08ea12c073bcf6f0759c needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e8e61103cdf42e0fd7b5f6b6301376d0 on http://speckle.xyz/streams/bf7685a6aa/objects/9f4a71c0c8ab08ea12c073bcf6f0759c needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/300085049a8304f3143b23ea35c79a64
  - http://speckle.xyz/streams/bf7685a6aa/objects/0d245daa39fba4d252d07553fdb4c419 on http://speckle.xyz/streams/bf7685a6aa/objects/300085049a8304f3143b23ea35c79a64 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/0d245daa39fba4d252d07553fdb4c419 on http://speckle.xyz/streams/bf7685a6aa/objects/300085049a8304f3143b23ea35c79a64 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/EnergyKinetic
  - http://qudt.org/vocab/unit/PicoJ on http://qudt.org/vocab/quantitykind/EnergyKinetic needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/NanoJ on http://qudt.org/vocab/quantitykind/EnergyKinetic needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/THERM_US on http://qudt.org/vocab/quantitykind/EnergyKinetic needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/THERM_EC on http://qudt.org/vocab/quantitykind/EnergyKinetic needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/EnergyKinetic expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/unit/TeraC
  - http://qudt.org/vocab/unit/TeraC expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/TeraC expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/NeutronDiffusionCoefficient
  - http://qudt.org/vocab/quantitykind/NeutronDiffusionCoefficient expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/DimensionlessRatio
  - http://qudt.org/vocab/unit/PPT on http://qudt.org/vocab/quantitykind/DimensionlessRatio needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PPQ on http://qudt.org/vocab/quantitykind/DimensionlessRatio needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/HoleDensity
  - http://qudt.org/vocab/unit/NUM-PER-MilliL on http://qudt.org/vocab/quantitykind/HoleDensity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/HoleDensity expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/Loudness
  - http://qudt.org/vocab/quantitykind/Loudness expected at most 1 uses of path qudt:plainTextDescription
  - http://qudt.org/vocab/unit/FLIGHT on http://qudt.org/vocab/quantitykind/Loudness needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/EnergyPerMassAmountOfSubstance
  - http://qudt.org/vocab/unit/BTU_IT-PER-MOL_LB on http://qudt.org/vocab/quantitykind/EnergyPerMassAmountOfSubstance needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/constant/Value_TritonNeutronMagneticMomentRatio
  - http://qudt.org/vocab/constant/Value_TritonNeutronMagneticMomentRatio expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/quantitykind/AreaChargeDensity
  - http://qudt.org/vocab/unit/A-HR-PER-M2 on http://qudt.org/vocab/quantitykind/AreaChargeDensity needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/MagneticFluxPerUnitLength
  - http://qudt.org/vocab/quantitykind/MagneticFluxPerUnitLength expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/b893e72810a131e70ddd4a7f118b8af8
  - http://speckle.xyz/streams/bf7685a6aa/objects/18357be2061a0be61152934dd62335e9 on http://speckle.xyz/streams/bf7685a6aa/objects/b893e72810a131e70ddd4a7f118b8af8 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/18357be2061a0be61152934dd62335e9 on http://speckle.xyz/streams/bf7685a6aa/objects/b893e72810a131e70ddd4a7f118b8af8 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/constant/Value_ElectronMagneticMomentToBohrMagnetonRatio
  - http://qudt.org/vocab/constant/Value_ElectronMagneticMomentToBohrMagnetonRatio expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/unit/PicoMOL-PER-L
  - http://qudt.org/vocab/unit/PicoMOL-PER-L expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/PicoMOL-PER-L expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/dimensionvector/A0E0L3I0M1H0T-1D0
  - http://qudt.org/vocab/dimensionvector/A0E0L3I0M1H0T-1D0 expected at most 1 uses of path qudt:latexDefinition
http://qudt.org/vocab/constant/Value_ElectronMagneticMoment
  - http://qudt.org/vocab/constant/Value_ElectronMagneticMoment expected at most 1 uses of path qudt:standardUncertainty
http://speckle.xyz/streams/bf7685a6aa/objects/c915ee94bad082f83b85ebe6b12a4d9f
  - http://speckle.xyz/streams/bf7685a6aa/objects/ea809d7a6106eaba6d818bfdb3e3e5b9 on http://speckle.xyz/streams/bf7685a6aa/objects/c915ee94bad082f83b85ebe6b12a4d9f needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/ea809d7a6106eaba6d818bfdb3e3e5b9 on http://speckle.xyz/streams/bf7685a6aa/objects/c915ee94bad082f83b85ebe6b12a4d9f needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/EV-PER-M
  - http://qudt.org/vocab/unit/EV-PER-M expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/EV-PER-M expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/constant/Value_MuonComptonWavelengthOver2Pi
  - http://qudt.org/vocab/constant/Value_MuonComptonWavelengthOver2Pi expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/quantitykind/VoltagePhasor
  - http://qudt.org/vocab/quantitykind/VoltagePhasor expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/dimensionvector/A0E-1L0I0M1H0T-3D0
  - http://qudt.org/vocab/dimensionvector/A0E-1L0I0M1H0T-3D0 expected at most 1 uses of path qudt:latexDefinition
http://qudt.org/vocab/constant/Value_KilogramHertzRelationship
  - http://qudt.org/vocab/constant/Value_KilogramHertzRelationship expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/constant/Value_NeutronMassEnergyEquivalentInMeV
  - http://qudt.org/vocab/constant/Value_NeutronMassEnergyEquivalentInMeV expected at most 1 uses of path qudt:standardUncertainty
http://speckle.xyz/streams/bf7685a6aa/objects/ebda18ceaae8614dd319d04ead76358b
  - http://speckle.xyz/streams/bf7685a6aa/objects/aa3aa38ee5b10e40c9ede870225fd503 on http://speckle.xyz/streams/bf7685a6aa/objects/ebda18ceaae8614dd319d04ead76358b needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/aa3aa38ee5b10e40c9ede870225fd503 on http://speckle.xyz/streams/bf7685a6aa/objects/ebda18ceaae8614dd319d04ead76358b needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/constant/Value_ClassicalElectronRadius
  - http://qudt.org/vocab/constant/Value_ClassicalElectronRadius expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/quantitykind/LagrangeFunction
  - http://qudt.org/vocab/unit/NanoJ on http://qudt.org/vocab/quantitykind/LagrangeFunction needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PicoJ on http://qudt.org/vocab/quantitykind/LagrangeFunction needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/LagrangeFunction expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/constant/Value_QuantumOfCirculationTimes2
  - http://qudt.org/vocab/constant/Value_QuantumOfCirculationTimes2 expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/quantitykind/PhaseDifference
  - http://qudt.org/vocab/quantitykind/PhaseDifference expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/unit/CentiM-PER-KiloYR
  - http://qudt.org/vocab/unit/CentiM-PER-KiloYR expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/CentiM-PER-KiloYR expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/0b17ed2cb6f4a9e2822451f16b00b941
  - http://speckle.xyz/streams/bf7685a6aa/objects/8290128282ec5e0854b6b095c1cfbe9b on http://speckle.xyz/streams/bf7685a6aa/objects/0b17ed2cb6f4a9e2822451f16b00b941 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/8290128282ec5e0854b6b095c1cfbe9b on http://speckle.xyz/streams/bf7685a6aa/objects/0b17ed2cb6f4a9e2822451f16b00b941 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/IntinsicCarrierDensity
  - http://qudt.org/vocab/unit/NUM-PER-MilliL on http://qudt.org/vocab/quantitykind/IntinsicCarrierDensity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/IntinsicCarrierDensity expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/unit/GM-PER-CentiM3
  - http://qudt.org/vocab/unit/GM-PER-CentiM3 expected at most 1 uses of path qudt:plainTextDescription
http://qudt.org/vocab/constant/Value_ProtonMagneticShieldingCorrection
  - http://qudt.org/vocab/constant/Value_ProtonMagneticShieldingCorrection expected at most 1 uses of path qudt:standardUncertainty
http://speckle.xyz/streams/bf7685a6aa/objects/1b994ca1bb5b66134153735e2b6aa071
  - http://speckle.xyz/streams/bf7685a6aa/objects/1aa18520ad959a6b477ce9a6cd61c432 on http://speckle.xyz/streams/bf7685a6aa/objects/1b994ca1bb5b66134153735e2b6aa071 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/1aa18520ad959a6b477ce9a6cd61c432 on http://speckle.xyz/streams/bf7685a6aa/objects/1b994ca1bb5b66134153735e2b6aa071 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/SingleStageLauncherMassRatio
  - http://qudt.org/vocab/unit/LB-PER-LB on http://qudt.org/vocab/quantitykind/SingleStageLauncherMassRatio needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/ElectrolyticConductivity
  - http://qudt.org/vocab/quantitykind/ElectrolyticConductivity expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/e0ab02d071cd2001962838f9800c206b
  - http://speckle.xyz/streams/bf7685a6aa/objects/c1f8ba2020eb6468b1d37e4445924aa6 on http://speckle.xyz/streams/bf7685a6aa/objects/e0ab02d071cd2001962838f9800c206b needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/c1f8ba2020eb6468b1d37e4445924aa6 on http://speckle.xyz/streams/bf7685a6aa/objects/e0ab02d071cd2001962838f9800c206b needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/constant/Value_AlphaParticleMolarMass
  - http://qudt.org/vocab/constant/Value_AlphaParticleMolarMass expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/unit/MicroM-PER-N
  - http://qudt.org/vocab/unit/MicroM-PER-N expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MicroM-PER-N expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/PositivePlaneAngle
  - http://qudt.org/vocab/quantitykind/PositivePlaneAngle expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/unit/MegaJ
  - http://qudt.org/vocab/unit/MegaJ expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MegaJ expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/FlashPoint
  - http://qudt.org/vocab/quantitykind/FlashPoint expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/PlaneAngle
  - http://qudt.org/vocab/quantitykind/PlaneAngle expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/7eaadfb12726b7ee7f3f2f5f0e4bb752
  - http://speckle.xyz/streams/bf7685a6aa/objects/1a82242a9320f719b8162c37bd9c580e on http://speckle.xyz/streams/bf7685a6aa/objects/7eaadfb12726b7ee7f3f2f5f0e4bb752 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/1a82242a9320f719b8162c37bd9c580e on http://speckle.xyz/streams/bf7685a6aa/objects/7eaadfb12726b7ee7f3f2f5f0e4bb752 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/MicroMOL-PER-M2
  - http://qudt.org/vocab/unit/MicroMOL-PER-M2 expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MicroMOL-PER-M2 expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/0631fe55f8dbffaa4f6f9d7aaf4fe7b2
  - http://speckle.xyz/streams/bf7685a6aa/objects/e13dd4b578872dbd32e09626f5d25240 on http://speckle.xyz/streams/bf7685a6aa/objects/0631fe55f8dbffaa4f6f9d7aaf4fe7b2 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e13dd4b578872dbd32e09626f5d25240 on http://speckle.xyz/streams/bf7685a6aa/objects/0631fe55f8dbffaa4f6f9d7aaf4fe7b2 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/bc024bb3c483837f3863fa0aee319bfc
  - http://speckle.xyz/streams/bf7685a6aa/objects/4e0cc1fec29ebf21cd3b0b42531f704e on http://speckle.xyz/streams/bf7685a6aa/objects/bc024bb3c483837f3863fa0aee319bfc needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/4e0cc1fec29ebf21cd3b0b42531f704e on http://speckle.xyz/streams/bf7685a6aa/objects/bc024bb3c483837f3863fa0aee319bfc needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/eafceaa124365f1bf5b2e6561f99cdd6
  - http://speckle.xyz/streams/bf7685a6aa/objects/9bbb96d450ec2617aa02cc6f1b800bba on http://speckle.xyz/streams/bf7685a6aa/objects/eafceaa124365f1bf5b2e6561f99cdd6 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/9bbb96d450ec2617aa02cc6f1b800bba on http://speckle.xyz/streams/bf7685a6aa/objects/eafceaa124365f1bf5b2e6561f99cdd6 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/d9c2970e2553b7a682fa38b94de4a16e
  - http://speckle.xyz/streams/bf7685a6aa/objects/7027106b86bbf1624aeecea353bf4412 on http://speckle.xyz/streams/bf7685a6aa/objects/d9c2970e2553b7a682fa38b94de4a16e needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/7027106b86bbf1624aeecea353bf4412 on http://speckle.xyz/streams/bf7685a6aa/objects/d9c2970e2553b7a682fa38b94de4a16e needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/MilliMOL-PER-M3-DAY
  - http://qudt.org/vocab/unit/MilliMOL-PER-M3-DAY expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MilliMOL-PER-M3-DAY expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/ab14accbf48d3f94892c3b53c8ce1fdb
  - http://speckle.xyz/streams/bf7685a6aa/objects/9bbb96d450ec2617aa02cc6f1b800bba on http://speckle.xyz/streams/bf7685a6aa/objects/ab14accbf48d3f94892c3b53c8ce1fdb needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/9bbb96d450ec2617aa02cc6f1b800bba on http://speckle.xyz/streams/bf7685a6aa/objects/ab14accbf48d3f94892c3b53c8ce1fdb needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/constant/Value_ThomsonCrossSection
  - http://qudt.org/vocab/constant/Value_ThomsonCrossSection expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/quantitykind/PolarizationField
  - http://qudt.org/vocab/unit/A-HR-PER-M2 on http://qudt.org/vocab/quantitykind/PolarizationField needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/PolarizationField expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/Length
  - http://qudt.org/vocab/unit/CHAIN_US on http://qudt.org/vocab/quantitykind/Length needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Length expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/ZOLL on http://qudt.org/vocab/quantitykind/Length needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GA_Charriere on http://qudt.org/vocab/quantitykind/Length needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/constant/Value_ElectronVoltHartreeRelationship
  - http://qudt.org/vocab/constant/Value_ElectronVoltHartreeRelationship expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/constant/Value_HelionProtonMassRatio
  - http://qudt.org/vocab/constant/Value_HelionProtonMassRatio expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/quantitykind/LarmorAngularFrequency
  - http://qudt.org/vocab/quantitykind/LarmorAngularFrequency expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/ExposureOfIonizingRadiation
  - http://qudt.org/vocab/quantitykind/ExposureOfIonizingRadiation expected at most 1 uses of path qudt:plainTextDescription
http://speckle.xyz/streams/bf7685a6aa/objects/e664450427f4ae249d252534f2d496ab
  - http://speckle.xyz/streams/bf7685a6aa/objects/0e5bab348c0d7a43d3197d71b2ecdff0 on http://speckle.xyz/streams/bf7685a6aa/objects/e664450427f4ae249d252534f2d496ab needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/0e5bab348c0d7a43d3197d71b2ecdff0 on http://speckle.xyz/streams/bf7685a6aa/objects/e664450427f4ae249d252534f2d496ab needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/4e5d5fcb30cf418ca97b7f6ee4ae89ff
  - http://speckle.xyz/streams/bf7685a6aa/objects/570de36b94b8ce5c1670646dcd7526e1 on http://speckle.xyz/streams/bf7685a6aa/objects/4e5d5fcb30cf418ca97b7f6ee4ae89ff needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/570de36b94b8ce5c1670646dcd7526e1 on http://speckle.xyz/streams/bf7685a6aa/objects/4e5d5fcb30cf418ca97b7f6ee4ae89ff needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/f4355492903ad11ceec477f20f238d20
  - http://speckle.xyz/streams/bf7685a6aa/objects/f031db8cf74c1d34f7ec9caaa44e707f on http://speckle.xyz/streams/bf7685a6aa/objects/f4355492903ad11ceec477f20f238d20 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/f031db8cf74c1d34f7ec9caaa44e707f on http://speckle.xyz/streams/bf7685a6aa/objects/f4355492903ad11ceec477f20f238d20 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/constant/Value_ProtonNeutronMagneticMomentRatio
  - http://qudt.org/vocab/constant/Value_ProtonNeutronMagneticMomentRatio expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/unit/U
  - http://qudt.org/vocab/unit/U expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/U expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/8e757dbcbf4460af146f27c84d3b0f56
  - http://speckle.xyz/streams/bf7685a6aa/objects/d10364e92e51783f043254a82d39aa37 on http://speckle.xyz/streams/bf7685a6aa/objects/8e757dbcbf4460af146f27c84d3b0f56 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/d10364e92e51783f043254a82d39aa37 on http://speckle.xyz/streams/bf7685a6aa/objects/8e757dbcbf4460af146f27c84d3b0f56 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/1bd7041305fd9bea63212f20cf68d171
  - http://speckle.xyz/streams/bf7685a6aa/objects/4ba074e46be9bb3f56b99137981fb313 on http://speckle.xyz/streams/bf7685a6aa/objects/1bd7041305fd9bea63212f20cf68d171 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/4ba074e46be9bb3f56b99137981fb313 on http://speckle.xyz/streams/bf7685a6aa/objects/1bd7041305fd9bea63212f20cf68d171 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/NanoT
  - http://qudt.org/vocab/unit/NanoT expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/NanoT expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/dimensionvector/A-1E0L0I0M1H0T0D0
  - http://qudt.org/vocab/dimensionvector/A-1E0L0I0M1H0T0D0 expected at most 1 uses of path qudt:latexDefinition
http://qudt.org/vocab/unit/R
  - http://qudt.org/vocab/unit/R expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/R expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/DYN-CentiM
  - http://qudt.org/vocab/unit/DYN-CentiM expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/DYN-CentiM expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/DeciM3-PER-DAY
  - http://qudt.org/vocab/unit/DeciM3-PER-DAY expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/DeciM3-PER-DAY expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/f9da33bee94f81ee1c78cce7af353b34
  - http://speckle.xyz/streams/bf7685a6aa/objects/6522948c17f68892a20ab290338e3478 on http://speckle.xyz/streams/bf7685a6aa/objects/f9da33bee94f81ee1c78cce7af353b34 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/6522948c17f68892a20ab290338e3478 on http://speckle.xyz/streams/bf7685a6aa/objects/f9da33bee94f81ee1c78cce7af353b34 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/dimensionvector/A0E2L-2I0M-1H0T4D0
  - http://qudt.org/vocab/dimensionvector/A0E2L-2I0M-1H0T4D0 expected at most 1 uses of path qudt:latexDefinition
http://qudt.org/vocab/quantitykind/MassAttenuationCoefficient
  - http://qudt.org/vocab/quantitykind/MassAttenuationCoefficient expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/CentiM2-PER-GM on http://qudt.org/vocab/quantitykind/MassAttenuationCoefficient needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/unit/PA-SEC-PER-BAR
  - http://qudt.org/vocab/unit/PA-SEC-PER-BAR expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/PA-SEC-PER-BAR expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/PressureBasedMass
  - http://qudt.org/vocab/quantitykind/PressureBasedMass expected at most 1 uses of path qudt:plainTextDescription
http://qudt.org/vocab/constant/Value_TritonMagneticMomentToBohrMagnetonRatio
  - http://qudt.org/vocab/constant/Value_TritonMagneticMomentToBohrMagnetonRatio expected at most 1 uses of path qudt:standardUncertainty
http://speckle.xyz/streams/bf7685a6aa/objects/bd4d6393cfe80b1d5c241054adb0d401
  - http://speckle.xyz/streams/bf7685a6aa/objects/1a82242a9320f719b8162c37bd9c580e on http://speckle.xyz/streams/bf7685a6aa/objects/bd4d6393cfe80b1d5c241054adb0d401 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/1a82242a9320f719b8162c37bd9c580e on http://speckle.xyz/streams/bf7685a6aa/objects/bd4d6393cfe80b1d5c241054adb0d401 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/OZ_VOL_US
  - http://qudt.org/vocab/unit/OZ_VOL_US expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/OZ_VOL_US expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/PicoW-PER-M2
  - http://qudt.org/vocab/unit/PicoW-PER-M2 expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/PicoW-PER-M2 expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/constant/Value_FirstRadiationConstantForSpectralRadiance
  - http://qudt.org/vocab/constant/Value_FirstRadiationConstantForSpectralRadiance expected at most 1 uses of path qudt:standardUncertainty
http://speckle.xyz/streams/bf7685a6aa/objects/acda8e39598cf766f449b47eb81c6baf
  - http://speckle.xyz/streams/bf7685a6aa/objects/ea809d7a6106eaba6d818bfdb3e3e5b9 on http://speckle.xyz/streams/bf7685a6aa/objects/acda8e39598cf766f449b47eb81c6baf needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/ea809d7a6106eaba6d818bfdb3e3e5b9 on http://speckle.xyz/streams/bf7685a6aa/objects/acda8e39598cf766f449b47eb81c6baf needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/c9125a5911c8e43203503ecdc04c958d
  - http://speckle.xyz/streams/bf7685a6aa/objects/673296ef20285eecee055d8eeed2acd0 on http://speckle.xyz/streams/bf7685a6aa/objects/c9125a5911c8e43203503ecdc04c958d needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/673296ef20285eecee055d8eeed2acd0 on http://speckle.xyz/streams/bf7685a6aa/objects/c9125a5911c8e43203503ecdc04c958d needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/MegaS-PER-M
  - http://qudt.org/vocab/unit/MegaS-PER-M expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MegaS-PER-M expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/EffectiveMultiplicationFactor
  - http://qudt.org/vocab/quantitykind/EffectiveMultiplicationFactor expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/29c4bf5d697aefaa6f84ab343dd251af
  - http://speckle.xyz/streams/bf7685a6aa/objects/8290128282ec5e0854b6b095c1cfbe9b on http://speckle.xyz/streams/bf7685a6aa/objects/29c4bf5d697aefaa6f84ab343dd251af needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/8290128282ec5e0854b6b095c1cfbe9b on http://speckle.xyz/streams/bf7685a6aa/objects/29c4bf5d697aefaa6f84ab343dd251af needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/C_Stat
  - http://qudt.org/vocab/unit/C_Stat expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/C_Stat expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/AmountOfSubstanceConcentrationOfB
  - http://qudt.org/vocab/quantitykind/AmountOfSubstanceConcentrationOfB expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/constant/Value_VonKlitzingConstant
  - http://qudt.org/vocab/constant/Value_VonKlitzingConstant expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/quantitykind/Dimensionless
  - http://qudt.org/vocab/unit/FLIGHT on http://qudt.org/vocab/quantitykind/Dimensionless needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/constant/Value_ProtonMagneticMomentToNuclearMagnetonRatio
  - http://qudt.org/vocab/constant/Value_ProtonMagneticMomentToNuclearMagnetonRatio expected at most 1 uses of path qudt:standardUncertainty
http://speckle.xyz/streams/bf7685a6aa/objects/e125934196ad65264c78e9af38fca226
  - http://speckle.xyz/streams/bf7685a6aa/objects/e9490e3512dab7db58f40a947313427f on http://speckle.xyz/streams/bf7685a6aa/objects/e125934196ad65264c78e9af38fca226 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e9490e3512dab7db58f40a947313427f on http://speckle.xyz/streams/bf7685a6aa/objects/e125934196ad65264c78e9af38fca226 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/533fc4d2dd428744da84d57b7fa507c2
  - http://speckle.xyz/streams/bf7685a6aa/objects/2bab3a834da573d903244a9902f78aa1 on http://speckle.xyz/streams/bf7685a6aa/objects/533fc4d2dd428744da84d57b7fa507c2 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/2bab3a834da573d903244a9902f78aa1 on http://speckle.xyz/streams/bf7685a6aa/objects/533fc4d2dd428744da84d57b7fa507c2 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/e2d7c62f44038a012f6e5d69393ddec2
  - http://speckle.xyz/streams/bf7685a6aa/objects/22ee737a989391acee4ea60354e91210 on http://speckle.xyz/streams/bf7685a6aa/objects/e2d7c62f44038a012f6e5d69393ddec2 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/22ee737a989391acee4ea60354e91210 on http://speckle.xyz/streams/bf7685a6aa/objects/e2d7c62f44038a012f6e5d69393ddec2 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/PPTR
  - http://qudt.org/vocab/unit/PPTR expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/PPTR expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/MilliL-PER-M2-DAY
  - http://qudt.org/vocab/unit/MilliL-PER-M2-DAY expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MilliL-PER-M2-DAY expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/constant/Value_ShieldedHelionToProtonMagneticMomentRatio
  - http://qudt.org/vocab/constant/Value_ShieldedHelionToProtonMagneticMomentRatio expected at most 1 uses of path qudt:standardUncertainty
http://speckle.xyz/streams/bf7685a6aa/objects/ec293b7282accfd76d039a29c2284880
  - http://speckle.xyz/streams/bf7685a6aa/objects/decfcfb9b61288ea8bb8b586936e4e71 on http://speckle.xyz/streams/bf7685a6aa/objects/ec293b7282accfd76d039a29c2284880 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/decfcfb9b61288ea8bb8b586936e4e71 on http://speckle.xyz/streams/bf7685a6aa/objects/ec293b7282accfd76d039a29c2284880 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/85c8044755da7f79e7d89a86e12a25d2
  - http://speckle.xyz/streams/bf7685a6aa/objects/0e5bab348c0d7a43d3197d71b2ecdff0 on http://speckle.xyz/streams/bf7685a6aa/objects/85c8044755da7f79e7d89a86e12a25d2 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/0e5bab348c0d7a43d3197d71b2ecdff0 on http://speckle.xyz/streams/bf7685a6aa/objects/85c8044755da7f79e7d89a86e12a25d2 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/constant/Value_ShieldedHelionMagneticMomentToNuclearMagnetonRatio
  - http://qudt.org/vocab/constant/Value_ShieldedHelionMagneticMomentToNuclearMagnetonRatio expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/quantitykind/DoseEquivalent
  - http://qudt.org/vocab/unit/R_man on http://qudt.org/vocab/quantitykind/DoseEquivalent needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/DoseEquivalent expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/FundamentalLatticeVector
  - http://qudt.org/vocab/unit/ZOLL on http://qudt.org/vocab/quantitykind/FundamentalLatticeVector needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/CHAIN_US on http://qudt.org/vocab/quantitykind/FundamentalLatticeVector needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/GA_Charriere on http://qudt.org/vocab/quantitykind/FundamentalLatticeVector needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/FundamentalLatticeVector expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/dimensionvector/A0E0L-2I0M1H0T-2D0
  - http://qudt.org/vocab/dimensionvector/A0E0L-2I0M1H0T-2D0 expected at most 1 uses of path qudt:latexDefinition
http://qudt.org/vocab/quantitykind/Turns
  - http://qudt.org/vocab/quantitykind/Turns expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/3b73a8a4e0fa1cd6d7c00f156e5f3b95
  - http://speckle.xyz/streams/bf7685a6aa/objects/9235406fdde87cb2ee62f34297961438 on http://speckle.xyz/streams/bf7685a6aa/objects/3b73a8a4e0fa1cd6d7c00f156e5f3b95 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/9235406fdde87cb2ee62f34297961438 on http://speckle.xyz/streams/bf7685a6aa/objects/3b73a8a4e0fa1cd6d7c00f156e5f3b95 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/f3eaa33eb90b434666095411ef7da9fd
  - http://speckle.xyz/streams/bf7685a6aa/objects/f81349f450082607823b374cbf6090c1 on http://speckle.xyz/streams/bf7685a6aa/objects/f3eaa33eb90b434666095411ef7da9fd needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/f81349f450082607823b374cbf6090c1 on http://speckle.xyz/streams/bf7685a6aa/objects/f3eaa33eb90b434666095411ef7da9fd needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/MegaPA
  - http://qudt.org/vocab/unit/MegaPA expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MegaPA expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/Radiance
  - http://qudt.org/vocab/quantitykind/Radiance expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/dimensionvector/A0E0L1I0M1H0T0D0
  - http://qudt.org/vocab/dimensionvector/A0E0L1I0M1H0T0D0 expected at most 1 uses of path qudt:latexDefinition
http://qudt.org/vocab/unit/QT_US-PER-MIN
  - http://qudt.org/vocab/unit/QT_US-PER-MIN expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/QT_US-PER-MIN expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/PressureBasedLength
  - http://qudt.org/vocab/quantitykind/PressureBasedLength expected at most 1 uses of path qudt:plainTextDescription
http://qudt.org/vocab/unit/KiloPA-PER-BAR
  - http://qudt.org/vocab/unit/KiloPA-PER-BAR expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/KiloPA-PER-BAR expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T-1D0
  - http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T-1D0 expected at most 1 uses of path qudt:latexDefinition
http://qudt.org/vocab/dimensionvector/A0E-1L1I0M1H0T-2D0
  - http://qudt.org/vocab/dimensionvector/A0E-1L1I0M1H0T-2D0 expected at most 1 uses of path qudt:latexDefinition
http://qudt.org/vocab/unit/PER-M-NanoM
  - http://qudt.org/vocab/unit/PER-M-NanoM expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/PER-M-NanoM expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/constant/Value_AtomicMassUnitJouleRelationship
  - http://qudt.org/vocab/constant/Value_AtomicMassUnitJouleRelationship expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/unit/EV
  - http://qudt.org/vocab/unit/EV expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/EV expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/CyclotronAngularFrequency
  - http://qudt.org/vocab/quantitykind/CyclotronAngularFrequency expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/Asset
  - http://qudt.org/vocab/quantitykind/Asset expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/constant/Value_MuonProtonMassRatio
  - http://qudt.org/vocab/constant/Value_MuonProtonMassRatio expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/constant/Value_MuonMagneticMoment
  - http://qudt.org/vocab/constant/Value_MuonMagneticMoment expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/quantitykind/ExhaustGasesSpecificHeat
  - http://qudt.org/vocab/unit/J-PER-GM-DEG_C on http://qudt.org/vocab/quantitykind/ExhaustGasesSpecificHeat needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/J-PER-KiloGM-DEG_C on http://qudt.org/vocab/quantitykind/ExhaustGasesSpecificHeat needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/ExhaustGasesSpecificHeat expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/M2-PER-SEC2-K on http://qudt.org/vocab/quantitykind/ExhaustGasesSpecificHeat needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/ElectricField
  - http://qudt.org/vocab/quantitykind/ElectricField expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/GeneralizedCoordinate
  - http://qudt.org/vocab/quantitykind/GeneralizedCoordinate expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/unit/MicroPA
  - http://qudt.org/vocab/unit/MicroPA expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MicroPA expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/VaporPermeance
  - http://qudt.org/vocab/unit/PERM_Metric_0DEG_C on http://qudt.org/vocab/quantitykind/VaporPermeance needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PERM_Metric_23DEG_C on http://qudt.org/vocab/quantitykind/VaporPermeance needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/ReynoldsNumber
  - http://qudt.org/vocab/quantitykind/ReynoldsNumber expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/constant/Value_TauMass
  - http://qudt.org/vocab/constant/Value_TauMass expected at most 1 uses of path qudt:standardUncertainty
http://speckle.xyz/streams/bf7685a6aa/objects/32f86b82b75dd9805ed9f7b2979650e2
  - http://speckle.xyz/streams/bf7685a6aa/objects/9d0351d65cbbdcd5c9dfed6220ed3795 on http://speckle.xyz/streams/bf7685a6aa/objects/32f86b82b75dd9805ed9f7b2979650e2 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/9d0351d65cbbdcd5c9dfed6220ed3795 on http://speckle.xyz/streams/bf7685a6aa/objects/32f86b82b75dd9805ed9f7b2979650e2 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/fe38dfb9eaabacd66c7f17af07665421
  - http://speckle.xyz/streams/bf7685a6aa/objects/22ee737a989391acee4ea60354e91210 on http://speckle.xyz/streams/bf7685a6aa/objects/fe38dfb9eaabacd66c7f17af07665421 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/22ee737a989391acee4ea60354e91210 on http://speckle.xyz/streams/bf7685a6aa/objects/fe38dfb9eaabacd66c7f17af07665421 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/MegaYR
  - http://qudt.org/vocab/unit/MegaYR expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MegaYR expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/constant/Value_DeuteronElectronMassRatio
  - http://qudt.org/vocab/constant/Value_DeuteronElectronMassRatio expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/constant/Value_NaturalUnitOfAction
  - http://qudt.org/vocab/constant/Value_NaturalUnitOfAction expected at most 1 uses of path qudt:standardUncertainty
http://speckle.xyz/streams/bf7685a6aa/objects/f4b033e60c2229da5e70db89615edb9a
  - http://speckle.xyz/streams/bf7685a6aa/objects/66a3014cb513eb02828ffb12c7f7ef5b on http://speckle.xyz/streams/bf7685a6aa/objects/f4b033e60c2229da5e70db89615edb9a needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/66a3014cb513eb02828ffb12c7f7ef5b on http://speckle.xyz/streams/bf7685a6aa/objects/f4b033e60c2229da5e70db89615edb9a needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/Action
  - http://qudt.org/vocab/quantitykind/Action expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/dimensionvector/A0E0L-2I0M1H0T-1D0
  - http://qudt.org/vocab/dimensionvector/A0E0L-2I0M1H0T-1D0 expected at most 1 uses of path qudt:latexDefinition
http://qudt.org/vocab/quantitykind/ElectricalResistance
  - http://qudt.org/vocab/unit/NanoOHM on http://qudt.org/vocab/quantitykind/ElectricalResistance needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/ElectricalResistance expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/393021105a18ad6052b3453ecf026bd1
  - http://speckle.xyz/streams/bf7685a6aa/objects/f7c769a50d39f020556ab74d468269a2 on http://speckle.xyz/streams/bf7685a6aa/objects/393021105a18ad6052b3453ecf026bd1 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/f7c769a50d39f020556ab74d468269a2 on http://speckle.xyz/streams/bf7685a6aa/objects/393021105a18ad6052b3453ecf026bd1 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/EV-PER-ANGSTROM
  - http://qudt.org/vocab/unit/EV-PER-ANGSTROM expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/EV-PER-ANGSTROM expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/0db19127f891994237b071fbe3443204
  - http://speckle.xyz/streams/bf7685a6aa/objects/6b7f1aad6288ea44a0b709fbf06a8918 on http://speckle.xyz/streams/bf7685a6aa/objects/0db19127f891994237b071fbe3443204 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/6b7f1aad6288ea44a0b709fbf06a8918 on http://speckle.xyz/streams/bf7685a6aa/objects/0db19127f891994237b071fbe3443204 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/b7fad9fc7cd1d6d0bb3380e9faa62ae5
  - http://speckle.xyz/streams/bf7685a6aa/objects/e9670962d6933d8e0a96caf59912d990 on http://speckle.xyz/streams/bf7685a6aa/objects/b7fad9fc7cd1d6d0bb3380e9faa62ae5 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e9670962d6933d8e0a96caf59912d990 on http://speckle.xyz/streams/bf7685a6aa/objects/b7fad9fc7cd1d6d0bb3380e9faa62ae5 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/constant/Value_AtomicUnitOfElectricPolarizability
  - http://qudt.org/vocab/constant/Value_AtomicUnitOfElectricPolarizability expected at most 1 uses of path qudt:standardUncertainty
http://speckle.xyz/streams/bf7685a6aa/objects/bfad8ab44b378c7220095d1890060179
  - http://speckle.xyz/streams/bf7685a6aa/objects/c8fb46fc939728e45252377481a55e6a on http://speckle.xyz/streams/bf7685a6aa/objects/bfad8ab44b378c7220095d1890060179 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/c8fb46fc939728e45252377481a55e6a on http://speckle.xyz/streams/bf7685a6aa/objects/bfad8ab44b378c7220095d1890060179 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/KiloTON_Metric
  - http://qudt.org/vocab/unit/KiloTON_Metric expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/KiloTON_Metric expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/constant/Value_ProtonGyromagneticRatio
  - http://qudt.org/vocab/constant/Value_ProtonGyromagneticRatio expected at most 1 uses of path qudt:standardUncertainty
http://speckle.xyz/streams/bf7685a6aa/objects/f4665bd85cc99b7a9f460c83de76c672
  - http://speckle.xyz/streams/bf7685a6aa/objects/8d3ab9635d58bfdfc81c3f647c553b97 on http://speckle.xyz/streams/bf7685a6aa/objects/f4665bd85cc99b7a9f460c83de76c672 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/8d3ab9635d58bfdfc81c3f647c553b97 on http://speckle.xyz/streams/bf7685a6aa/objects/f4665bd85cc99b7a9f460c83de76c672 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/WarpingMoment
  - http://qudt.org/vocab/quantitykind/WarpingMoment expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/962bd5e87685376c69a04c3853bf7e76
  - http://speckle.xyz/streams/bf7685a6aa/objects/d1d7be0d0eb1a25441be555456d8728d on http://speckle.xyz/streams/bf7685a6aa/objects/962bd5e87685376c69a04c3853bf7e76 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/d1d7be0d0eb1a25441be555456d8728d on http://speckle.xyz/streams/bf7685a6aa/objects/962bd5e87685376c69a04c3853bf7e76 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/YottaC
  - http://qudt.org/vocab/unit/YottaC expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/YottaC expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/106f79782f86ab0f027c2b6c3c393981
  - http://speckle.xyz/streams/bf7685a6aa/objects/f6d5b4ca6cd4e394b60620e0abbab45f on http://speckle.xyz/streams/bf7685a6aa/objects/106f79782f86ab0f027c2b6c3c393981 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/f6d5b4ca6cd4e394b60620e0abbab45f on http://speckle.xyz/streams/bf7685a6aa/objects/106f79782f86ab0f027c2b6c3c393981 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/cec2055e800dde4999dd9f54881801b1
  - http://speckle.xyz/streams/bf7685a6aa/objects/8e754b8c808cf1a1e48137195659f8c8 on http://speckle.xyz/streams/bf7685a6aa/objects/cec2055e800dde4999dd9f54881801b1 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/8e754b8c808cf1a1e48137195659f8c8 on http://speckle.xyz/streams/bf7685a6aa/objects/cec2055e800dde4999dd9f54881801b1 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/da0316d2ef7ccd09ccd58cca121510d7
  - http://speckle.xyz/streams/bf7685a6aa/objects/61392c60c3f0f6583028d86c3528cd5c on http://speckle.xyz/streams/bf7685a6aa/objects/da0316d2ef7ccd09ccd58cca121510d7 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/61392c60c3f0f6583028d86c3528cd5c on http://speckle.xyz/streams/bf7685a6aa/objects/da0316d2ef7ccd09ccd58cca121510d7 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/SectionAreaIntegral
  - http://qudt.org/vocab/quantitykind/SectionAreaIntegral expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/WaterVapourPermeability
  - http://qudt.org/vocab/unit/PERM_0DEG_C on http://qudt.org/vocab/quantitykind/WaterVapourPermeability needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PERM_23DEG_C on http://qudt.org/vocab/quantitykind/WaterVapourPermeability needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/WaterVapourPermeability expected at most 1 uses of path qudt:plainTextDescription
http://speckle.xyz/streams/bf7685a6aa/objects/adf3c2a52fb2f8f6b3e55c85400c2d6e
  - http://speckle.xyz/streams/bf7685a6aa/objects/52d7bafa36957b9e565938403801ab84 on http://speckle.xyz/streams/bf7685a6aa/objects/adf3c2a52fb2f8f6b3e55c85400c2d6e needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/52d7bafa36957b9e565938403801ab84 on http://speckle.xyz/streams/bf7685a6aa/objects/adf3c2a52fb2f8f6b3e55c85400c2d6e needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/ReciprocalEnergy
  - http://qudt.org/vocab/quantitykind/ReciprocalEnergy expected at most 1 uses of path qudt:plainTextDescription
http://qudt.org/vocab/constant/Value_ElectronToShieldedProtonMagneticMomentRatio
  - http://qudt.org/vocab/constant/Value_ElectronToShieldedProtonMagneticMomentRatio expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/quantitykind/Constringence
  - http://qudt.org/vocab/quantitykind/Constringence expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/90596bd778dc28c2c215befcf987b3a4
  - http://speckle.xyz/streams/bf7685a6aa/objects/16c0ff093fe0cf359342709f754806e1 on http://speckle.xyz/streams/bf7685a6aa/objects/90596bd778dc28c2c215befcf987b3a4 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/16c0ff093fe0cf359342709f754806e1 on http://speckle.xyz/streams/bf7685a6aa/objects/90596bd778dc28c2c215befcf987b3a4 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/MegaPA-PER-K
  - http://qudt.org/vocab/unit/MegaPA-PER-K expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MegaPA-PER-K expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/ElementaryCharge
  - http://qudt.org/vocab/unit/ElementaryCharge expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/ElementaryCharge expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/a329bca01267140e04e62bd8b2494236
  - http://speckle.xyz/streams/bf7685a6aa/objects/659672eeff56fe3536315764b764a663 on http://speckle.xyz/streams/bf7685a6aa/objects/a329bca01267140e04e62bd8b2494236 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/659672eeff56fe3536315764b764a663 on http://speckle.xyz/streams/bf7685a6aa/objects/a329bca01267140e04e62bd8b2494236 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/962b8e98532d0cc259508a702fa4b620
  - http://speckle.xyz/streams/bf7685a6aa/objects/8d3ab9635d58bfdfc81c3f647c553b97 on http://speckle.xyz/streams/bf7685a6aa/objects/962b8e98532d0cc259508a702fa4b620 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/8d3ab9635d58bfdfc81c3f647c553b97 on http://speckle.xyz/streams/bf7685a6aa/objects/962b8e98532d0cc259508a702fa4b620 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/ElectricDisplacement
  - http://qudt.org/vocab/unit/A-HR-PER-M2 on http://qudt.org/vocab/quantitykind/ElectricDisplacement needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/ElectricQuadrupoleMoment
  - http://qudt.org/vocab/quantitykind/ElectricQuadrupoleMoment expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/e3b30eb4b1a62dcdadb93da8ffd118f7
  - http://speckle.xyz/streams/bf7685a6aa/objects/e5eb69c71be84f5da9e07df2de08c8eb on http://speckle.xyz/streams/bf7685a6aa/objects/e3b30eb4b1a62dcdadb93da8ffd118f7 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e5eb69c71be84f5da9e07df2de08c8eb on http://speckle.xyz/streams/bf7685a6aa/objects/e3b30eb4b1a62dcdadb93da8ffd118f7 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/constant/Value_ProtonChargeToMassQuotient
  - http://qudt.org/vocab/constant/Value_ProtonChargeToMassQuotient expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/quantitykind/LogOctanolAirPartitionCoefficient
  - http://qudt.org/vocab/quantitykind/LogOctanolAirPartitionCoefficient expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/unit/DYN
  - http://qudt.org/vocab/unit/DYN expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/DYN expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H1T1D0
  - http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H1T1D0 expected at most 1 uses of path qudt:latexDefinition
http://qudt.org/vocab/quantitykind/NucleonNumber
  - http://qudt.org/vocab/quantitykind/NucleonNumber expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/unit/MicroMOL-PER-MicroMOL-DAY
  - http://qudt.org/vocab/unit/MicroMOL-PER-MicroMOL-DAY expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MicroMOL-PER-MicroMOL-DAY expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/PhotosyntheticPhotonFlux
  - http://qudt.org/vocab/quantitykind/PhotosyntheticPhotonFlux expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/dimensionvector/A0E0L-3I0M0H0T-1D0
  - http://qudt.org/vocab/dimensionvector/A0E0L-3I0M0H0T-1D0 expected at most 1 uses of path qudt:latexDefinition
http://qudt.org/vocab/unit/PicoGM-PER-GM
  - http://qudt.org/vocab/unit/PicoGM-PER-GM expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/PicoGM-PER-GM expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/PlanckCurrentDensity
  - http://qudt.org/vocab/unit/PlanckCurrentDensity expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/StandardChemicalPotential
  - http://qudt.org/vocab/quantitykind/StandardChemicalPotential expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/dimensionvector/A0E0L1I0M-1H0T2D0
  - http://qudt.org/vocab/dimensionvector/A0E0L1I0M-1H0T2D0 expected at most 1 uses of path qudt:latexDefinition
http://speckle.xyz/streams/bf7685a6aa/objects/988a1b2de1660b9301505c078548c1eb
  - http://speckle.xyz/streams/bf7685a6aa/objects/570de36b94b8ce5c1670646dcd7526e1 on http://speckle.xyz/streams/bf7685a6aa/objects/988a1b2de1660b9301505c078548c1eb needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/570de36b94b8ce5c1670646dcd7526e1 on http://speckle.xyz/streams/bf7685a6aa/objects/988a1b2de1660b9301505c078548c1eb needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/01837bc736c87da13f2a3aa47858f9c6
  - http://speckle.xyz/streams/bf7685a6aa/objects/77fa201d44b529fd0ae42b20ba8ba809 on http://speckle.xyz/streams/bf7685a6aa/objects/01837bc736c87da13f2a3aa47858f9c6 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/77fa201d44b529fd0ae42b20ba8ba809 on http://speckle.xyz/streams/bf7685a6aa/objects/01837bc736c87da13f2a3aa47858f9c6 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/c439df574c6361687381218c4c517e90
  - http://speckle.xyz/streams/bf7685a6aa/objects/fd13fab9dd5bf7fb5f34f8a47903f3c4 on http://speckle.xyz/streams/bf7685a6aa/objects/c439df574c6361687381218c4c517e90 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/fd13fab9dd5bf7fb5f34f8a47903f3c4 on http://speckle.xyz/streams/bf7685a6aa/objects/c439df574c6361687381218c4c517e90 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/dimensionvector/A0E1L2I0M0H0T0D0
  - http://qudt.org/vocab/dimensionvector/A0E1L2I0M0H0T0D0 expected at most 1 uses of path qudt:latexDefinition
http://qudt.org/vocab/unit/W
  - http://qudt.org/vocab/unit/W expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/unit/IU
  - http://qudt.org/vocab/unit/IU expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/unit/PlanckMass
  - http://qudt.org/vocab/unit/PlanckMass expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/PlanckMass expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/PER-M-NanoM-SR
  - http://qudt.org/vocab/unit/PER-M-NanoM-SR expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/PER-M-NanoM-SR expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/ElectricConductivity
  - http://qudt.org/vocab/quantitykind/ElectricConductivity expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/fb541dfe80b553613368d61efd5c4d9f
  - http://speckle.xyz/streams/bf7685a6aa/objects/e9670962d6933d8e0a96caf59912d990 on http://speckle.xyz/streams/bf7685a6aa/objects/fb541dfe80b553613368d61efd5c4d9f needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e9670962d6933d8e0a96caf59912d990 on http://speckle.xyz/streams/bf7685a6aa/objects/fb541dfe80b553613368d61efd5c4d9f needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/constant/Value_NeutronComptonWavelengthOver2Pi
  - http://qudt.org/vocab/constant/Value_NeutronComptonWavelengthOver2Pi expected at most 1 uses of path qudt:standardUncertainty
http://speckle.xyz/streams/bf7685a6aa/objects/eed9861014f62cca2163d2b2b6fe5681
  - http://speckle.xyz/streams/bf7685a6aa/objects/0e5bab348c0d7a43d3197d71b2ecdff0 on http://speckle.xyz/streams/bf7685a6aa/objects/eed9861014f62cca2163d2b2b6fe5681 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/0e5bab348c0d7a43d3197d71b2ecdff0 on http://speckle.xyz/streams/bf7685a6aa/objects/eed9861014f62cca2163d2b2b6fe5681 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/AcousticImpedance
  - http://qudt.org/vocab/quantitykind/AcousticImpedance expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/NuclearSpinQuantumNumber
  - http://qudt.org/vocab/quantitykind/NuclearSpinQuantumNumber expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/7fe5cee57cffcd6482deba5a4f5ecdf4
  - http://speckle.xyz/streams/bf7685a6aa/objects/c1e7bac9cc9cff56ce6fff37c81afd27 on http://speckle.xyz/streams/bf7685a6aa/objects/7fe5cee57cffcd6482deba5a4f5ecdf4 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/c1e7bac9cc9cff56ce6fff37c81afd27 on http://speckle.xyz/streams/bf7685a6aa/objects/7fe5cee57cffcd6482deba5a4f5ecdf4 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/23659209a5f1c6d9d581d41620464ede
  - http://speckle.xyz/streams/bf7685a6aa/objects/de6a9e0a58ee766f3a43d50370ea19de on http://speckle.xyz/streams/bf7685a6aa/objects/23659209a5f1c6d9d581d41620464ede needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/de6a9e0a58ee766f3a43d50370ea19de on http://speckle.xyz/streams/bf7685a6aa/objects/23659209a5f1c6d9d581d41620464ede needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/GRAIN
  - http://qudt.org/vocab/unit/GRAIN expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/GRAIN expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/SpecificEnergyImparted
  - http://qudt.org/vocab/quantitykind/SpecificEnergyImparted expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/W-HR-PER-KiloGM on http://qudt.org/vocab/quantitykind/SpecificEnergyImparted needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/cbb5f28b3a8ad90ba782ea976969f6b4
  - http://speckle.xyz/streams/bf7685a6aa/objects/1a6afbdfd275e54fbec0848e9cc9a48d on http://speckle.xyz/streams/bf7685a6aa/objects/cbb5f28b3a8ad90ba782ea976969f6b4 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/1a6afbdfd275e54fbec0848e9cc9a48d on http://speckle.xyz/streams/bf7685a6aa/objects/cbb5f28b3a8ad90ba782ea976969f6b4 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/debcbfe6d6be853c94110303eaaa4474
  - http://speckle.xyz/streams/bf7685a6aa/objects/c1f8ba2020eb6468b1d37e4445924aa6 on http://speckle.xyz/streams/bf7685a6aa/objects/debcbfe6d6be853c94110303eaaa4474 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/c1f8ba2020eb6468b1d37e4445924aa6 on http://speckle.xyz/streams/bf7685a6aa/objects/debcbfe6d6be853c94110303eaaa4474 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/SurfaceActivityDensity
  - http://qudt.org/vocab/quantitykind/SurfaceActivityDensity expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/b0c0dfc06c8b5fb82c1f9609815e877f
  - http://speckle.xyz/streams/bf7685a6aa/objects/f031db8cf74c1d34f7ec9caaa44e707f on http://speckle.xyz/streams/bf7685a6aa/objects/b0c0dfc06c8b5fb82c1f9609815e877f needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/f031db8cf74c1d34f7ec9caaa44e707f on http://speckle.xyz/streams/bf7685a6aa/objects/b0c0dfc06c8b5fb82c1f9609815e877f needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/MilliW-PER-M2-NanoM-SR
  - http://qudt.org/vocab/unit/MilliW-PER-M2-NanoM-SR expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MilliW-PER-M2-NanoM-SR expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/constant/Value_ElectronVoltKelvinRelationship
  - http://qudt.org/vocab/constant/Value_ElectronVoltKelvinRelationship expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/unit/MilliR
  - http://qudt.org/vocab/unit/MilliR expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MilliR expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/NanoL
  - http://qudt.org/vocab/unit/NanoL expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/NanoL expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/HenrysLawVolatilityConstant
  - http://qudt.org/vocab/quantitykind/HenrysLawVolatilityConstant expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/Prevalence
  - http://qudt.org/vocab/quantitykind/Prevalence expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/1b6f9c807232a43d77129238ef323094
  - http://speckle.xyz/streams/bf7685a6aa/objects/8d3ab9635d58bfdfc81c3f647c553b97 on http://speckle.xyz/streams/bf7685a6aa/objects/1b6f9c807232a43d77129238ef323094 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/8d3ab9635d58bfdfc81c3f647c553b97 on http://speckle.xyz/streams/bf7685a6aa/objects/1b6f9c807232a43d77129238ef323094 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/1ccc350550ef273b5e2f153a4a8a0617
  - http://speckle.xyz/streams/bf7685a6aa/objects/16c0ff093fe0cf359342709f754806e1 on http://speckle.xyz/streams/bf7685a6aa/objects/1ccc350550ef273b5e2f153a4a8a0617 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/16c0ff093fe0cf359342709f754806e1 on http://speckle.xyz/streams/bf7685a6aa/objects/1ccc350550ef273b5e2f153a4a8a0617 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/constant/Value_ElectronDeuteronMagneticMomentRatio
  - http://qudt.org/vocab/constant/Value_ElectronDeuteronMagneticMomentRatio expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/unit/PINT_UK-PER-HR
  - http://qudt.org/vocab/unit/PINT_UK-PER-HR expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/PINT_UK-PER-HR expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/DEG_C_GROWING_CEREAL-DAY
  - http://qudt.org/vocab/unit/DEG_C_GROWING_CEREAL-DAY expected at most 1 uses of path qudt:conversionOffset
  - http://qudt.org/vocab/unit/DEG_C_GROWING_CEREAL-DAY expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/constant/Value_AlphaParticleMassInAtomicMassUnit
  - http://qudt.org/vocab/constant/Value_AlphaParticleMassInAtomicMassUnit expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/unit/MicroW-PER-M2
  - http://qudt.org/vocab/unit/MicroW-PER-M2 expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MicroW-PER-M2 expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/RecombinationCoefficient
  - http://qudt.org/vocab/quantitykind/RecombinationCoefficient expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/dimensionvector/A0E-1L0I0M1H0T-2D0
  - http://qudt.org/vocab/dimensionvector/A0E-1L0I0M1H0T-2D0 expected at most 1 uses of path qudt:latexDefinition
http://qudt.org/vocab/quantitykind/MachNumber
  - http://qudt.org/vocab/quantitykind/MachNumber expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/DistanceTraveledDuringBurn
  - http://qudt.org/vocab/unit/PT_BIG on http://qudt.org/vocab/quantitykind/DistanceTraveledDuringBurn needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/ThermalUtilizationFactorForFission
  - http://qudt.org/vocab/unit/FLIGHT on http://qudt.org/vocab/quantitykind/ThermalUtilizationFactorForFission needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/ThermalUtilizationFactorForFission expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/unit/PicoGM-PER-MilliL
  - http://qudt.org/vocab/unit/PicoGM-PER-MilliL expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/PicoGM-PER-MilliL expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/N-PER-MilliM2
  - http://qudt.org/vocab/unit/N-PER-MilliM2 expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/N-PER-MilliM2 expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/constant/Value_ElectronNeutronMagneticMomentRatio
  - http://qudt.org/vocab/constant/Value_ElectronNeutronMagneticMomentRatio expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/quantitykind/CelsiusTemperature
  - http://qudt.org/vocab/quantitykind/CelsiusTemperature expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/0718dabf8f6afe65ec69e171f95233ac
  - http://speckle.xyz/streams/bf7685a6aa/objects/ce1738a180c1ee8473a14a728d2fec4b on http://speckle.xyz/streams/bf7685a6aa/objects/0718dabf8f6afe65ec69e171f95233ac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/ce1738a180c1ee8473a14a728d2fec4b on http://speckle.xyz/streams/bf7685a6aa/objects/0718dabf8f6afe65ec69e171f95233ac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/Flux
  - http://qudt.org/vocab/unit/NUM-PER-HA-YR on http://qudt.org/vocab/quantitykind/Flux needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/Flux expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/LogOctanolWaterPartitionCoefficient
  - http://qudt.org/vocab/quantitykind/LogOctanolWaterPartitionCoefficient expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/ResonanceEscapeProbabilityForFission
  - http://qudt.org/vocab/quantitykind/ResonanceEscapeProbabilityForFission expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/FLIGHT on http://qudt.org/vocab/quantitykind/ResonanceEscapeProbabilityForFission needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/dimensionvector/A-1E0L3I0M0H0T-1D0
  - http://qudt.org/vocab/dimensionvector/A-1E0L3I0M0H0T-1D0 expected at most 1 uses of path qudt:latexDefinition
http://qudt.org/vocab/quantitykind/ResistanceRatio
  - http://qudt.org/vocab/unit/PPQ on http://qudt.org/vocab/quantitykind/ResistanceRatio needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PPT on http://qudt.org/vocab/quantitykind/ResistanceRatio needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/33dab04ddd640f10a3696a8faa61d203
  - http://speckle.xyz/streams/bf7685a6aa/objects/ea809d7a6106eaba6d818bfdb3e3e5b9 on http://speckle.xyz/streams/bf7685a6aa/objects/33dab04ddd640f10a3696a8faa61d203 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/ea809d7a6106eaba6d818bfdb3e3e5b9 on http://speckle.xyz/streams/bf7685a6aa/objects/33dab04ddd640f10a3696a8faa61d203 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/6b2aaeb04cb012e0af3f32d1b0559a38
  - http://speckle.xyz/streams/bf7685a6aa/objects/90503bd239890ecb4ef6f29e5898c47b on http://speckle.xyz/streams/bf7685a6aa/objects/6b2aaeb04cb012e0af3f32d1b0559a38 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/90503bd239890ecb4ef6f29e5898c47b on http://speckle.xyz/streams/bf7685a6aa/objects/6b2aaeb04cb012e0af3f32d1b0559a38 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/DecayConstant
  - http://qudt.org/vocab/quantitykind/DecayConstant expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/a07f1ef2bf5147ff1c0e26991dbd7f98
  - http://speckle.xyz/streams/bf7685a6aa/objects/3bba482343b8d72c580af14e0b0e05df on http://speckle.xyz/streams/bf7685a6aa/objects/a07f1ef2bf5147ff1c0e26991dbd7f98 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/3bba482343b8d72c580af14e0b0e05df on http://speckle.xyz/streams/bf7685a6aa/objects/a07f1ef2bf5147ff1c0e26991dbd7f98 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/BevelGearPitchAngle
  - http://qudt.org/vocab/quantitykind/BevelGearPitchAngle expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/65cd161268b56b6b24a1d3743373fe1b
  - http://speckle.xyz/streams/bf7685a6aa/objects/f7c769a50d39f020556ab74d468269a2 on http://speckle.xyz/streams/bf7685a6aa/objects/65cd161268b56b6b24a1d3743373fe1b needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/f7c769a50d39f020556ab74d468269a2 on http://speckle.xyz/streams/bf7685a6aa/objects/65cd161268b56b6b24a1d3743373fe1b needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/MassRatioOfWaterVapourToDryGas
  - http://qudt.org/vocab/quantitykind/MassRatioOfWaterVapourToDryGas expected at most 1 uses of path qudt:plainTextDescription
  - http://qudt.org/vocab/quantitykind/MassRatioOfWaterVapourToDryGas expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/dimensionvector/A0E1L0I0M0H0T1D0
  - http://qudt.org/vocab/dimensionvector/A0E1L0I0M0H0T1D0 expected at most 1 uses of path qudt:latexDefinition
http://qudt.org/vocab/quantitykind/SpectralCrossSection
  - http://qudt.org/vocab/unit/CentiM2-PER-ERG on http://qudt.org/vocab/quantitykind/SpectralCrossSection needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/unit/MilliBQ-PER-M2-DAY
  - http://qudt.org/vocab/unit/MilliBQ-PER-M2-DAY expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MilliBQ-PER-M2-DAY expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/constant/Value_WienWavelengthDisplacementLawConstant
  - http://qudt.org/vocab/constant/Value_WienWavelengthDisplacementLawConstant expected at most 1 uses of path qudt:standardUncertainty
http://speckle.xyz/streams/bf7685a6aa/objects/f4bd67cd37a820b5466b4bec31686bc1
  - http://speckle.xyz/streams/bf7685a6aa/objects/6522948c17f68892a20ab290338e3478 on http://speckle.xyz/streams/bf7685a6aa/objects/f4bd67cd37a820b5466b4bec31686bc1 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/6522948c17f68892a20ab290338e3478 on http://speckle.xyz/streams/bf7685a6aa/objects/f4bd67cd37a820b5466b4bec31686bc1 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/ElectricChargeLinearDensity
  - http://qudt.org/vocab/quantitykind/ElectricChargeLinearDensity expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/Incidence
  - http://qudt.org/vocab/quantitykind/Incidence expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/constant/Value_ProtonGyromagneticRatioOver2Pi
  - http://qudt.org/vocab/constant/Value_ProtonGyromagneticRatioOver2Pi expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/quantitykind/MolarOpticalRotatoryPower
  - http://qudt.org/vocab/quantitykind/MolarOpticalRotatoryPower expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H-1T0D0
  - http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H-1T0D0 expected at most 1 uses of path qudt:latexDefinition
http://qudt.org/vocab/unit/KiloM3-PER-SEC2
  - http://qudt.org/vocab/unit/KiloM3-PER-SEC2 expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/KiloM3-PER-SEC2 expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/AmountOfSubstancePerUnitMass
  - http://qudt.org/vocab/unit/MOL_LB-PER-LB on http://qudt.org/vocab/quantitykind/AmountOfSubstancePerUnitMass needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/unit/NanoMOL-PER-L
  - http://qudt.org/vocab/unit/NanoMOL-PER-L expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/NanoMOL-PER-L expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/Denier
  - http://qudt.org/vocab/unit/Denier expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/Denier expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/GigaHZ-M
  - http://qudt.org/vocab/unit/GigaHZ-M expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/GigaHZ-M expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/TemperatureRateOfChange
  - http://qudt.org/vocab/quantitykind/TemperatureRateOfChange expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/EnergyDensityOfStates
  - http://qudt.org/vocab/unit/PER-EV-M3 on http://qudt.org/vocab/quantitykind/EnergyDensityOfStates needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/EnergyDensityOfStates expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/constant/Value_ElectronVoltJouleRelationship
  - http://qudt.org/vocab/constant/Value_ElectronVoltJouleRelationship expected at most 1 uses of path qudt:standardUncertainty
http://speckle.xyz/streams/bf7685a6aa/objects/1749bd7666bc716566ba80e90c20d7f4
  - http://speckle.xyz/streams/bf7685a6aa/objects/2ae3884269b0a46e5ece05ce9e1fcd71 on http://speckle.xyz/streams/bf7685a6aa/objects/1749bd7666bc716566ba80e90c20d7f4 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/2ae3884269b0a46e5ece05ce9e1fcd71 on http://speckle.xyz/streams/bf7685a6aa/objects/1749bd7666bc716566ba80e90c20d7f4 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/SpecificEnthalpy
  - http://qudt.org/vocab/unit/W-HR-PER-KiloGM on http://qudt.org/vocab/quantitykind/SpecificEnthalpy needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/dimensionvector/A0E2L-2I0M-1H0T3D0
  - http://qudt.org/vocab/dimensionvector/A0E2L-2I0M-1H0T3D0 expected at most 1 uses of path qudt:latexDefinition
http://qudt.org/vocab/constant/Value_DeuteronNeutronMagneticMomentRatio
  - http://qudt.org/vocab/constant/Value_DeuteronNeutronMagneticMomentRatio expected at most 1 uses of path qudt:standardUncertainty
http://speckle.xyz/streams/bf7685a6aa/objects/b89b81db4f45343471dd1eb8566c9138
  - http://speckle.xyz/streams/bf7685a6aa/objects/16c0ff093fe0cf359342709f754806e1 on http://speckle.xyz/streams/bf7685a6aa/objects/b89b81db4f45343471dd1eb8566c9138 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/16c0ff093fe0cf359342709f754806e1 on http://speckle.xyz/streams/bf7685a6aa/objects/b89b81db4f45343471dd1eb8566c9138 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/constant/Value_HelionMassEnergyEquivalentInMeV
  - http://qudt.org/vocab/constant/Value_HelionMassEnergyEquivalentInMeV expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/constant/Value_TauComptonWavelength
  - http://qudt.org/vocab/constant/Value_TauComptonWavelength expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/constant/Value_ElectronToAlphaParticleMassRatio
  - http://qudt.org/vocab/constant/Value_ElectronToAlphaParticleMassRatio expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/quantitykind/ConvectiveHeatTransfer
  - http://qudt.org/vocab/quantitykind/ConvectiveHeatTransfer expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/constant/Value_AtomicUnitOfForce
  - http://qudt.org/vocab/constant/Value_AtomicUnitOfForce expected at most 1 uses of path qudt:standardUncertainty
http://speckle.xyz/streams/bf7685a6aa/objects/53d6234128aab14384b4a5a99a0f7433
  - http://speckle.xyz/streams/bf7685a6aa/objects/2bab3a834da573d903244a9902f78aa1 on http://speckle.xyz/streams/bf7685a6aa/objects/53d6234128aab14384b4a5a99a0f7433 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/2bab3a834da573d903244a9902f78aa1 on http://speckle.xyz/streams/bf7685a6aa/objects/53d6234128aab14384b4a5a99a0f7433 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/10bf530b9e518988ffc9f7e0cc9657d5
  - http://speckle.xyz/streams/bf7685a6aa/objects/e9670962d6933d8e0a96caf59912d990 on http://speckle.xyz/streams/bf7685a6aa/objects/10bf530b9e518988ffc9f7e0cc9657d5 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e9670962d6933d8e0a96caf59912d990 on http://speckle.xyz/streams/bf7685a6aa/objects/10bf530b9e518988ffc9f7e0cc9657d5 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/95d4e1594d6060c417461de18fdc66a7
  - http://speckle.xyz/streams/bf7685a6aa/objects/66cce2bdb57b61f2d10f6cee8c508243 on http://speckle.xyz/streams/bf7685a6aa/objects/95d4e1594d6060c417461de18fdc66a7 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/66cce2bdb57b61f2d10f6cee8c508243 on http://speckle.xyz/streams/bf7685a6aa/objects/95d4e1594d6060c417461de18fdc66a7 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/DegreeOfDissociation
  - http://qudt.org/vocab/quantitykind/DegreeOfDissociation expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/cf4a6b8de3f06aca37172cf3a301899a
  - http://speckle.xyz/streams/bf7685a6aa/objects/2bab3a834da573d903244a9902f78aa1 on http://speckle.xyz/streams/bf7685a6aa/objects/cf4a6b8de3f06aca37172cf3a301899a needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/2bab3a834da573d903244a9902f78aa1 on http://speckle.xyz/streams/bf7685a6aa/objects/cf4a6b8de3f06aca37172cf3a301899a needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/b171749f2d9aa6d6e275473cd159cfaa
  - http://speckle.xyz/streams/bf7685a6aa/objects/03183bd47ce710193f9d15449df4add8 on http://speckle.xyz/streams/bf7685a6aa/objects/b171749f2d9aa6d6e275473cd159cfaa needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/03183bd47ce710193f9d15449df4add8 on http://speckle.xyz/streams/bf7685a6aa/objects/b171749f2d9aa6d6e275473cd159cfaa needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/eeef5601e558ccf217880a032b0b5129
  - http://speckle.xyz/streams/bf7685a6aa/objects/dda6fc2cd9f746d9e9297e0859f5eb4d on http://speckle.xyz/streams/bf7685a6aa/objects/eeef5601e558ccf217880a032b0b5129 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/dda6fc2cd9f746d9e9297e0859f5eb4d on http://speckle.xyz/streams/bf7685a6aa/objects/eeef5601e558ccf217880a032b0b5129 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/4223ef9b3a2106fe5fa966321e312459
  - http://speckle.xyz/streams/bf7685a6aa/objects/c1f8ba2020eb6468b1d37e4445924aa6 on http://speckle.xyz/streams/bf7685a6aa/objects/4223ef9b3a2106fe5fa966321e312459 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/c1f8ba2020eb6468b1d37e4445924aa6 on http://speckle.xyz/streams/bf7685a6aa/objects/4223ef9b3a2106fe5fa966321e312459 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/LandeGFactor
  - http://qudt.org/vocab/quantitykind/LandeGFactor expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/constant/Value_JouleHertzRelationship
  - http://qudt.org/vocab/constant/Value_JouleHertzRelationship expected at most 1 uses of path qudt:standardUncertainty
http://speckle.xyz/streams/bf7685a6aa/objects/ee458186742275300bfa0078e126c603
  - http://speckle.xyz/streams/bf7685a6aa/objects/5751a7a8490e489a1a00976905f9b01b on http://speckle.xyz/streams/bf7685a6aa/objects/ee458186742275300bfa0078e126c603 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/5751a7a8490e489a1a00976905f9b01b on http://speckle.xyz/streams/bf7685a6aa/objects/ee458186742275300bfa0078e126c603 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/1ca8180c382fd4e5d4b902929a993091
  - http://speckle.xyz/streams/bf7685a6aa/objects/28299383e0df00b91df539a74c7815c2 on http://speckle.xyz/streams/bf7685a6aa/objects/1ca8180c382fd4e5d4b902929a993091 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/28299383e0df00b91df539a74c7815c2 on http://speckle.xyz/streams/bf7685a6aa/objects/1ca8180c382fd4e5d4b902929a993091 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/80cc797b8b1e656ae5a74b1d78e95f72
  - http://speckle.xyz/streams/bf7685a6aa/objects/e8908b5eec592c1e9e520605ad787a0c on http://speckle.xyz/streams/bf7685a6aa/objects/80cc797b8b1e656ae5a74b1d78e95f72 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e8908b5eec592c1e9e520605ad787a0c on http://speckle.xyz/streams/bf7685a6aa/objects/80cc797b8b1e656ae5a74b1d78e95f72 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/MicroIN
  - http://qudt.org/vocab/unit/MicroIN expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MicroIN expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/SpectralAngularCrossSection
  - http://qudt.org/vocab/unit/CentiM2-PER-SR-ERG on http://qudt.org/vocab/quantitykind/SpectralAngularCrossSection needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/constant/Value_HartreeEnergy
  - http://qudt.org/vocab/constant/Value_HartreeEnergy expected at most 1 uses of path qudt:standardUncertainty
http://speckle.xyz/streams/bf7685a6aa/objects/5f488a70b4b94ebb3f4e1571d6693c50
  - http://speckle.xyz/streams/bf7685a6aa/objects/475d9640e0e1761de64f8d863e5d5a79 on http://speckle.xyz/streams/bf7685a6aa/objects/5f488a70b4b94ebb3f4e1571d6693c50 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/475d9640e0e1761de64f8d863e5d5a79 on http://speckle.xyz/streams/bf7685a6aa/objects/5f488a70b4b94ebb3f4e1571d6693c50 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/QuantityOfLight
  - http://qudt.org/vocab/quantitykind/QuantityOfLight expected at most 1 uses of path qudt:plainTextDescription
http://qudt.org/vocab/unit/MegaC-PER-M3
  - http://qudt.org/vocab/unit/MegaC-PER-M3 expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MegaC-PER-M3 expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MegaC-PER-M3 expected at most 1 uses of path qudt:plainTextDescription
http://qudt.org/vocab/unit/A_Stat-PER-CentiM2
  - http://qudt.org/vocab/unit/A_Stat-PER-CentiM2 expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/A_Stat-PER-CentiM2 expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/constant/Value_PlanckTemperature
  - http://qudt.org/vocab/constant/Value_PlanckTemperature expected at most 1 uses of path qudt:standardUncertainty
http://speckle.xyz/streams/bf7685a6aa/objects/44db527b8bbed0d3cbce9c7d1f64c3fe
  - http://speckle.xyz/streams/bf7685a6aa/objects/1aa18520ad959a6b477ce9a6cd61c432 on http://speckle.xyz/streams/bf7685a6aa/objects/44db527b8bbed0d3cbce9c7d1f64c3fe needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/1aa18520ad959a6b477ce9a6cd61c432 on http://speckle.xyz/streams/bf7685a6aa/objects/44db527b8bbed0d3cbce9c7d1f64c3fe needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/constant/Value_ElectronMagneticMomentToNuclearMagnetonRatio
  - http://qudt.org/vocab/constant/Value_ElectronMagneticMomentToNuclearMagnetonRatio expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/constant/Value_MuonNeutronMassRatio
  - http://qudt.org/vocab/constant/Value_MuonNeutronMassRatio expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/unit/CentiM3
  - http://qudt.org/vocab/unit/CentiM3 expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/CentiM3 expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/SpecificOpticalRotatoryPower
  - http://qudt.org/vocab/quantitykind/SpecificOpticalRotatoryPower expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/constant/Value_ElectronMass
  - http://qudt.org/vocab/constant/Value_ElectronMass expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/constant/Value_JouleInverseMeterRelationship
  - http://qudt.org/vocab/constant/Value_JouleInverseMeterRelationship expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/constant/Value_MuonMass
  - http://qudt.org/vocab/constant/Value_MuonMass expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/unit/L-PER-HR
  - http://qudt.org/vocab/unit/L-PER-HR expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/L-PER-HR expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/MOL-PER-M2-DAY
  - http://qudt.org/vocab/unit/MOL-PER-M2-DAY expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MOL-PER-M2-DAY expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/EvaporativeHeatTransfer
  - http://qudt.org/vocab/quantitykind/EvaporativeHeatTransfer expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/ec2b71d3c14848d38b9581adef8aed64
  - http://speckle.xyz/streams/bf7685a6aa/objects/03183bd47ce710193f9d15449df4add8 on http://speckle.xyz/streams/bf7685a6aa/objects/ec2b71d3c14848d38b9581adef8aed64 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/03183bd47ce710193f9d15449df4add8 on http://speckle.xyz/streams/bf7685a6aa/objects/ec2b71d3c14848d38b9581adef8aed64 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/efcfc38086e0c762fbf8bcafceff80ed
  - http://speckle.xyz/streams/bf7685a6aa/objects/e9670962d6933d8e0a96caf59912d990 on http://speckle.xyz/streams/bf7685a6aa/objects/efcfc38086e0c762fbf8bcafceff80ed needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e9670962d6933d8e0a96caf59912d990 on http://speckle.xyz/streams/bf7685a6aa/objects/efcfc38086e0c762fbf8bcafceff80ed needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/PlanckPressure
  - http://qudt.org/vocab/unit/PlanckPressure expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/dimensionvector/A-1E0L2I0M1H-1T-2D0
  - http://qudt.org/vocab/dimensionvector/A-1E0L2I0M1H-1T-2D0 expected at most 1 uses of path qudt:latexDefinition
http://speckle.xyz/streams/bf7685a6aa/objects/69e1b95d81a13a06c381f0454a5b1af3
  - http://speckle.xyz/streams/bf7685a6aa/objects/c1f8ba2020eb6468b1d37e4445924aa6 on http://speckle.xyz/streams/bf7685a6aa/objects/69e1b95d81a13a06c381f0454a5b1af3 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/c1f8ba2020eb6468b1d37e4445924aa6 on http://speckle.xyz/streams/bf7685a6aa/objects/69e1b95d81a13a06c381f0454a5b1af3 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/dimensionvector/A0E1L-2I0M-1H0T3D0
  - http://qudt.org/vocab/dimensionvector/A0E1L-2I0M-1H0T3D0 expected at most 1 uses of path qudt:latexDefinition
http://qudt.org/vocab/dimensionvector/A-1E0L2I0M1H0T-1D0
  - http://qudt.org/vocab/dimensionvector/A-1E0L2I0M1H0T-1D0 expected at most 1 uses of path qudt:latexDefinition
http://qudt.org/vocab/quantitykind/SpecificOpticalRotationalAbility
  - http://qudt.org/vocab/quantitykind/SpecificOpticalRotationalAbility expected at most 1 uses of path qudt:plainTextDescription
http://qudt.org/vocab/unit/IN3-PER-HR
  - http://qudt.org/vocab/unit/IN3-PER-HR expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/IN3-PER-HR expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/constant/Value_NewtonianConstantOfGravitation
  - http://qudt.org/vocab/constant/Value_NewtonianConstantOfGravitation expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/quantitykind/BatteryCapacity
  - http://qudt.org/vocab/unit/A-MIN on http://qudt.org/vocab/quantitykind/BatteryCapacity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/BatteryCapacity expected at most 1 uses of path qudt:plainTextDescription
http://qudt.org/vocab/quantitykind/StructuralEfficiency
  - http://qudt.org/vocab/quantitykind/StructuralEfficiency expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/FLIGHT on http://qudt.org/vocab/quantitykind/StructuralEfficiency needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/BoilingPoint
  - http://qudt.org/vocab/quantitykind/BoilingPoint expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/unit/GM-PER-KiloM
  - http://qudt.org/vocab/unit/GM-PER-KiloM expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/GM-PER-KiloM expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/6d63ff73c15466ddda052e5f5c0089d3
  - http://speckle.xyz/streams/bf7685a6aa/objects/f7c769a50d39f020556ab74d468269a2 on http://speckle.xyz/streams/bf7685a6aa/objects/6d63ff73c15466ddda052e5f5c0089d3 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/f7c769a50d39f020556ab74d468269a2 on http://speckle.xyz/streams/bf7685a6aa/objects/6d63ff73c15466ddda052e5f5c0089d3 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/1ace0254a9c2425892d434cf85631160
  - http://speckle.xyz/streams/bf7685a6aa/objects/2bab3a834da573d903244a9902f78aa1 on http://speckle.xyz/streams/bf7685a6aa/objects/1ace0254a9c2425892d434cf85631160 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/2bab3a834da573d903244a9902f78aa1 on http://speckle.xyz/streams/bf7685a6aa/objects/1ace0254a9c2425892d434cf85631160 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/ActivityConcentration
  - http://qudt.org/vocab/quantitykind/ActivityConcentration expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/LossFactor
  - http://qudt.org/vocab/quantitykind/LossFactor expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/quantitykind/LossFactor expected at most 1 uses of path qudt:plainTextDescription
http://speckle.xyz/streams/bf7685a6aa/objects/68eeecc8aab4e04976aa63086b4ed747
  - http://speckle.xyz/streams/bf7685a6aa/objects/f1fa1d87c09023b9c95ee3622445ae59 on http://speckle.xyz/streams/bf7685a6aa/objects/68eeecc8aab4e04976aa63086b4ed747 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/f1fa1d87c09023b9c95ee3622445ae59 on http://speckle.xyz/streams/bf7685a6aa/objects/68eeecc8aab4e04976aa63086b4ed747 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/HeatCapacity
  - http://qudt.org/vocab/quantitykind/HeatCapacity expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/ThermalDiffusionFactor
  - http://qudt.org/vocab/quantitykind/ThermalDiffusionFactor expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/05e134a92100e3c762ce4279b19de52d
  - http://speckle.xyz/streams/bf7685a6aa/objects/c1f8ba2020eb6468b1d37e4445924aa6 on http://speckle.xyz/streams/bf7685a6aa/objects/05e134a92100e3c762ce4279b19de52d needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/c1f8ba2020eb6468b1d37e4445924aa6 on http://speckle.xyz/streams/bf7685a6aa/objects/05e134a92100e3c762ce4279b19de52d needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/MicroC-PER-M2
  - http://qudt.org/vocab/unit/MicroC-PER-M2 expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MicroC-PER-M2 expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/MolarAbsorptionCoefficient
  - http://qudt.org/vocab/quantitykind/MolarAbsorptionCoefficient expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/204fc9d8880398eeddac840f36ebf9e3
  - http://speckle.xyz/streams/bf7685a6aa/objects/e9d3c9ff9450f7b762dcae8badb9365d on http://speckle.xyz/streams/bf7685a6aa/objects/204fc9d8880398eeddac840f36ebf9e3 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e9d3c9ff9450f7b762dcae8badb9365d on http://speckle.xyz/streams/bf7685a6aa/objects/204fc9d8880398eeddac840f36ebf9e3 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/Gamma
  - http://qudt.org/vocab/unit/Gamma expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/Gamma expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/ccdc87118d46ee23b9a5e3beeff5d357
  - http://speckle.xyz/streams/bf7685a6aa/objects/a1b0abf6dd519084fca5274740cfb753 on http://speckle.xyz/streams/bf7685a6aa/objects/ccdc87118d46ee23b9a5e3beeff5d357 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/a1b0abf6dd519084fca5274740cfb753 on http://speckle.xyz/streams/bf7685a6aa/objects/ccdc87118d46ee23b9a5e3beeff5d357 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/constant/Value_AtomicUnitOfMomentum
  - http://qudt.org/vocab/constant/Value_AtomicUnitOfMomentum expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/unit/NanoMOL-PER-M2-DAY
  - http://qudt.org/vocab/unit/NanoMOL-PER-M2-DAY expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/NanoMOL-PER-M2-DAY expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/constant/Value_AlphaParticleProtonMassRatio
  - http://qudt.org/vocab/constant/Value_AlphaParticleProtonMassRatio expected at most 1 uses of path qudt:standardUncertainty
http://speckle.xyz/streams/bf7685a6aa/objects/46c7a95796d090d770b524a33c8ca881
  - http://speckle.xyz/streams/bf7685a6aa/objects/f425076ef1bc756a05acbca60a39c18d on http://speckle.xyz/streams/bf7685a6aa/objects/46c7a95796d090d770b524a33c8ca881 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/f425076ef1bc756a05acbca60a39c18d on http://speckle.xyz/streams/bf7685a6aa/objects/46c7a95796d090d770b524a33c8ca881 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/6d8edef1674d6630c23d679be4faba58
  - http://speckle.xyz/streams/bf7685a6aa/objects/7dbc8030bcb7a9e9a7a560eec36e9290 on http://speckle.xyz/streams/bf7685a6aa/objects/6d8edef1674d6630c23d679be4faba58 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/7dbc8030bcb7a9e9a7a560eec36e9290 on http://speckle.xyz/streams/bf7685a6aa/objects/6d8edef1674d6630c23d679be4faba58 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/ThermalEfficiency
  - http://qudt.org/vocab/unit/PPQ on http://qudt.org/vocab/quantitykind/ThermalEfficiency needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/ThermalEfficiency expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/PPT on http://qudt.org/vocab/quantitykind/ThermalEfficiency needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/unit/MilliPA-SEC-PER-BAR
  - http://qudt.org/vocab/unit/MilliPA-SEC-PER-BAR expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MilliPA-SEC-PER-BAR expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/8be46d9fc2ed78bf0d4568526c5ef4cf
  - http://speckle.xyz/streams/bf7685a6aa/objects/570de36b94b8ce5c1670646dcd7526e1 on http://speckle.xyz/streams/bf7685a6aa/objects/8be46d9fc2ed78bf0d4568526c5ef4cf needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/570de36b94b8ce5c1670646dcd7526e1 on http://speckle.xyz/streams/bf7685a6aa/objects/8be46d9fc2ed78bf0d4568526c5ef4cf needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/MagnetizationField
  - http://qudt.org/vocab/quantitykind/MagnetizationField expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/RadiantEnergyDensity
  - http://qudt.org/vocab/quantitykind/RadiantEnergyDensity expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/fa7a385aae8198c202117dbc7112ed36
  - http://speckle.xyz/streams/bf7685a6aa/objects/12a37af4b50e5c925cc2fe8c5cfd161a on http://speckle.xyz/streams/bf7685a6aa/objects/fa7a385aae8198c202117dbc7112ed36 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/12a37af4b50e5c925cc2fe8c5cfd161a on http://speckle.xyz/streams/bf7685a6aa/objects/fa7a385aae8198c202117dbc7112ed36 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/dimensionvector/A1E0L0I0M0H0T0D0
  - http://qudt.org/vocab/dimensionvector/A1E0L0I0M0H0T0D0 expected at most 1 uses of path qudt:latexDefinition
http://speckle.xyz/streams/bf7685a6aa/objects/11b74feeee4aee0afa0aa56ef65a03ff
  - http://speckle.xyz/streams/bf7685a6aa/objects/d10364e92e51783f043254a82d39aa37 on http://speckle.xyz/streams/bf7685a6aa/objects/11b74feeee4aee0afa0aa56ef65a03ff needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/d10364e92e51783f043254a82d39aa37 on http://speckle.xyz/streams/bf7685a6aa/objects/11b74feeee4aee0afa0aa56ef65a03ff needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/dfbbad8f7379026322f393e5904f183d
  - http://speckle.xyz/streams/bf7685a6aa/objects/fd13fab9dd5bf7fb5f34f8a47903f3c4 on http://speckle.xyz/streams/bf7685a6aa/objects/dfbbad8f7379026322f393e5904f183d needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/fd13fab9dd5bf7fb5f34f8a47903f3c4 on http://speckle.xyz/streams/bf7685a6aa/objects/dfbbad8f7379026322f393e5904f183d needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/constant/Value_ElectronVoltKilogramRelationship
  - http://qudt.org/vocab/constant/Value_ElectronVoltKilogramRelationship expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/quantitykind/EquilibriumConstant
  - http://qudt.org/vocab/quantitykind/EquilibriumConstant expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/constant/Value_NaturalUnitOfTime
  - http://qudt.org/vocab/constant/Value_NaturalUnitOfTime expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H0T-3D0
  - http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H0T-3D0 expected at most 1 uses of path qudt:latexDefinition
http://qudt.org/vocab/constant/Value_TritonMassEnergyEquivalentInMeV
  - http://qudt.org/vocab/constant/Value_TritonMassEnergyEquivalentInMeV expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/quantitykind/AmountOfSubstancePerMass
  - http://qudt.org/vocab/unit/MOL_LB-PER-LB on http://qudt.org/vocab/quantitykind/AmountOfSubstancePerMass needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/dimensionvector/A0E0L0I1M0H0T0D1
  - http://qudt.org/vocab/dimensionvector/A0E0L0I1M0H0T0D1 expected at most 1 uses of path qudt:latexDefinition
http://qudt.org/vocab/constant/Value_RydbergConstantTimesHcInEV
  - http://qudt.org/vocab/constant/Value_RydbergConstantTimesHcInEV expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/constant/Value_AtomicUnitOfLength
  - http://qudt.org/vocab/constant/Value_AtomicUnitOfLength expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/constant/Value_NeutronGFactor
  - http://qudt.org/vocab/constant/Value_NeutronGFactor expected at most 1 uses of path qudt:standardUncertainty
http://speckle.xyz/streams/bf7685a6aa/objects/8d6b6233611ec055a9b99cc9d8c7f290
  - http://speckle.xyz/streams/bf7685a6aa/objects/e9d3c9ff9450f7b762dcae8badb9365d on http://speckle.xyz/streams/bf7685a6aa/objects/8d6b6233611ec055a9b99cc9d8c7f290 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e9d3c9ff9450f7b762dcae8badb9365d on http://speckle.xyz/streams/bf7685a6aa/objects/8d6b6233611ec055a9b99cc9d8c7f290 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/6fcd7983ad1d1394343462d923a9fd45
  - http://speckle.xyz/streams/bf7685a6aa/objects/d29b46cf61566e12ce91906d0ff88789 on http://speckle.xyz/streams/bf7685a6aa/objects/6fcd7983ad1d1394343462d923a9fd45 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/d29b46cf61566e12ce91906d0ff88789 on http://speckle.xyz/streams/bf7685a6aa/objects/6fcd7983ad1d1394343462d923a9fd45 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/BitDataVolume
  - http://qudt.org/vocab/quantitykind/BitDataVolume expected at most 1 uses of path qudt:plainTextDescription
http://qudt.org/vocab/constant/Value_HelionMassEnergyEquivalent
  - http://qudt.org/vocab/constant/Value_HelionMassEnergyEquivalent expected at most 1 uses of path qudt:standardUncertainty
http://speckle.xyz/streams/bf7685a6aa/objects/6593966acf7c1741542b403e1dec9c9b
  - http://speckle.xyz/streams/bf7685a6aa/objects/7b2c9e560d7ad3bbb5ccd360227389ab on http://speckle.xyz/streams/bf7685a6aa/objects/6593966acf7c1741542b403e1dec9c9b needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/7b2c9e560d7ad3bbb5ccd360227389ab on http://speckle.xyz/streams/bf7685a6aa/objects/6593966acf7c1741542b403e1dec9c9b needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/Reluctance
  - http://qudt.org/vocab/quantitykind/Reluctance expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/constant/Value_CuXUnit
  - http://qudt.org/vocab/constant/Value_CuXUnit expected at most 1 uses of path qudt:standardUncertainty
http://speckle.xyz/streams/bf7685a6aa/objects/a82efa6455024bec3021b776932134c7
  - http://speckle.xyz/streams/bf7685a6aa/objects/e13dd4b578872dbd32e09626f5d25240 on http://speckle.xyz/streams/bf7685a6aa/objects/a82efa6455024bec3021b776932134c7 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e13dd4b578872dbd32e09626f5d25240 on http://speckle.xyz/streams/bf7685a6aa/objects/a82efa6455024bec3021b776932134c7 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/PicoGM-PER-KiloGM
  - http://qudt.org/vocab/unit/PicoGM-PER-KiloGM expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/PicoGM-PER-KiloGM expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/MassicElectricCurrent
  - http://qudt.org/vocab/unit/A-PER-KiloGM on http://qudt.org/vocab/quantitykind/MassicElectricCurrent needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/dimensionvector/A0E1L0I0M-1H1T2D0
  - http://qudt.org/vocab/dimensionvector/A0E1L0I0M-1H1T2D0 expected at most 1 uses of path qudt:latexDefinition
http://qudt.org/vocab/unit/MicroGM-PER-KiloGM
  - http://qudt.org/vocab/unit/MicroGM-PER-KiloGM expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MicroGM-PER-KiloGM expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/dimensionvector/A0E0L-1I0M0H-1T0D0
  - http://qudt.org/vocab/dimensionvector/A0E0L-1I0M0H-1T0D0 expected at most 1 uses of path qudt:latexDefinition
http://qudt.org/vocab/quantitykind/ElectronDensity
  - http://qudt.org/vocab/unit/NUM-PER-MilliL on http://qudt.org/vocab/quantitykind/ElectronDensity needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/ElectronDensity expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/constant/Value_ShieldedProtonGyromagneticRatioOver2Pi
  - http://qudt.org/vocab/constant/Value_ShieldedProtonGyromagneticRatioOver2Pi expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/unit/MilliGM-PER-KiloGM
  - http://qudt.org/vocab/unit/MilliGM-PER-KiloGM expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MilliGM-PER-KiloGM expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H-1T-1D0
  - http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H-1T-1D0 expected at most 1 uses of path qudt:latexDefinition
http://qudt.org/vocab/quantitykind/MassPerAreaTime
  - http://qudt.org/vocab/unit/NanoGM-PER-CentiM2-DAY on http://qudt.org/vocab/quantitykind/MassPerAreaTime needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/MicroGM-PER-CentiM2-WK on http://qudt.org/vocab/quantitykind/MassPerAreaTime needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/MassStoppingPower
  - http://qudt.org/vocab/unit/ERG-CentiM2 on http://qudt.org/vocab/quantitykind/MassStoppingPower needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/constant/Value_InverseMeterHartreeRelationship
  - http://qudt.org/vocab/constant/Value_InverseMeterHartreeRelationship expected at most 1 uses of path qudt:standardUncertainty
http://speckle.xyz/streams/bf7685a6aa/objects/259567fedb3dc676f07363231a4da6d6
  - http://speckle.xyz/streams/bf7685a6aa/objects/768970d137816ceece03741af232ae99 on http://speckle.xyz/streams/bf7685a6aa/objects/259567fedb3dc676f07363231a4da6d6 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/768970d137816ceece03741af232ae99 on http://speckle.xyz/streams/bf7685a6aa/objects/259567fedb3dc676f07363231a4da6d6 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/7128fed15e9a2c663721a75b70be7ac6
  - http://speckle.xyz/streams/bf7685a6aa/objects/5751a7a8490e489a1a00976905f9b01b on http://speckle.xyz/streams/bf7685a6aa/objects/7128fed15e9a2c663721a75b70be7ac6 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/5751a7a8490e489a1a00976905f9b01b on http://speckle.xyz/streams/bf7685a6aa/objects/7128fed15e9a2c663721a75b70be7ac6 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/07861245b142cb10af3604425057794a
  - http://speckle.xyz/streams/bf7685a6aa/objects/22ee737a989391acee4ea60354e91210 on http://speckle.xyz/streams/bf7685a6aa/objects/07861245b142cb10af3604425057794a needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/22ee737a989391acee4ea60354e91210 on http://speckle.xyz/streams/bf7685a6aa/objects/07861245b142cb10af3604425057794a needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/AngleOfAttack
  - http://qudt.org/vocab/quantitykind/AngleOfAttack expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/constant/Value_DeuteronElectronMagneticMomentRatio
  - http://qudt.org/vocab/constant/Value_DeuteronElectronMagneticMomentRatio expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/dimensionvector/A0E1L0I0M0H0T0D-1
  - http://qudt.org/vocab/dimensionvector/A0E1L0I0M0H0T0D-1 expected at most 1 uses of path qudt:latexDefinition
http://speckle.xyz/streams/bf7685a6aa/objects/17433b8c8bdbcfaf07c83dd62a4b66aa
  - http://speckle.xyz/streams/bf7685a6aa/objects/39585c6ef6b03b8dbb18fb8a3bed20a3 on http://speckle.xyz/streams/bf7685a6aa/objects/17433b8c8bdbcfaf07c83dd62a4b66aa needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/39585c6ef6b03b8dbb18fb8a3bed20a3 on http://speckle.xyz/streams/bf7685a6aa/objects/17433b8c8bdbcfaf07c83dd62a4b66aa needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/d2367a3684010f7cedd4654141459862
  - http://speckle.xyz/streams/bf7685a6aa/objects/a1d67b4208f6eed0293c478ac7f2db72 on http://speckle.xyz/streams/bf7685a6aa/objects/d2367a3684010f7cedd4654141459862 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/a1d67b4208f6eed0293c478ac7f2db72 on http://speckle.xyz/streams/bf7685a6aa/objects/d2367a3684010f7cedd4654141459862 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/constant/Value_RydbergConstant
  - http://qudt.org/vocab/constant/Value_RydbergConstant expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/constant/Value_ElementaryChargeOverH
  - http://qudt.org/vocab/constant/Value_ElementaryChargeOverH expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T2D0
  - http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T2D0 expected at most 1 uses of path qudt:latexDefinition
http://speckle.xyz/streams/bf7685a6aa/objects/b290426be914069a8e658dcd8492f2b9
  - http://speckle.xyz/streams/bf7685a6aa/objects/8d3ab9635d58bfdfc81c3f647c553b97 on http://speckle.xyz/streams/bf7685a6aa/objects/b290426be914069a8e658dcd8492f2b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/8d3ab9635d58bfdfc81c3f647c553b97 on http://speckle.xyz/streams/bf7685a6aa/objects/b290426be914069a8e658dcd8492f2b9 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/LinearIonization
  - http://qudt.org/vocab/quantitykind/LinearIonization expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/GruneisenParameter
  - http://qudt.org/vocab/quantitykind/GruneisenParameter expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/FermiTemperature
  - http://qudt.org/vocab/quantitykind/FermiTemperature expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/5762a04daf8e9ebc2378fc81cc436ad1
  - http://speckle.xyz/streams/bf7685a6aa/objects/38b821c823fa96dd85042fa050adfcd0 on http://speckle.xyz/streams/bf7685a6aa/objects/5762a04daf8e9ebc2378fc81cc436ad1 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/38b821c823fa96dd85042fa050adfcd0 on http://speckle.xyz/streams/bf7685a6aa/objects/5762a04daf8e9ebc2378fc81cc436ad1 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/TeraW
  - http://qudt.org/vocab/unit/TeraW expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/TeraW expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/LiquidVolume
  - http://qudt.org/vocab/unit/KiloCubicFT on http://qudt.org/vocab/quantitykind/LiquidVolume needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/quantitykind/LiquidVolume expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/d3c2c54541c9d8110793b7c43cc43390
  - http://speckle.xyz/streams/bf7685a6aa/objects/c8d74312f7bce1c9b6478e66d4f19320 on http://speckle.xyz/streams/bf7685a6aa/objects/d3c2c54541c9d8110793b7c43cc43390 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/c8d74312f7bce1c9b6478e66d4f19320 on http://speckle.xyz/streams/bf7685a6aa/objects/d3c2c54541c9d8110793b7c43cc43390 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/MutualInductance
  - http://qudt.org/vocab/unit/KiloH on http://qudt.org/vocab/quantitykind/MutualInductance needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/Conductivity
  - http://qudt.org/vocab/quantitykind/Conductivity expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/constant/Value_AtomicUnitOfMagneticFluxDensity
  - http://qudt.org/vocab/constant/Value_AtomicUnitOfMagneticFluxDensity expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/constant/Value_KelvinKilogramRelationship
  - http://qudt.org/vocab/constant/Value_KelvinKilogramRelationship expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/quantitykind/AtomicStoppingPower
  - http://qudt.org/vocab/quantitykind/AtomicStoppingPower expected at most 1 uses of path qudt:plainTextDescription
http://speckle.xyz/streams/bf7685a6aa/objects/38a8f526b5ce6cae43574c487b11f5cd
  - http://speckle.xyz/streams/bf7685a6aa/objects/d29b46cf61566e12ce91906d0ff88789 on http://speckle.xyz/streams/bf7685a6aa/objects/38a8f526b5ce6cae43574c487b11f5cd needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/d29b46cf61566e12ce91906d0ff88789 on http://speckle.xyz/streams/bf7685a6aa/objects/38a8f526b5ce6cae43574c487b11f5cd needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/SpecificWeight
  - http://qudt.org/vocab/unit/KiloN-PER-M3 on http://qudt.org/vocab/quantitykind/SpecificWeight needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/OZ_F-PER-IN3 on http://qudt.org/vocab/quantitykind/SpecificWeight needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/constant/Value_NeutronMassEnergyEquivalent
  - http://qudt.org/vocab/constant/Value_NeutronMassEnergyEquivalent expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/quantitykind/ElectricalConductance
  - http://qudt.org/vocab/quantitykind/ElectricalConductance expected at most 1 uses of path qudt:plainTextDescription
http://qudt.org/vocab/constant/Value_MolarVolumeOfSilicon
  - http://qudt.org/vocab/constant/Value_MolarVolumeOfSilicon expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/constant/Value_ShieldedProtonMagneticMoment
  - http://qudt.org/vocab/constant/Value_ShieldedProtonMagneticMoment expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/quantitykind/SpecificHeatPressure
  - http://qudt.org/vocab/quantitykind/SpecificHeatPressure expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/dimensionvector/A0E0L-1I0M0H0T2D0
  - http://qudt.org/vocab/dimensionvector/A0E0L-1I0M0H0T2D0 expected at most 1 uses of path qudt:latexDefinition
http://qudt.org/vocab/unit/MicroC-PER-M3
  - http://qudt.org/vocab/unit/MicroC-PER-M3 expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MicroC-PER-M3 expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/constant/Value_AtomicMassConstantEnergyEquivalent
  - http://qudt.org/vocab/constant/Value_AtomicMassConstantEnergyEquivalent expected at most 1 uses of path qudt:standardUncertainty
http://speckle.xyz/streams/bf7685a6aa/objects/c3100f3c4693701b85e6de5b218c111e
  - http://speckle.xyz/streams/bf7685a6aa/objects/c004d7eef81cf6ab6b6ddf38b1cbabc1 on http://speckle.xyz/streams/bf7685a6aa/objects/c3100f3c4693701b85e6de5b218c111e needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/c004d7eef81cf6ab6b6ddf38b1cbabc1 on http://speckle.xyz/streams/bf7685a6aa/objects/c3100f3c4693701b85e6de5b218c111e needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/TemporalSummationFunction
  - http://qudt.org/vocab/quantitykind/TemporalSummationFunction expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/de05693277ff99aaca3a092c61f92d64
  - http://speckle.xyz/streams/bf7685a6aa/objects/e13dd4b578872dbd32e09626f5d25240 on http://speckle.xyz/streams/bf7685a6aa/objects/de05693277ff99aaca3a092c61f92d64 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e13dd4b578872dbd32e09626f5d25240 on http://speckle.xyz/streams/bf7685a6aa/objects/de05693277ff99aaca3a092c61f92d64 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/constant/Value_AtomicUnitOfEnergy
  - http://qudt.org/vocab/constant/Value_AtomicUnitOfEnergy expected at most 1 uses of path qudt:standardUncertainty
http://speckle.xyz/streams/bf7685a6aa/objects/ecf4868dc21dd7b07f4b337f80bb1230
  - http://speckle.xyz/streams/bf7685a6aa/objects/c1f8ba2020eb6468b1d37e4445924aa6 on http://speckle.xyz/streams/bf7685a6aa/objects/ecf4868dc21dd7b07f4b337f80bb1230 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/c1f8ba2020eb6468b1d37e4445924aa6 on http://speckle.xyz/streams/bf7685a6aa/objects/ecf4868dc21dd7b07f4b337f80bb1230 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/EinsteinTransitionProbabilityForSpontaneousOrInducedEmissionAndAbsorption
  - http://qudt.org/vocab/quantitykind/EinsteinTransitionProbabilityForSpontaneousOrInducedEmissionAndAbsorption expected at most 1 uses of path qudt:plainTextDescription
http://qudt.org/vocab/constant/Value_ElectronVoltInverseMeterRelationship
  - http://qudt.org/vocab/constant/Value_ElectronVoltInverseMeterRelationship expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/unit/QT_UK-PER-HR
  - http://qudt.org/vocab/unit/QT_UK-PER-HR expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/QT_UK-PER-HR expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/constant/Value_ElectronDeuteronMassRatio
  - http://qudt.org/vocab/constant/Value_ElectronDeuteronMassRatio expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/constant/Value_AtomicUnitOfChargeDensity
  - http://qudt.org/vocab/constant/Value_AtomicUnitOfChargeDensity expected at most 1 uses of path qudt:standardUncertainty
http://speckle.xyz/streams/bf7685a6aa/objects/984d4a2da536eba28ed9b1d820b94bb5
  - http://speckle.xyz/streams/bf7685a6aa/objects/1a82242a9320f719b8162c37bd9c580e on http://speckle.xyz/streams/bf7685a6aa/objects/984d4a2da536eba28ed9b1d820b94bb5 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/1a82242a9320f719b8162c37bd9c580e on http://speckle.xyz/streams/bf7685a6aa/objects/984d4a2da536eba28ed9b1d820b94bb5 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/RiseOfOffStateVoltage
  - http://qudt.org/vocab/quantitykind/RiseOfOffStateVoltage expected at most 1 uses of path qudt:plainTextDescription
http://qudt.org/vocab/quantitykind/Vorticity
  - http://qudt.org/vocab/quantitykind/Vorticity expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/d4c3e536b57b91a3975bb378ca986db0
  - http://speckle.xyz/streams/bf7685a6aa/objects/ea809d7a6106eaba6d818bfdb3e3e5b9 on http://speckle.xyz/streams/bf7685a6aa/objects/d4c3e536b57b91a3975bb378ca986db0 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/ea809d7a6106eaba6d818bfdb3e3e5b9 on http://speckle.xyz/streams/bf7685a6aa/objects/d4c3e536b57b91a3975bb378ca986db0 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/constant/Value_ProtonMass
  - http://qudt.org/vocab/constant/Value_ProtonMass expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/quantitykind/MagneticFieldStrength_H
  - http://qudt.org/vocab/quantitykind/MagneticFieldStrength_H expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/LogarithmicMedianInformationFlow_SourceToBase2
  - http://qudt.org/vocab/quantitykind/LogarithmicMedianInformationFlow_SourceToBase2 expected at most 1 uses of path qudt:plainTextDescription
http://speckle.xyz/streams/bf7685a6aa/objects/1ed5a233e957ac62d4b13d3f521e6276
  - http://speckle.xyz/streams/bf7685a6aa/objects/e192c1307d2ac8dcde3ff49ce414db81 on http://speckle.xyz/streams/bf7685a6aa/objects/1ed5a233e957ac62d4b13d3f521e6276 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e192c1307d2ac8dcde3ff49ce414db81 on http://speckle.xyz/streams/bf7685a6aa/objects/1ed5a233e957ac62d4b13d3f521e6276 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/TotalCurrentDensity
  - http://qudt.org/vocab/quantitykind/TotalCurrentDensity expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/ElectricChargePerArea
  - http://qudt.org/vocab/unit/A-HR-PER-M2 on http://qudt.org/vocab/quantitykind/ElectricChargePerArea needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/b7451341bf149a30048499ff28d98782
  - http://speckle.xyz/streams/bf7685a6aa/objects/ea809d7a6106eaba6d818bfdb3e3e5b9 on http://speckle.xyz/streams/bf7685a6aa/objects/b7451341bf149a30048499ff28d98782 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/ea809d7a6106eaba6d818bfdb3e3e5b9 on http://speckle.xyz/streams/bf7685a6aa/objects/b7451341bf149a30048499ff28d98782 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/d6ece7816f71ee1f1d546585fddc4d9b
  - http://speckle.xyz/streams/bf7685a6aa/objects/61392c60c3f0f6583028d86c3528cd5c on http://speckle.xyz/streams/bf7685a6aa/objects/d6ece7816f71ee1f1d546585fddc4d9b needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/61392c60c3f0f6583028d86c3528cd5c on http://speckle.xyz/streams/bf7685a6aa/objects/d6ece7816f71ee1f1d546585fddc4d9b needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/50cf70fd6d73e8cb9f70d0bbe52635a8
  - http://speckle.xyz/streams/bf7685a6aa/objects/61392c60c3f0f6583028d86c3528cd5c on http://speckle.xyz/streams/bf7685a6aa/objects/50cf70fd6d73e8cb9f70d0bbe52635a8 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/61392c60c3f0f6583028d86c3528cd5c on http://speckle.xyz/streams/bf7685a6aa/objects/50cf70fd6d73e8cb9f70d0bbe52635a8 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/PressureLossPerLength
  - http://qudt.org/vocab/quantitykind/PressureLossPerLength expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/RelativeLuminousFlux
  - http://qudt.org/vocab/quantitykind/RelativeLuminousFlux expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/unit/GAL_IMP
  - http://qudt.org/vocab/unit/GAL_IMP expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/DiffusionCoefficient
  - http://qudt.org/vocab/quantitykind/DiffusionCoefficient expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/Permittivity
  - http://qudt.org/vocab/quantitykind/Permittivity expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/dimensionvector/A0E1L1I0M0H0T1D0
  - http://qudt.org/vocab/dimensionvector/A0E1L1I0M0H0T1D0 expected at most 1 uses of path qudt:latexDefinition
http://qudt.org/vocab/constant/Value_AtomicUnitOfAction
  - http://qudt.org/vocab/constant/Value_AtomicUnitOfAction expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/unit/YR_TROPICAL
  - http://qudt.org/vocab/unit/YR_TROPICAL expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/YR_TROPICAL expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/dimensionvector/A0E0L-1I0M0H0T0D0
  - http://qudt.org/vocab/dimensionvector/A0E0L-1I0M0H0T0D0 expected at most 1 uses of path qudt:latexDefinition
http://qudt.org/vocab/constant/Value_HertzKilogramRelationship
  - http://qudt.org/vocab/constant/Value_HertzKilogramRelationship expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/quantitykind/LogarithmicMedianInformationFlow_SourceToBaseE
  - http://qudt.org/vocab/quantitykind/LogarithmicMedianInformationFlow_SourceToBaseE expected at most 1 uses of path qudt:plainTextDescription
http://qudt.org/vocab/unit/S-M2-PER-MOL
  - http://qudt.org/vocab/unit/S-M2-PER-MOL expected 1 instance(s) of qudt:QuantityKindDimensionVector on path qudt:hasDimensionVector
http://speckle.xyz/streams/bf7685a6aa/objects/cbd467d1fd2f17145f04e8cb826212ca
  - http://speckle.xyz/streams/bf7685a6aa/objects/5751a7a8490e489a1a00976905f9b01b on http://speckle.xyz/streams/bf7685a6aa/objects/cbd467d1fd2f17145f04e8cb826212ca needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/5751a7a8490e489a1a00976905f9b01b on http://speckle.xyz/streams/bf7685a6aa/objects/cbd467d1fd2f17145f04e8cb826212ca needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/MOMENT-OF-INERTIA_Z
  - http://qudt.org/vocab/quantitykind/MOMENT-OF-INERTIA_Z expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/constant/Value_ElectronMassEnergyEquivalentInMeV
  - http://qudt.org/vocab/constant/Value_ElectronMassEnergyEquivalentInMeV expected at most 1 uses of path qudt:standardUncertainty
http://speckle.xyz/streams/bf7685a6aa/objects/22d75fdd2e02243925e7ce205c714a87
  - http://speckle.xyz/streams/bf7685a6aa/objects/436cbdf042b2430d478faaa32f8345b5 on http://speckle.xyz/streams/bf7685a6aa/objects/22d75fdd2e02243925e7ce205c714a87 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/436cbdf042b2430d478faaa32f8345b5 on http://speckle.xyz/streams/bf7685a6aa/objects/22d75fdd2e02243925e7ce205c714a87 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/DynamicFrictionCoefficient
  - http://qudt.org/vocab/quantitykind/DynamicFrictionCoefficient expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/dimensionvector/A0E0L0I1M0H0T0D0
  - http://qudt.org/vocab/dimensionvector/A0E0L0I1M0H0T0D0 expected at most 1 uses of path qudt:latexDefinition
http://qudt.org/vocab/quantitykind/GyromagneticRatio
  - http://qudt.org/vocab/quantitykind/GyromagneticRatio expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/CurrentOfTheAmountOfSubtance
  - http://qudt.org/vocab/quantitykind/CurrentOfTheAmountOfSubtance expected at most 1 uses of path qudt:plainTextDescription
http://qudt.org/vocab/constant/Value_AtomicUnitOfMagneticDipoleMoment
  - http://qudt.org/vocab/constant/Value_AtomicUnitOfMagneticDipoleMoment expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/quantitykind/InformationContentExpressedAsALogarithmToBaseE
  - http://qudt.org/vocab/quantitykind/InformationContentExpressedAsALogarithmToBaseE expected at most 1 uses of path qudt:plainTextDescription
http://qudt.org/vocab/constant/Value_AtomicUnitOfCharge
  - http://qudt.org/vocab/constant/Value_AtomicUnitOfCharge expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/quantitykind/FrictionCoefficient
  - http://qudt.org/vocab/quantitykind/FrictionCoefficient expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H1T1D0
  - http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H1T1D0 expected at most 1 uses of path qudt:latexDefinition
http://qudt.org/vocab/quantitykind/Concentration
  - http://qudt.org/vocab/quantitykind/Concentration expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/PressureBasedElectricVoltage
  - http://qudt.org/vocab/quantitykind/PressureBasedElectricVoltage expected at most 1 uses of path qudt:plainTextDescription
http://qudt.org/vocab/constant/Value_NeutronElectronMagneticMomentRatio
  - http://qudt.org/vocab/constant/Value_NeutronElectronMagneticMomentRatio expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/unit/MilliCi
  - http://qudt.org/vocab/unit/MilliCi expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MilliCi expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/LineicPower
  - http://qudt.org/vocab/quantitykind/LineicPower expected at most 1 uses of path qudt:plainTextDescription
http://qudt.org/vocab/quantitykind/ReciprocalElectricResistance
  - http://qudt.org/vocab/quantitykind/ReciprocalElectricResistance expected at most 1 uses of path qudt:plainTextDescription
http://qudt.org/vocab/quantitykind/Non-LeakageProbability
  - http://qudt.org/vocab/quantitykind/Non-LeakageProbability expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/ae7cd5149f4491f22ac91adb538e16cb
  - http://speckle.xyz/streams/bf7685a6aa/objects/e5eb69c71be84f5da9e07df2de08c8eb on http://speckle.xyz/streams/bf7685a6aa/objects/ae7cd5149f4491f22ac91adb538e16cb needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e5eb69c71be84f5da9e07df2de08c8eb on http://speckle.xyz/streams/bf7685a6aa/objects/ae7cd5149f4491f22ac91adb538e16cb needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/1eb50078e715059d51835ef8e245dfc5
  - http://speckle.xyz/streams/bf7685a6aa/objects/22ee737a989391acee4ea60354e91210 on http://speckle.xyz/streams/bf7685a6aa/objects/1eb50078e715059d51835ef8e245dfc5 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/22ee737a989391acee4ea60354e91210 on http://speckle.xyz/streams/bf7685a6aa/objects/1eb50078e715059d51835ef8e245dfc5 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/FailureRate
  - http://qudt.org/vocab/quantitykind/FailureRate expected at most 1 uses of path qudt:plainTextDescription
http://qudt.org/vocab/quantitykind/VolumePerUnitTime
  - http://qudt.org/vocab/unit/M3-PER-YR on http://qudt.org/vocab/quantitykind/VolumePerUnitTime needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/a45e0528b6e09f14e19d4193e920305a
  - http://speckle.xyz/streams/bf7685a6aa/objects/e9490e3512dab7db58f40a947313427f on http://speckle.xyz/streams/bf7685a6aa/objects/a45e0528b6e09f14e19d4193e920305a needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e9490e3512dab7db58f40a947313427f on http://speckle.xyz/streams/bf7685a6aa/objects/a45e0528b6e09f14e19d4193e920305a needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/OZ_VOL_US-PER-SEC
  - http://qudt.org/vocab/unit/OZ_VOL_US-PER-SEC expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/OZ_VOL_US-PER-SEC expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/constant/Value_NeutronMagneticMoment
  - http://qudt.org/vocab/constant/Value_NeutronMagneticMoment expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/quantitykind/MolarThermodynamicEnergy
  - http://qudt.org/vocab/quantitykind/MolarThermodynamicEnergy expected at most 1 uses of path qudt:plainTextDescription
http://qudt.org/vocab/constant/Value_HelionMassInAtomicMassUnit
  - http://qudt.org/vocab/constant/Value_HelionMassInAtomicMassUnit expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/dimensionvector/A-1E0L3I0M1H0T-2D0
  - http://qudt.org/vocab/dimensionvector/A-1E0L3I0M1H0T-2D0 expected at most 1 uses of path qudt:latexDefinition
http://qudt.org/vocab/unit/NanoGM-PER-L
  - http://qudt.org/vocab/unit/NanoGM-PER-L expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/NanoGM-PER-L expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/34e79b0ae01c8f1808ac27292084e9f2
  - http://speckle.xyz/streams/bf7685a6aa/objects/e8908b5eec592c1e9e520605ad787a0c on http://speckle.xyz/streams/bf7685a6aa/objects/34e79b0ae01c8f1808ac27292084e9f2 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e8908b5eec592c1e9e520605ad787a0c on http://speckle.xyz/streams/bf7685a6aa/objects/34e79b0ae01c8f1808ac27292084e9f2 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/PPTM
  - http://qudt.org/vocab/unit/PPTM expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/PPTM expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/unit/FT3-PER-DAY
  - http://qudt.org/vocab/unit/FT3-PER-DAY expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/FT3-PER-DAY expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/84e4ef3beb1eddeb0eead352206ae451
  - http://speckle.xyz/streams/bf7685a6aa/objects/03183bd47ce710193f9d15449df4add8 on http://speckle.xyz/streams/bf7685a6aa/objects/84e4ef3beb1eddeb0eead352206ae451 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/03183bd47ce710193f9d15449df4add8 on http://speckle.xyz/streams/bf7685a6aa/objects/84e4ef3beb1eddeb0eead352206ae451 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/dimensionvector/A0E-2L3I0M1H0T-4D0
  - http://qudt.org/vocab/dimensionvector/A0E-2L3I0M1H0T-4D0 expected at most 1 uses of path qudt:latexDefinition
http://speckle.xyz/streams/bf7685a6aa/objects/2fd24288fc7750e73f73301d30b5e9f8
  - http://speckle.xyz/streams/bf7685a6aa/objects/d10364e92e51783f043254a82d39aa37 on http://speckle.xyz/streams/bf7685a6aa/objects/2fd24288fc7750e73f73301d30b5e9f8 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/d10364e92e51783f043254a82d39aa37 on http://speckle.xyz/streams/bf7685a6aa/objects/2fd24288fc7750e73f73301d30b5e9f8 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/CorrelatedColorTemperature
  - http://qudt.org/vocab/quantitykind/CorrelatedColorTemperature expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/constant/Value_NeutronMuonMassRatio
  - http://qudt.org/vocab/constant/Value_NeutronMuonMassRatio expected at most 1 uses of path qudt:standardUncertainty
http://speckle.xyz/streams/bf7685a6aa/objects/330c6ac55e963d2f0de1e30c71a878b5
  - http://speckle.xyz/streams/bf7685a6aa/objects/0d245daa39fba4d252d07553fdb4c419 on http://speckle.xyz/streams/bf7685a6aa/objects/330c6ac55e963d2f0de1e30c71a878b5 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/0d245daa39fba4d252d07553fdb4c419 on http://speckle.xyz/streams/bf7685a6aa/objects/330c6ac55e963d2f0de1e30c71a878b5 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/DewPointTemperature
  - http://qudt.org/vocab/quantitykind/DewPointTemperature expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/MagneticVectorPotential
  - http://qudt.org/vocab/quantitykind/MagneticVectorPotential expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/unit/QUAD
  - http://qudt.org/vocab/unit/QUAD expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/QUAD expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/ChargeNumber
  - http://qudt.org/vocab/quantitykind/ChargeNumber expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/BiodegredationHalfLife
  - http://qudt.org/vocab/quantitykind/BiodegredationHalfLife expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/LinearAbsorptionCoefficient
  - http://qudt.org/vocab/quantitykind/LinearAbsorptionCoefficient expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T-2D0
  - http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T-2D0 expected at most 1 uses of path qudt:latexDefinition
http://qudt.org/vocab/unit/DeciM3-PER-MIN
  - http://qudt.org/vocab/unit/DeciM3-PER-MIN expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/DeciM3-PER-MIN expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/16c2ff9cfb3f9419e74f9196f31c61cd
  - http://speckle.xyz/streams/bf7685a6aa/objects/e13dd4b578872dbd32e09626f5d25240 on http://speckle.xyz/streams/bf7685a6aa/objects/16c2ff9cfb3f9419e74f9196f31c61cd needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e13dd4b578872dbd32e09626f5d25240 on http://speckle.xyz/streams/bf7685a6aa/objects/16c2ff9cfb3f9419e74f9196f31c61cd needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/constant/Value_TritonGFactor
  - http://qudt.org/vocab/constant/Value_TritonGFactor expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/constant/Value_SpeedOfLight_Vacuum
  - http://qudt.org/vocab/constant/Value_SpeedOfLight_Vacuum expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/quantitykind/PressureBasedTemperature
  - http://qudt.org/vocab/quantitykind/PressureBasedTemperature expected at most 1 uses of path qudt:plainTextDescription
http://qudt.org/vocab/quantitykind/RichardsonConstant
  - http://qudt.org/vocab/quantitykind/RichardsonConstant expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T-2D0
  - http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T-2D0 expected at most 1 uses of path qudt:latexDefinition
http://qudt.org/vocab/quantitykind/TemperatureBasedAmountOfSubstanceConcentration
  - http://qudt.org/vocab/quantitykind/TemperatureBasedAmountOfSubstanceConcentration expected at most 1 uses of path qudt:plainTextDescription
http://speckle.xyz/streams/bf7685a6aa/objects/14001bf8c70943e6281317c38ace4ebc
  - http://speckle.xyz/streams/bf7685a6aa/objects/1dc2c8fcc6faad709669a1da5c22f1fb on http://speckle.xyz/streams/bf7685a6aa/objects/14001bf8c70943e6281317c38ace4ebc needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/1dc2c8fcc6faad709669a1da5c22f1fb on http://speckle.xyz/streams/bf7685a6aa/objects/14001bf8c70943e6281317c38ace4ebc needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/55de26aed6a65d7f470d80169412bacb
  - http://speckle.xyz/streams/bf7685a6aa/objects/e9d3c9ff9450f7b762dcae8badb9365d on http://speckle.xyz/streams/bf7685a6aa/objects/55de26aed6a65d7f470d80169412bacb needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e9d3c9ff9450f7b762dcae8badb9365d on http://speckle.xyz/streams/bf7685a6aa/objects/55de26aed6a65d7f470d80169412bacb needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/CutoffCurrentRating
  - http://qudt.org/vocab/quantitykind/CutoffCurrentRating expected at most 1 uses of path qudt:plainTextDescription
http://qudt.org/vocab/constant/Value_AlphaParticleMass
  - http://qudt.org/vocab/constant/Value_AlphaParticleMass expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/constant/FirstRadiationConstant
  - http://qudt.org/vocab/constant/FirstRadiationConstant expected at most 1 uses of path qudt:plainTextDescription
http://speckle.xyz/streams/bf7685a6aa/objects/86a1c7be7b6193b0ddaae669ed3c08bb
  - http://speckle.xyz/streams/bf7685a6aa/objects/688b34664f1f51ab620458521e56a4b6 on http://speckle.xyz/streams/bf7685a6aa/objects/86a1c7be7b6193b0ddaae669ed3c08bb needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/688b34664f1f51ab620458521e56a4b6 on http://speckle.xyz/streams/bf7685a6aa/objects/86a1c7be7b6193b0ddaae669ed3c08bb needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/dimensionvector/A0E1L-2I0M0H0T1D0
  - http://qudt.org/vocab/dimensionvector/A0E1L-2I0M0H0T1D0 expected at most 1 uses of path qudt:latexDefinition
http://qudt.org/vocab/quantitykind/PressureBasedDensity
  - http://qudt.org/vocab/quantitykind/PressureBasedDensity expected at most 1 uses of path qudt:plainTextDescription
http://qudt.org/vocab/quantitykind/MolarRefractivity
  - http://qudt.org/vocab/quantitykind/MolarRefractivity expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/AtomicNumber
  - http://qudt.org/vocab/quantitykind/AtomicNumber expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/TotalLinearStoppingPower
  - http://qudt.org/vocab/quantitykind/TotalLinearStoppingPower expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/constant/Value_ElectronTauMassRatio
  - http://qudt.org/vocab/constant/Value_ElectronTauMassRatio expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/quantitykind/GustatoryThreshold
  - http://qudt.org/vocab/quantitykind/GustatoryThreshold expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T-3D0
  - http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T-3D0 expected at most 1 uses of path qudt:latexDefinition
http://qudt.org/vocab/quantitykind/IonicCharge
  - http://qudt.org/vocab/quantitykind/IonicCharge expected at most 1 uses of path dcterms:description
  - http://qudt.org/vocab/unit/MilliA-SEC on http://qudt.org/vocab/quantitykind/IonicCharge needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/KiloJ-PER-KiloV on http://qudt.org/vocab/quantitykind/IonicCharge needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/ElectricDipoleMoment
  - http://qudt.org/vocab/quantitykind/ElectricDipoleMoment expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/ThermalDiffusionRatioCoefficient
  - http://qudt.org/vocab/quantitykind/ThermalDiffusionRatioCoefficient expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/unit/MicroMOL-PER-SEC
  - http://qudt.org/vocab/unit/MicroMOL-PER-SEC expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MicroMOL-PER-SEC expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/VolumetricEntityDensity
  - http://qudt.org/vocab/quantitykind/VolumetricEntityDensity expected at most 1 uses of path qudt:plainTextDescription
http://qudt.org/vocab/constant/Value_PlanckLength
  - http://qudt.org/vocab/constant/Value_PlanckLength expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/dimensionvector/A0E0L3I0M1H0T-2D0
  - http://qudt.org/vocab/dimensionvector/A0E0L3I0M1H0T-2D0 expected at most 1 uses of path qudt:latexDefinition
http://speckle.xyz/streams/bf7685a6aa/objects/d85b9baf4427333a3d4563b8c97810c0
  - http://speckle.xyz/streams/bf7685a6aa/objects/82270a0b3589a9ebc714fbf580619e80 on http://speckle.xyz/streams/bf7685a6aa/objects/d85b9baf4427333a3d4563b8c97810c0 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/82270a0b3589a9ebc714fbf580619e80 on http://speckle.xyz/streams/bf7685a6aa/objects/d85b9baf4427333a3d4563b8c97810c0 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/GeneFamilyAbundance
  - http://qudt.org/vocab/quantitykind/GeneFamilyAbundance expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/unit/PebiBYTE
  - http://qudt.org/vocab/unit/PebiBYTE expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/PebiBYTE expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/constant/Value_PlanckTime
  - http://qudt.org/vocab/constant/Value_PlanckTime expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/dimensionvector/A0E0L4I0M2H0T-4D0
  - http://qudt.org/vocab/dimensionvector/A0E0L4I0M2H0T-4D0 expected at most 1 uses of path qudt:latexDefinition
http://qudt.org/vocab/quantitykind/ExtentOfReaction
  - http://qudt.org/vocab/quantitykind/ExtentOfReaction expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/GeneralizedForce
  - http://qudt.org/vocab/quantitykind/GeneralizedForce expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T0D0
  - http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T0D0 expected at most 1 uses of path qudt:latexDefinition
http://qudt.org/vocab/unit/MilliM-PER-MIN
  - http://qudt.org/vocab/unit/MilliM-PER-MIN expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/MilliM-PER-MIN expected at most 1 uses of path qudt:conversionMultiplier
http://speckle.xyz/streams/bf7685a6aa/objects/c034cbeee06bf8e3fa42e18668ee1777
  - http://speckle.xyz/streams/bf7685a6aa/objects/88e5f0e92bf4bbc79c68bfdbe2675e55 on http://speckle.xyz/streams/bf7685a6aa/objects/c034cbeee06bf8e3fa42e18668ee1777 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/88e5f0e92bf4bbc79c68bfdbe2675e55 on http://speckle.xyz/streams/bf7685a6aa/objects/c034cbeee06bf8e3fa42e18668ee1777 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/BloodGlucoseLevel_Mass
  - http://qudt.org/vocab/quantitykind/BloodGlucoseLevel_Mass expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/constant/Value_NeutronGyromagneticRatio
  - http://qudt.org/vocab/constant/Value_NeutronGyromagneticRatio expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/constant/Value_AtomicMassConstantEnergyEquivalentInMeV
  - http://qudt.org/vocab/constant/Value_AtomicMassConstantEnergyEquivalentInMeV expected at most 1 uses of path qudt:standardUncertainty
http://speckle.xyz/streams/bf7685a6aa/objects/2fea9a251e71cbbcdddeeefc9385e01d
  - http://speckle.xyz/streams/bf7685a6aa/objects/03183bd47ce710193f9d15449df4add8 on http://speckle.xyz/streams/bf7685a6aa/objects/2fea9a251e71cbbcdddeeefc9385e01d needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/03183bd47ce710193f9d15449df4add8 on http://speckle.xyz/streams/bf7685a6aa/objects/2fea9a251e71cbbcdddeeefc9385e01d needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/PressureBasedVelocity
  - http://qudt.org/vocab/quantitykind/PressureBasedVelocity expected at most 1 uses of path qudt:plainTextDescription
http://speckle.xyz/streams/bf7685a6aa/objects/e85133be7b18738e1de21b2dc1647ad8
  - http://speckle.xyz/streams/bf7685a6aa/objects/ea809d7a6106eaba6d818bfdb3e3e5b9 on http://speckle.xyz/streams/bf7685a6aa/objects/e85133be7b18738e1de21b2dc1647ad8 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/ea809d7a6106eaba6d818bfdb3e3e5b9 on http://speckle.xyz/streams/bf7685a6aa/objects/e85133be7b18738e1de21b2dc1647ad8 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/unit/GigaHZ
  - http://qudt.org/vocab/unit/GigaHZ expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/GigaHZ expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/IncidenceProportion
  - http://qudt.org/vocab/quantitykind/IncidenceProportion expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/unit/PERMITTIVITY_REL
  - http://qudt.org/vocab/unit/PERMITTIVITY_REL expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/PERMITTIVITY_REL expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/constant/Value_TauElectronMassRatio
  - http://qudt.org/vocab/constant/Value_TauElectronMassRatio expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T1D0
  - http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T1D0 expected at most 1 uses of path qudt:latexDefinition
http://qudt.org/vocab/quantitykind/MassicTorque
  - http://qudt.org/vocab/quantitykind/MassicTorque expected at most 1 uses of path qudt:plainTextDescription
http://qudt.org/vocab/quantitykind/ModulusOfSubgradeReaction
  - http://qudt.org/vocab/quantitykind/ModulusOfSubgradeReaction expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/dimensionvector/A0E0L-1I0M-1H0T3D0
  - http://qudt.org/vocab/dimensionvector/A0E0L-1I0M-1H0T3D0 expected at most 1 uses of path qudt:latexDefinition
http://qudt.org/vocab/quantitykind/LogarithmRatioToBase10
  - http://qudt.org/vocab/quantitykind/LogarithmRatioToBase10 expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/dimensionvector/A0E1L2I0M0H0T1D0
  - http://qudt.org/vocab/dimensionvector/A0E1L2I0M0H0T1D0 expected at most 1 uses of path qudt:latexDefinition
http://qudt.org/vocab/constant/Value_TauMolarMass
  - http://qudt.org/vocab/constant/Value_TauMolarMass expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/constant/Value_ComptonWavelengthOver2Pi
  - http://qudt.org/vocab/constant/Value_ComptonWavelengthOver2Pi expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/quantitykind/StrainEnergyDensity
  - http://qudt.org/vocab/quantitykind/StrainEnergyDensity expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/b23abfd5ad0e1f353a1ab000036ffd36
  - http://speckle.xyz/streams/bf7685a6aa/objects/22ee737a989391acee4ea60354e91210 on http://speckle.xyz/streams/bf7685a6aa/objects/b23abfd5ad0e1f353a1ab000036ffd36 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/22ee737a989391acee4ea60354e91210 on http://speckle.xyz/streams/bf7685a6aa/objects/b23abfd5ad0e1f353a1ab000036ffd36 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H-1T0D0
  - http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H-1T0D0 expected at most 1 uses of path qudt:latexDefinition
http://speckle.xyz/streams/bf7685a6aa/objects/8850770416a12ad32469fbbc17593ae3
  - http://speckle.xyz/streams/bf7685a6aa/objects/e81a465e50845b69c15fe22a744fc9df on http://speckle.xyz/streams/bf7685a6aa/objects/8850770416a12ad32469fbbc17593ae3 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/e81a465e50845b69c15fe22a744fc9df on http://speckle.xyz/streams/bf7685a6aa/objects/8850770416a12ad32469fbbc17593ae3 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/constant/Value_DeuteronProtonMagneticMomentRatio
  - http://qudt.org/vocab/constant/Value_DeuteronProtonMagneticMomentRatio expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/dimensionvector/A0E1L-1I0M0H0T0D0
  - http://qudt.org/vocab/dimensionvector/A0E1L-1I0M0H0T0D0 expected at most 1 uses of path qudt:latexDefinition
http://qudt.org/vocab/quantitykind/PackingFraction
  - http://qudt.org/vocab/quantitykind/PackingFraction expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/8b8f96afcc1266e837019a11bcdad101
  - http://speckle.xyz/streams/bf7685a6aa/objects/39585c6ef6b03b8dbb18fb8a3bed20a3 on http://speckle.xyz/streams/bf7685a6aa/objects/8b8f96afcc1266e837019a11bcdad101 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/39585c6ef6b03b8dbb18fb8a3bed20a3 on http://speckle.xyz/streams/bf7685a6aa/objects/8b8f96afcc1266e837019a11bcdad101 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/AngularDistance
  - http://qudt.org/vocab/quantitykind/AngularDistance expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/PressureBasedDynamicViscosity
  - http://qudt.org/vocab/quantitykind/PressureBasedDynamicViscosity expected at most 1 uses of path qudt:plainTextDescription
http://speckle.xyz/streams/bf7685a6aa/objects/f6206a8dacb7596105bc2ef73b6b2eac
  - http://speckle.xyz/streams/bf7685a6aa/objects/17592c23e3930128143ddd679cd6a0d0 on http://speckle.xyz/streams/bf7685a6aa/objects/f6206a8dacb7596105bc2ef73b6b2eac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/17592c23e3930128143ddd679cd6a0d0 on http://speckle.xyz/streams/bf7685a6aa/objects/f6206a8dacb7596105bc2ef73b6b2eac needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://speckle.xyz/streams/bf7685a6aa/objects/4b1a768a6c7a44de9ef9af88482821f3
  - http://speckle.xyz/streams/bf7685a6aa/objects/9235406fdde87cb2ee62f34297961438 on http://speckle.xyz/streams/bf7685a6aa/objects/4b1a768a6c7a44de9ef9af88482821f3 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/9235406fdde87cb2ee62f34297961438 on http://speckle.xyz/streams/bf7685a6aa/objects/4b1a768a6c7a44de9ef9af88482821f3 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/EquilibriumConstantBasedOnPressure
  - http://qudt.org/vocab/quantitykind/EquilibriumConstantBasedOnPressure expected at most 1 uses of path qudt:plainTextDescription
http://qudt.org/vocab/quantitykind/TotalRadiance
  - http://qudt.org/vocab/quantitykind/TotalRadiance expected at most 1 uses of path qudt:plainTextDescription
http://qudt.org/vocab/quantitykind/ElectricFlux
  - http://qudt.org/vocab/quantitykind/ElectricFlux expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/ActivityCoefficient
  - http://qudt.org/vocab/quantitykind/ActivityCoefficient expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/MorbidityRate
  - http://qudt.org/vocab/quantitykind/MorbidityRate expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/Chromaticity
  - http://qudt.org/vocab/quantitykind/Chromaticity expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/PeltierCoefficient
  - http://qudt.org/vocab/quantitykind/PeltierCoefficient expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/unit/CentiM3-PER-MIN
  - http://qudt.org/vocab/unit/CentiM3-PER-MIN expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/CentiM3-PER-MIN expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/CurvatureFromRadius
  - http://qudt.org/vocab/quantitykind/CurvatureFromRadius expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/constant/Value_AtomicMassUnitElectronVoltRelationship
  - http://qudt.org/vocab/constant/Value_AtomicMassUnitElectronVoltRelationship expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H1T0D0
  - http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H1T0D0 expected at most 1 uses of path qudt:latexDefinition
http://qudt.org/vocab/quantitykind/RankineTemperature
  - http://qudt.org/vocab/quantitykind/RankineTemperature expected at most 1 uses of path qudt:plainTextDescription
http://qudt.org/vocab/constant/Value_MuonTauMassRatio
  - http://qudt.org/vocab/constant/Value_MuonTauMassRatio expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/constant/Value_NeutronComptonWavelength
  - http://qudt.org/vocab/constant/Value_NeutronComptonWavelength expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/quantitykind/SpecificElectricCharge
  - http://qudt.org/vocab/quantitykind/SpecificElectricCharge expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/ThermalUtilizationFactor
  - http://qudt.org/vocab/quantitykind/ThermalUtilizationFactor expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/constant/Value_AtomicMassUnitInverseMeterRelationship
  - http://qudt.org/vocab/constant/Value_AtomicMassUnitInverseMeterRelationship expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/constant/Value_BohrMagnetonInHzPerT
  - http://qudt.org/vocab/constant/Value_BohrMagnetonInHzPerT expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/quantitykind/VolumicDataQuantity
  - http://qudt.org/vocab/quantitykind/VolumicDataQuantity expected at most 1 uses of path qudt:plainTextDescription
http://qudt.org/vocab/quantitykind/ThermalInsulation
  - http://qudt.org/vocab/quantitykind/ThermalInsulation expected at most 1 uses of path qudt:plainTextDescription
http://qudt.org/vocab/constant/Value_NaturalUnitOfEnergy
  - http://qudt.org/vocab/constant/Value_NaturalUnitOfEnergy expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/quantitykind/AmountOfSubstancePerUnitVolume
  - http://qudt.org/vocab/quantitykind/AmountOfSubstancePerUnitVolume expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/0756e53cf10a886775c14e95f87d39fc
  - http://speckle.xyz/streams/bf7685a6aa/objects/2bab3a834da573d903244a9902f78aa1 on http://speckle.xyz/streams/bf7685a6aa/objects/0756e53cf10a886775c14e95f87d39fc needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/2bab3a834da573d903244a9902f78aa1 on http://speckle.xyz/streams/bf7685a6aa/objects/0756e53cf10a886775c14e95f87d39fc needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/Short-RangeOrderParameter
  - http://qudt.org/vocab/quantitykind/Short-RangeOrderParameter expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/constant/Value_ProtonGFactor
  - http://qudt.org/vocab/constant/Value_ProtonGFactor expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/constant/Value_KelvinJouleRelationship
  - http://qudt.org/vocab/constant/Value_KelvinJouleRelationship expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/quantitykind/PressureBurningRateConstant
  - http://qudt.org/vocab/unit/FLIGHT on http://qudt.org/vocab/quantitykind/PressureBurningRateConstant needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/dimensionvector/A-1E0L0I0M0H0T0D0
  - http://qudt.org/vocab/dimensionvector/A-1E0L0I0M0H0T0D0 expected at most 1 uses of path qudt:latexDefinition
http://qudt.org/vocab/quantitykind/EquivalenceDoseOutput
  - http://qudt.org/vocab/quantitykind/EquivalenceDoseOutput expected at most 1 uses of path qudt:plainTextDescription
http://speckle.xyz/streams/bf7685a6aa/objects/c2a4a75a12a7315ca08715fc7d09c174
  - http://speckle.xyz/streams/bf7685a6aa/objects/44f7d7dae3b62130ad8fda3f589fc508 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a4a75a12a7315ca08715fc7d09c174 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/44f7d7dae3b62130ad8fda3f589fc508 on http://speckle.xyz/streams/bf7685a6aa/objects/c2a4a75a12a7315ca08715fc7d09c174 needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/AngleOfOpticalRotation
  - http://qudt.org/vocab/quantitykind/AngleOfOpticalRotation expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/constant/Value_NeutronProtonMagneticMomentRatio
  - http://qudt.org/vocab/constant/Value_NeutronProtonMagneticMomentRatio expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/constant/Value_DeuteronMagneticMoment
  - http://qudt.org/vocab/constant/Value_DeuteronMagneticMoment expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/dimensionvector/A0E0L-2I0M2H0T-2D0
  - http://qudt.org/vocab/dimensionvector/A0E0L-2I0M2H0T-2D0 expected at most 1 uses of path qudt:latexDefinition
  - http://qudt.org/vocab/quantitykind/MassForcePerVolume on http://qudt.org/vocab/dimensionvector/A0E0L-2I0M2H0T-2D0 needs to be a http://qudt.org/schema/qudt/QuantityKind
http://qudt.org/vocab/constant/Value_HartreeElectronVoltRelationship
  - http://qudt.org/vocab/constant/Value_HartreeElectronVoltRelationship expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/quantitykind/SoundParticleVelocity
  - http://qudt.org/vocab/quantitykind/SoundParticleVelocity expected at most 1 uses of path dcterms:description
http://speckle.xyz/streams/bf7685a6aa/objects/379c55da9c28681afd0d43b1c98f5e8c
  - http://speckle.xyz/streams/bf7685a6aa/objects/dda6fc2cd9f746d9e9297e0859f5eb4d on http://speckle.xyz/streams/bf7685a6aa/objects/379c55da9c28681afd0d43b1c98f5e8c needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/dda6fc2cd9f746d9e9297e0859f5eb4d on http://speckle.xyz/streams/bf7685a6aa/objects/379c55da9c28681afd0d43b1c98f5e8c needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/VolumeStrain
  - http://qudt.org/vocab/unit/PPT on http://qudt.org/vocab/quantitykind/VolumeStrain needs to be a http://qudt.org/schema/qudt/Unit
  - http://qudt.org/vocab/unit/PPQ on http://qudt.org/vocab/quantitykind/VolumeStrain needs to be a http://qudt.org/schema/qudt/Unit
http://qudt.org/vocab/quantitykind/BraggAngle
  - http://qudt.org/vocab/quantitykind/BraggAngle expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T-1D0
  - http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T-1D0 expected at most 1 uses of path qudt:latexDefinition
http://qudt.org/vocab/constant/Value_UnifiedAtomicMassUnit
  - http://qudt.org/vocab/constant/Value_UnifiedAtomicMassUnit expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/constant/Value_JouleElectronVoltRelationship
  - http://qudt.org/vocab/constant/Value_JouleElectronVoltRelationship expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/dimensionvector/A0E-2L2I0M1H0T-2D0
  - http://qudt.org/vocab/dimensionvector/A0E-2L2I0M1H0T-2D0 expected at most 1 uses of path qudt:latexDefinition
http://qudt.org/vocab/quantitykind/MolarEnergy
  - http://qudt.org/vocab/quantitykind/MolarEnergy expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/constant/Value_ProtonComptonWavelengthOver2Pi
  - http://qudt.org/vocab/constant/Value_ProtonComptonWavelengthOver2Pi expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/quantitykind/TemperatureBasedVolumeFlowRate
  - http://qudt.org/vocab/quantitykind/TemperatureBasedVolumeFlowRate expected at most 1 uses of path qudt:plainTextDescription
http://qudt.org/vocab/dimensionvector/A-1E0L3I0M0H0T0D0
  - http://qudt.org/vocab/dimensionvector/A-1E0L3I0M0H0T0D0 expected at most 1 uses of path qudt:latexDefinition
http://qudt.org/vocab/constant/Value_HartreeInverseMeterRelationship
  - http://qudt.org/vocab/constant/Value_HartreeInverseMeterRelationship expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/quantitykind/LinearAttenuationCoefficient
  - http://qudt.org/vocab/quantitykind/LinearAttenuationCoefficient expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/MagneticField
  - http://qudt.org/vocab/unit/KiloT on http://qudt.org/vocab/quantitykind/MagneticField needs to be a http://qudt.org/schema/qudt/Unit
http://speckle.xyz/streams/bf7685a6aa/objects/e2f5c19d0d1ea8603fab07a29671589c
  - http://speckle.xyz/streams/bf7685a6aa/objects/2119b9678ef6ebb538a9e7cbcf2370fa on http://speckle.xyz/streams/bf7685a6aa/objects/e2f5c19d0d1ea8603fab07a29671589c needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/2119b9678ef6ebb538a9e7cbcf2370fa on http://speckle.xyz/streams/bf7685a6aa/objects/e2f5c19d0d1ea8603fab07a29671589c needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/MobilityRatio
  - http://qudt.org/vocab/quantitykind/MobilityRatio expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/constant/Value_InverseMeterJouleRelationship
  - http://qudt.org/vocab/constant/Value_InverseMeterJouleRelationship expected at most 1 uses of path qudt:standardUncertainty
http://speckle.xyz/streams/bf7685a6aa/objects/211253a7553c18986e9c0c8d55ae672c
  - http://speckle.xyz/streams/bf7685a6aa/objects/ce3f60d6e3b49ebc1f1e6990046a5617 on http://speckle.xyz/streams/bf7685a6aa/objects/211253a7553c18986e9c0c8d55ae672c needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/ce3f60d6e3b49ebc1f1e6990046a5617 on http://speckle.xyz/streams/bf7685a6aa/objects/211253a7553c18986e9c0c8d55ae672c needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/MagneticFluxDensityOrMagneticPolarization
  - http://qudt.org/vocab/quantitykind/MagneticFluxDensityOrMagneticPolarization expected at most 1 uses of path qudt:plainTextDescription
http://qudt.org/vocab/quantitykind/TransmittanceDensity
  - http://qudt.org/vocab/quantitykind/TransmittanceDensity expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/dimensionvector/A0E1L-2I0M-1H0T2D0
  - http://qudt.org/vocab/dimensionvector/A0E1L-2I0M-1H0T2D0 expected at most 1 uses of path qudt:latexDefinition
http://qudt.org/vocab/constant/Value_InverseMeterAtomicMassUnitRelationship
  - http://qudt.org/vocab/constant/Value_InverseMeterAtomicMassUnitRelationship expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/dimensionvector/A0E-1L3I0M1H0T-3D0
  - http://qudt.org/vocab/dimensionvector/A0E-1L3I0M1H0T-3D0 expected at most 1 uses of path qudt:latexDefinition
http://speckle.xyz/streams/bf7685a6aa/objects/721fb293cdf4adfd34b4b9265b62a20c
  - http://speckle.xyz/streams/bf7685a6aa/objects/86794e87250ef6ac1ca88b1e608e64b4 on http://speckle.xyz/streams/bf7685a6aa/objects/721fb293cdf4adfd34b4b9265b62a20c needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/86794e87250ef6ac1ca88b1e608e64b4 on http://speckle.xyz/streams/bf7685a6aa/objects/721fb293cdf4adfd34b4b9265b62a20c needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/quantitykind/ReciprocalPlaneAngle
  - http://qudt.org/vocab/quantitykind/ReciprocalPlaneAngle expected at most 1 uses of path qudt:plainTextDescription
http://qudt.org/vocab/quantitykind/TemperatureRelatedVolume
  - http://qudt.org/vocab/quantitykind/TemperatureRelatedVolume expected at most 1 uses of path qudt:plainTextDescription
http://qudt.org/vocab/quantitykind/LinearVoltageCoefficient
  - http://qudt.org/vocab/quantitykind/LinearVoltageCoefficient expected at most 1 uses of path qudt:plainTextDescription
http://qudt.org/vocab/constant/Value_HertzAtomicMassUnitRelationship
  - http://qudt.org/vocab/constant/Value_HertzAtomicMassUnitRelationship expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/quantitykind/MolecularViscosity
  - http://qudt.org/vocab/quantitykind/MolecularViscosity expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/constant/Value_TritonMassInAtomicMassUnit
  - http://qudt.org/vocab/constant/Value_TritonMassInAtomicMassUnit expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/dimensionvector/A0E0L4I0M0H0T0D0
  - http://qudt.org/vocab/dimensionvector/A0E0L4I0M0H0T0D0 expected at most 1 uses of path qudt:latexDefinition
http://qudt.org/vocab/quantitykind/VolumicAmountOfSubstance
  - http://qudt.org/vocab/quantitykind/VolumicAmountOfSubstance expected at most 1 uses of path qudt:plainTextDescription
http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T-1D0
  - http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T-1D0 expected at most 1 uses of path qudt:latexDefinition
http://speckle.xyz/streams/bf7685a6aa/objects/a04a8e3a83a4a2442a4b1fdd810efa2e
  - http://speckle.xyz/streams/bf7685a6aa/objects/1aa18520ad959a6b477ce9a6cd61c432 on http://speckle.xyz/streams/bf7685a6aa/objects/a04a8e3a83a4a2442a4b1fdd810efa2e needs to be a http://data.ashrae.org/standard223#PhysicalSpace
  - http://speckle.xyz/streams/bf7685a6aa/objects/1aa18520ad959a6b477ce9a6cd61c432 on http://speckle.xyz/streams/bf7685a6aa/objects/a04a8e3a83a4a2442a4b1fdd810efa2e needs to be a http://data.ashrae.org/standard223#PhysicalSpace
http://qudt.org/vocab/constant/Value_BohrRadius
  - http://qudt.org/vocab/constant/Value_BohrRadius expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/constant/Value_ShieldedProtonMagneticMomentToNuclearMagnetonRatio
  - http://qudt.org/vocab/constant/Value_ShieldedProtonMagneticMomentToNuclearMagnetonRatio expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/quantitykind/VolumicOutput
  - http://qudt.org/vocab/quantitykind/VolumicOutput expected at most 1 uses of path qudt:plainTextDescription
http://qudt.org/vocab/quantitykind/LineicTorque
  - http://qudt.org/vocab/quantitykind/LineicTorque expected at most 1 uses of path qudt:plainTextDescription
http://qudt.org/vocab/quantitykind/BulkModulus
  - http://qudt.org/vocab/quantitykind/BulkModulus expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/constant/Value_JosephsonConstant
  - http://qudt.org/vocab/constant/Value_JosephsonConstant expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/unit/GAL_US-PER-HR
  - http://qudt.org/vocab/unit/GAL_US-PER-HR expected at most 1 uses of path qudt:conversionMultiplier
  - http://qudt.org/vocab/unit/GAL_US-PER-HR expected at most 1 uses of path qudt:conversionMultiplier
http://qudt.org/vocab/quantitykind/Circulation
  - http://qudt.org/vocab/quantitykind/Circulation expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/constant/Value_RydbergConstantTimesHcInJ
  - http://qudt.org/vocab/constant/Value_RydbergConstantTimesHcInJ expected at most 1 uses of path qudt:standardUncertainty
http://qudt.org/vocab/quantitykind/MassConcentration
  - http://qudt.org/vocab/quantitykind/MassConcentration expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/NapierianAbsorbance
  - http://qudt.org/vocab/quantitykind/NapierianAbsorbance expected at most 1 uses of path dcterms:description
http://qudt.org/vocab/quantitykind/ExposureRateOfIonizingRadiation
  - http://qudt.org/vocab/quantitykind/ExposureRateOfIonizingRadiation expected at most 1 uses of path qudt:plainTextDescription