Skip to article frontmatterSkip to article content
Site not loading correctly?

This may be due to an incorrect BASE_URL configuration. See the MyST Documentation for reference.

LBNL Example SCB VRF

LBNL Example SCB VRF

This is a reference model provided by LBNL of a small office building using a VRF Heat Recovery System. Labels have been anonymized, and may not be interpretable.

Downloads

What are these files?
  • Turtle file (original): This is the original source Turtle file that was provided to models.open223.info, usually as the output of some model creation tool.

  • Turtle file (compiled): This is the original Turtle file with all inferred relationships and values added through SHACL inference against the 223P ontology and other dependencies. You should use this file for any further processing. It does not contain any of the ontologies.

  • Turtle file (with all imports): This is the compiled Turtle file with all imports included in the file (223P ontology, QUDT ontology, and others). This is helpful when you do not want to deal with downloading and managing ontology dependencies. It is also much larger than the compiled file.

  • JSON-LD file (original): This is the original Turtle file converted to the JSON-LD format.

Turtle is a syntax for RDF (Resource Description Framework) that is easy to read and write. It is a popular format for representing linked data. Parsers and serializers are available in many programming languages. JSON-LD is a JSON-based format for linked data that is easy to use with JavaScript and other web technologies.

Queries

DescriptionQuery URL
Select all triples from model.Query Link

Model Components

Load and Validate Model

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

BuildingMOTIF resolves the ontology’s dependencies with OntoEnv and validates with shifty, both of which are self-contained Rust extensions, so there is nothing else to install and no Java is required.

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

# Create a BuildingMOTIF object. This validates with the "pyshifty" SHACL
# engine by default, so there is nothing else to install and no Java required.
bm = BuildingMOTIF('sqlite://', 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.
# BuildingMOTIF uses OntoEnv to fetch the ontologies 223P depends on (QUDT, SHACL, ...).
s223 = Library.from_ontology("https://open223.info/223p.ttl", infer_templates=False, run_shacl_inference=False)

# load the model into the BuildingMOTIF instance. This page pins the exact copy
# it was built and validated against, so it stays reproducible as the site moves
# on. To run this against the current published model, use the permanent URL:
#
#     model = Model.from_file("https://models.open223.info/scb-vrf.ttl")
#
model = Model.from_file("https://raw.githubusercontent.com/open223/models.open223.info/1da4cd1739c0e45f9cd8c06a5c25635654355337/models/scb-vrf.ttl")

# a model's manifest lists the libraries it should conform to
model.manifest.add(s223)

# validate the model against its manifest
ctx = model.validate()

# print when validation completed
print(f"Validation run at: {datetime.now(timezone.utc).isoformat(timespec='seconds')}")

# 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())
Validation run at: 2026-09-05T14:55:38+00:00
Model is valid: False
Validation Report
Conforms: False

Violation result in http://data.ashrae.org/standard223#ConnectionPoint (<http://data.ashrae.org/standard223/data/scb-vrf#00042>):
  Path: <http://data.ashrae.org/standard223#hasMedium>
  Severity: Violation
  Value: <http://data.ashrae.org/standard223#Fluid-Refrigerant>
  Message: must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
  Severity: Violation
  Value: <http://data.ashrae.org/standard223/data/scb-vrf#00042>
  Message: s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00042> cannot be an instance of both <http://data.ashrae.org/standard223#OutletConnectionPoint> and <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>.
  SPARQL:
    Query:
      SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <
http://data.ashrae.org/standard223/data/scb-vrf#00042
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00042> cannot be an instance of both <http://data.ashrae.org/standard223#OutletConnectionPoint> and <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00042>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00042>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00042>)]
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00042> cannot be an instance of both <http://data.ashrae.org/standard223#BidirectionalConnectionPoint> and <http://data.ashrae.org/standard223#OutletConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00042>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00042>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00042>)]
http://data.ashrae.org/standard223/data/scb-vrf#00043
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00043> cannot be an instance of both <http://data.ashrae.org/standard223#OutletConnectionPoint> and <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00043>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00043>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00043>)]
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00043> cannot be an instance of both <http://data.ashrae.org/standard223#BidirectionalConnectionPoint> and <http://data.ashrae.org/standard223#OutletConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00043>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00043>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00043>)]
http://data.ashrae.org/standard223/data/scb-vrf#00047
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
http://data.ashrae.org/standard223/data/scb-vrf#00048
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
  - s223: <http://data.ashrae.org/standard223/data/scb-vrf#00048> cannot have both a `mapsTo` <http://data.ashrae.org/standard223/data/scb-vrf#00043> and a `connectsThrough` <http://data.ashrae.org/standard223/data/scb-vrf#00067>. [query: SELECT ?this ?uppercp ?connection WHERE { ?this <http://data.ashrae.org/standard223#mapsTo> ?uppercp .?this <http://data.ashrae.org/standard223#connectsThrough> ?connection .?connection <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> _:ea1a89fa13b0eb6d53ce419170d7aa91 . _:ea1a89fa13b0eb6d53ce419170d7aa91 (<http://www.w3.org/2000/01/rdf-schema#subClassOf>)* <http://data.ashrae.org/standard223#Connection> . } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00048>, $currentShape = _:a4de5aff68b8adf4251f712c8f03e769 | results: (connection = <http://data.ashrae.org/standard223/data/scb-vrf#00067>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00048>, uppercp = <http://data.ashrae.org/standard223/data/scb-vrf#00043>)]
http://data.ashrae.org/standard223/data/scb-vrf#00049
  - <http://data.ashrae.org/standard223/data/scb-vrf#00049> at least 1 value(s) matching `instance of <http://data.ashrae.org/standard223#EnumeratedActuatableProperty> and ∃[1..1] <http://data.ashrae.org/standard223#hasEnumerationKind> . any node and ∃[..0] <http://data.ashrae.org/standard223#hasEnumerationKind> . ∃[..0] rdf:type/rdfs:subClassOf* . test(<http://data.ashrae.org/standard223#Binary-OnOff>)` required along <http://data.ashrae.org/standard223#hasProperty>, found 0
http://data.ashrae.org/standard223/data/scb-vrf#00053
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00059
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
http://data.ashrae.org/standard223/data/scb-vrf#00060
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00060> cannot be an instance of both <http://data.ashrae.org/standard223#OutletConnectionPoint> and <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00060>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00060>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00060>)]
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00060> cannot be an instance of both <http://data.ashrae.org/standard223#BidirectionalConnectionPoint> and <http://data.ashrae.org/standard223#OutletConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00060>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00060>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00060>)]
http://data.ashrae.org/standard223/data/scb-vrf#00061
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
  - s223: <http://data.ashrae.org/standard223/data/scb-vrf#00061> cannot have both a `mapsTo` <http://data.ashrae.org/standard223/data/scb-vrf#00042> and a `connectsThrough` <http://data.ashrae.org/standard223/data/scb-vrf#00069>. [query: SELECT ?this ?uppercp ?connection WHERE { ?this <http://data.ashrae.org/standard223#mapsTo> ?uppercp .?this <http://data.ashrae.org/standard223#connectsThrough> ?connection .?connection <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> _:ea1a89fa13b0eb6d53ce419170d7aa91 . _:ea1a89fa13b0eb6d53ce419170d7aa91 (<http://www.w3.org/2000/01/rdf-schema#subClassOf>)* <http://data.ashrae.org/standard223#Connection> . } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00061>, $currentShape = _:a4de5aff68b8adf4251f712c8f03e769 | results: (connection = <http://data.ashrae.org/standard223/data/scb-vrf#00069>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00061>, uppercp = <http://data.ashrae.org/standard223/data/scb-vrf#00042>)]
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00061> cannot be an instance of both <http://data.ashrae.org/standard223#OutletConnectionPoint> and <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00061>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00061>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00061>)]
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00061> cannot be an instance of both <http://data.ashrae.org/standard223#BidirectionalConnectionPoint> and <http://data.ashrae.org/standard223#OutletConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00061>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00061>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00061>)]
http://data.ashrae.org/standard223/data/scb-vrf#00062
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
http://data.ashrae.org/standard223/data/scb-vrf#00064
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
http://data.ashrae.org/standard223/data/scb-vrf#00065
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
http://data.ashrae.org/standard223/data/scb-vrf#00067
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
http://data.ashrae.org/standard223/data/scb-vrf#00068
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
http://data.ashrae.org/standard223/data/scb-vrf#00069
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
http://data.ashrae.org/standard223/data/scb-vrf#00070
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
http://data.ashrae.org/standard223/data/scb-vrf#00071
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
http://data.ashrae.org/standard223/data/scb-vrf#00072
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00072> cannot be an instance of both <http://data.ashrae.org/standard223#OutletConnectionPoint> and <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00072>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00072>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00072>)]
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00072> cannot be an instance of both <http://data.ashrae.org/standard223#BidirectionalConnectionPoint> and <http://data.ashrae.org/standard223#OutletConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00072>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00072>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00072>)]
http://data.ashrae.org/standard223/data/scb-vrf#00073
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
http://data.ashrae.org/standard223/data/scb-vrf#00074
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00074> cannot be an instance of both <http://data.ashrae.org/standard223#OutletConnectionPoint> and <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00074>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00074>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00074>)]
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00074> cannot be an instance of both <http://data.ashrae.org/standard223#BidirectionalConnectionPoint> and <http://data.ashrae.org/standard223#OutletConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00074>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00074>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00074>)]
http://data.ashrae.org/standard223/data/scb-vrf#00075
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
http://data.ashrae.org/standard223/data/scb-vrf#00079
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00079> cannot be an instance of both <http://data.ashrae.org/standard223#OutletConnectionPoint> and <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00079>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00079>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00079>)]
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00079> cannot be an instance of both <http://data.ashrae.org/standard223#BidirectionalConnectionPoint> and <http://data.ashrae.org/standard223#OutletConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00079>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00079>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00079>)]
http://data.ashrae.org/standard223/data/scb-vrf#00080
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00080> cannot be an instance of both <http://data.ashrae.org/standard223#OutletConnectionPoint> and <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00080>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00080>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00080>)]
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00080> cannot be an instance of both <http://data.ashrae.org/standard223#BidirectionalConnectionPoint> and <http://data.ashrae.org/standard223#OutletConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00080>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00080>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00080>)]
http://data.ashrae.org/standard223/data/scb-vrf#00082
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00082> cannot be an instance of both <http://data.ashrae.org/standard223#OutletConnectionPoint> and <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00082>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00082>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00082>)]
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00082> cannot be an instance of both <http://data.ashrae.org/standard223#BidirectionalConnectionPoint> and <http://data.ashrae.org/standard223#OutletConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00082>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00082>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00082>)]
http://data.ashrae.org/standard223/data/scb-vrf#00083
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00083> cannot be an instance of both <http://data.ashrae.org/standard223#OutletConnectionPoint> and <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00083>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00083>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00083>)]
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00083> cannot be an instance of both <http://data.ashrae.org/standard223#BidirectionalConnectionPoint> and <http://data.ashrae.org/standard223#OutletConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00083>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00083>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00083>)]
http://data.ashrae.org/standard223/data/scb-vrf#00084
  - <http://data.ashrae.org/standard223/data/scb-vrf#00084> none of 3 alternative(s) satisfied
http://data.ashrae.org/standard223/data/scb-vrf#00087
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00087> cannot be an instance of both <http://data.ashrae.org/standard223#OutletConnectionPoint> and <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00087>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00087>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00087>)]
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00087> cannot be an instance of both <http://data.ashrae.org/standard223#BidirectionalConnectionPoint> and <http://data.ashrae.org/standard223#OutletConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00087>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00087>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00087>)]
http://data.ashrae.org/standard223/data/scb-vrf#00088
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00088> cannot be an instance of both <http://data.ashrae.org/standard223#OutletConnectionPoint> and <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00088>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00088>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00088>)]
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00088> cannot be an instance of both <http://data.ashrae.org/standard223#BidirectionalConnectionPoint> and <http://data.ashrae.org/standard223#OutletConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00088>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00088>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00088>)]
http://data.ashrae.org/standard223/data/scb-vrf#00089
  - <http://data.ashrae.org/standard223/data/scb-vrf#00089> at least 1 value(s) matching `instance of <http://data.ashrae.org/standard223#EnumeratedActuatableProperty> and ∃[1..1] <http://data.ashrae.org/standard223#hasEnumerationKind> . any node and ∃[..0] <http://data.ashrae.org/standard223#hasEnumerationKind> . ∃[..0] rdf:type/rdfs:subClassOf* . test(<http://data.ashrae.org/standard223#Binary-OnOff>)` required along <http://data.ashrae.org/standard223#hasProperty>, found 0
http://data.ashrae.org/standard223/data/scb-vrf#00095
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
http://data.ashrae.org/standard223/data/scb-vrf#00105
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00105> cannot be an instance of both <http://data.ashrae.org/standard223#OutletConnectionPoint> and <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00105>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00105>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00105>)]
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00105> cannot be an instance of both <http://data.ashrae.org/standard223#BidirectionalConnectionPoint> and <http://data.ashrae.org/standard223#OutletConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00105>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00105>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00105>)]
http://data.ashrae.org/standard223/data/scb-vrf#00106
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
http://data.ashrae.org/standard223/data/scb-vrf#00107
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00107> cannot be an instance of both <http://data.ashrae.org/standard223#OutletConnectionPoint> and <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00107>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00107>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00107>)]
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00107> cannot be an instance of both <http://data.ashrae.org/standard223#BidirectionalConnectionPoint> and <http://data.ashrae.org/standard223#OutletConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00107>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00107>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00107>)]
http://data.ashrae.org/standard223/data/scb-vrf#00108
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
http://data.ashrae.org/standard223/data/scb-vrf#00110
  - <http://data.ashrae.org/standard223#EnumerationKind-HVACOperatingMode> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00112
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00114
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00116
  - <http://data.ashrae.org/standard223#EnumerationKind-HVACOperatingMode> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00138
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00140
  - <http://data.ashrae.org/standard223#EnumerationKind-HVACOperatingMode> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00142
  - <http://data.ashrae.org/standard223#EnumerationKind-HVACOperatingMode> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00144
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00146
  - <http://data.ashrae.org/standard223#EnumerationKind-HVACOperatingMode> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00148
  - <http://data.ashrae.org/standard223#EnumerationKind-HVACOperatingMode> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00150
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00152
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00154
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00156
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00158
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00160
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00162
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00164
  - <http://data.ashrae.org/standard223#EnumerationKind-HVACOperatingMode> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00166
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00168
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00170
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00182
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00186
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00186> cannot be an instance of both <http://data.ashrae.org/standard223#OutletConnectionPoint> and <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00186>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00186>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00186>)]
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00186> cannot be an instance of both <http://data.ashrae.org/standard223#BidirectionalConnectionPoint> and <http://data.ashrae.org/standard223#OutletConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00186>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00186>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00186>)]
http://data.ashrae.org/standard223/data/scb-vrf#00187
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00187> cannot be an instance of both <http://data.ashrae.org/standard223#OutletConnectionPoint> and <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00187>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00187>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00187>)]
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00187> cannot be an instance of both <http://data.ashrae.org/standard223#BidirectionalConnectionPoint> and <http://data.ashrae.org/standard223#OutletConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00187>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00187>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00187>)]
http://data.ashrae.org/standard223/data/scb-vrf#00189
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00189> cannot be an instance of both <http://data.ashrae.org/standard223#OutletConnectionPoint> and <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00189>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00189>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00189>)]
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00189> cannot be an instance of both <http://data.ashrae.org/standard223#BidirectionalConnectionPoint> and <http://data.ashrae.org/standard223#OutletConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00189>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00189>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00189>)]
http://data.ashrae.org/standard223/data/scb-vrf#00190
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00190> cannot be an instance of both <http://data.ashrae.org/standard223#OutletConnectionPoint> and <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00190>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00190>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00190>)]
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00190> cannot be an instance of both <http://data.ashrae.org/standard223#BidirectionalConnectionPoint> and <http://data.ashrae.org/standard223#OutletConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00190>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00190>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00190>)]
http://data.ashrae.org/standard223/data/scb-vrf#00191
  - <http://data.ashrae.org/standard223/data/scb-vrf#00191> none of 3 alternative(s) satisfied
http://data.ashrae.org/standard223/data/scb-vrf#00194
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00194> cannot be an instance of both <http://data.ashrae.org/standard223#OutletConnectionPoint> and <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00194>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00194>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00194>)]
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00194> cannot be an instance of both <http://data.ashrae.org/standard223#BidirectionalConnectionPoint> and <http://data.ashrae.org/standard223#OutletConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00194>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00194>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00194>)]
http://data.ashrae.org/standard223/data/scb-vrf#00195
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00195> cannot be an instance of both <http://data.ashrae.org/standard223#OutletConnectionPoint> and <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00195>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00195>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00195>)]
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00195> cannot be an instance of both <http://data.ashrae.org/standard223#BidirectionalConnectionPoint> and <http://data.ashrae.org/standard223#OutletConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00195>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00195>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00195>)]
http://data.ashrae.org/standard223/data/scb-vrf#00196
  - <http://data.ashrae.org/standard223/data/scb-vrf#00196> at least 1 value(s) matching `instance of <http://data.ashrae.org/standard223#EnumeratedActuatableProperty> and ∃[1..1] <http://data.ashrae.org/standard223#hasEnumerationKind> . any node and ∃[..0] <http://data.ashrae.org/standard223#hasEnumerationKind> . ∃[..0] rdf:type/rdfs:subClassOf* . test(<http://data.ashrae.org/standard223#Binary-OnOff>)` required along <http://data.ashrae.org/standard223#hasProperty>, found 0
http://data.ashrae.org/standard223/data/scb-vrf#00202
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
http://data.ashrae.org/standard223/data/scb-vrf#00212
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00212> cannot be an instance of both <http://data.ashrae.org/standard223#OutletConnectionPoint> and <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00212>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00212>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00212>)]
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00212> cannot be an instance of both <http://data.ashrae.org/standard223#BidirectionalConnectionPoint> and <http://data.ashrae.org/standard223#OutletConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00212>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00212>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00212>)]
http://data.ashrae.org/standard223/data/scb-vrf#00213
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
http://data.ashrae.org/standard223/data/scb-vrf#00214
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00214> cannot be an instance of both <http://data.ashrae.org/standard223#OutletConnectionPoint> and <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00214>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00214>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00214>)]
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00214> cannot be an instance of both <http://data.ashrae.org/standard223#BidirectionalConnectionPoint> and <http://data.ashrae.org/standard223#OutletConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00214>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00214>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00214>)]
http://data.ashrae.org/standard223/data/scb-vrf#00215
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
http://data.ashrae.org/standard223/data/scb-vrf#00217
  - <http://data.ashrae.org/standard223#EnumerationKind-HVACOperatingMode> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00219
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00221
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00223
  - <http://data.ashrae.org/standard223#EnumerationKind-HVACOperatingMode> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00245
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00247
  - <http://data.ashrae.org/standard223#EnumerationKind-HVACOperatingMode> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00249
  - <http://data.ashrae.org/standard223#EnumerationKind-HVACOperatingMode> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00251
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00253
  - <http://data.ashrae.org/standard223#EnumerationKind-HVACOperatingMode> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00255
  - <http://data.ashrae.org/standard223#EnumerationKind-HVACOperatingMode> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00257
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00259
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00261
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00263
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00265
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00267
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00269
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00271
  - <http://data.ashrae.org/standard223#EnumerationKind-HVACOperatingMode> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00273
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00275
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00277
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00289
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00293
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00293> cannot be an instance of both <http://data.ashrae.org/standard223#OutletConnectionPoint> and <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00293>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00293>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00293>)]
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00293> cannot be an instance of both <http://data.ashrae.org/standard223#BidirectionalConnectionPoint> and <http://data.ashrae.org/standard223#OutletConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00293>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00293>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00293>)]
http://data.ashrae.org/standard223/data/scb-vrf#00294
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00294> cannot be an instance of both <http://data.ashrae.org/standard223#OutletConnectionPoint> and <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00294>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00294>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00294>)]
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00294> cannot be an instance of both <http://data.ashrae.org/standard223#BidirectionalConnectionPoint> and <http://data.ashrae.org/standard223#OutletConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00294>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00294>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00294>)]
http://data.ashrae.org/standard223/data/scb-vrf#00296
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00296> cannot be an instance of both <http://data.ashrae.org/standard223#OutletConnectionPoint> and <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00296>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00296>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00296>)]
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00296> cannot be an instance of both <http://data.ashrae.org/standard223#BidirectionalConnectionPoint> and <http://data.ashrae.org/standard223#OutletConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00296>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00296>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00296>)]
http://data.ashrae.org/standard223/data/scb-vrf#00297
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00297> cannot be an instance of both <http://data.ashrae.org/standard223#OutletConnectionPoint> and <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00297>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00297>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00297>)]
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00297> cannot be an instance of both <http://data.ashrae.org/standard223#BidirectionalConnectionPoint> and <http://data.ashrae.org/standard223#OutletConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00297>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00297>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00297>)]
http://data.ashrae.org/standard223/data/scb-vrf#00298
  - <http://data.ashrae.org/standard223/data/scb-vrf#00298> none of 3 alternative(s) satisfied
http://data.ashrae.org/standard223/data/scb-vrf#00301
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00301> cannot be an instance of both <http://data.ashrae.org/standard223#OutletConnectionPoint> and <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00301>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00301>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00301>)]
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00301> cannot be an instance of both <http://data.ashrae.org/standard223#BidirectionalConnectionPoint> and <http://data.ashrae.org/standard223#OutletConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00301>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00301>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00301>)]
http://data.ashrae.org/standard223/data/scb-vrf#00302
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00302> cannot be an instance of both <http://data.ashrae.org/standard223#OutletConnectionPoint> and <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00302>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00302>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00302>)]
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00302> cannot be an instance of both <http://data.ashrae.org/standard223#BidirectionalConnectionPoint> and <http://data.ashrae.org/standard223#OutletConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00302>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00302>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00302>)]
http://data.ashrae.org/standard223/data/scb-vrf#00303
  - <http://data.ashrae.org/standard223/data/scb-vrf#00303> at least 1 value(s) matching `instance of <http://data.ashrae.org/standard223#EnumeratedActuatableProperty> and ∃[1..1] <http://data.ashrae.org/standard223#hasEnumerationKind> . any node and ∃[..0] <http://data.ashrae.org/standard223#hasEnumerationKind> . ∃[..0] rdf:type/rdfs:subClassOf* . test(<http://data.ashrae.org/standard223#Binary-OnOff>)` required along <http://data.ashrae.org/standard223#hasProperty>, found 0
http://data.ashrae.org/standard223/data/scb-vrf#00309
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
http://data.ashrae.org/standard223/data/scb-vrf#00319
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00319> cannot be an instance of both <http://data.ashrae.org/standard223#OutletConnectionPoint> and <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00319>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00319>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00319>)]
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00319> cannot be an instance of both <http://data.ashrae.org/standard223#BidirectionalConnectionPoint> and <http://data.ashrae.org/standard223#OutletConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00319>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00319>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00319>)]
http://data.ashrae.org/standard223/data/scb-vrf#00320
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
http://data.ashrae.org/standard223/data/scb-vrf#00321
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00321> cannot be an instance of both <http://data.ashrae.org/standard223#OutletConnectionPoint> and <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00321>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00321>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00321>)]
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00321> cannot be an instance of both <http://data.ashrae.org/standard223#BidirectionalConnectionPoint> and <http://data.ashrae.org/standard223#OutletConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00321>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00321>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00321>)]
http://data.ashrae.org/standard223/data/scb-vrf#00322
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
http://data.ashrae.org/standard223/data/scb-vrf#00324
  - <http://data.ashrae.org/standard223#EnumerationKind-HVACOperatingMode> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00326
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00328
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00330
  - <http://data.ashrae.org/standard223#EnumerationKind-HVACOperatingMode> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00352
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00354
  - <http://data.ashrae.org/standard223#EnumerationKind-HVACOperatingMode> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00356
  - <http://data.ashrae.org/standard223#EnumerationKind-HVACOperatingMode> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00358
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00360
  - <http://data.ashrae.org/standard223#EnumerationKind-HVACOperatingMode> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00362
  - <http://data.ashrae.org/standard223#EnumerationKind-HVACOperatingMode> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00364
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00366
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00368
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00370
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00372
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00374
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00376
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00378
  - <http://data.ashrae.org/standard223#EnumerationKind-HVACOperatingMode> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00380
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00382
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00384
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00396
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00400
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00400> cannot be an instance of both <http://data.ashrae.org/standard223#OutletConnectionPoint> and <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00400>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00400>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00400>)]
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00400> cannot be an instance of both <http://data.ashrae.org/standard223#BidirectionalConnectionPoint> and <http://data.ashrae.org/standard223#OutletConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00400>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00400>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00400>)]
http://data.ashrae.org/standard223/data/scb-vrf#00401
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00401> cannot be an instance of both <http://data.ashrae.org/standard223#OutletConnectionPoint> and <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00401>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00401>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00401>)]
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00401> cannot be an instance of both <http://data.ashrae.org/standard223#BidirectionalConnectionPoint> and <http://data.ashrae.org/standard223#OutletConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00401>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00401>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00401>)]
http://data.ashrae.org/standard223/data/scb-vrf#00403
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00403> cannot be an instance of both <http://data.ashrae.org/standard223#OutletConnectionPoint> and <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00403>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00403>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00403>)]
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00403> cannot be an instance of both <http://data.ashrae.org/standard223#BidirectionalConnectionPoint> and <http://data.ashrae.org/standard223#OutletConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00403>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00403>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00403>)]
http://data.ashrae.org/standard223/data/scb-vrf#00404
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00404> cannot be an instance of both <http://data.ashrae.org/standard223#OutletConnectionPoint> and <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00404>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00404>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00404>)]
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00404> cannot be an instance of both <http://data.ashrae.org/standard223#BidirectionalConnectionPoint> and <http://data.ashrae.org/standard223#OutletConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00404>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00404>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00404>)]
http://data.ashrae.org/standard223/data/scb-vrf#00405
  - <http://data.ashrae.org/standard223/data/scb-vrf#00405> none of 3 alternative(s) satisfied
http://data.ashrae.org/standard223/data/scb-vrf#00408
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00408> cannot be an instance of both <http://data.ashrae.org/standard223#OutletConnectionPoint> and <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00408>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00408>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00408>)]
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00408> cannot be an instance of both <http://data.ashrae.org/standard223#BidirectionalConnectionPoint> and <http://data.ashrae.org/standard223#OutletConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00408>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00408>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00408>)]
http://data.ashrae.org/standard223/data/scb-vrf#00409
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00409> cannot be an instance of both <http://data.ashrae.org/standard223#OutletConnectionPoint> and <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00409>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00409>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00409>)]
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00409> cannot be an instance of both <http://data.ashrae.org/standard223#BidirectionalConnectionPoint> and <http://data.ashrae.org/standard223#OutletConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00409>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00409>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00409>)]
http://data.ashrae.org/standard223/data/scb-vrf#00410
  - <http://data.ashrae.org/standard223/data/scb-vrf#00410> at least 1 value(s) matching `instance of <http://data.ashrae.org/standard223#EnumeratedActuatableProperty> and ∃[1..1] <http://data.ashrae.org/standard223#hasEnumerationKind> . any node and ∃[..0] <http://data.ashrae.org/standard223#hasEnumerationKind> . ∃[..0] rdf:type/rdfs:subClassOf* . test(<http://data.ashrae.org/standard223#Binary-OnOff>)` required along <http://data.ashrae.org/standard223#hasProperty>, found 0
http://data.ashrae.org/standard223/data/scb-vrf#00416
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
http://data.ashrae.org/standard223/data/scb-vrf#00426
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00426> cannot be an instance of both <http://data.ashrae.org/standard223#OutletConnectionPoint> and <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00426>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00426>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00426>)]
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00426> cannot be an instance of both <http://data.ashrae.org/standard223#BidirectionalConnectionPoint> and <http://data.ashrae.org/standard223#OutletConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00426>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00426>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00426>)]
http://data.ashrae.org/standard223/data/scb-vrf#00427
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
http://data.ashrae.org/standard223/data/scb-vrf#00428
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00428> cannot be an instance of both <http://data.ashrae.org/standard223#OutletConnectionPoint> and <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00428>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00428>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00428>)]
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00428> cannot be an instance of both <http://data.ashrae.org/standard223#BidirectionalConnectionPoint> and <http://data.ashrae.org/standard223#OutletConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00428>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00428>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00428>)]
http://data.ashrae.org/standard223/data/scb-vrf#00429
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
http://data.ashrae.org/standard223/data/scb-vrf#00431
  - <http://data.ashrae.org/standard223#EnumerationKind-HVACOperatingMode> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00433
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00435
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00437
  - <http://data.ashrae.org/standard223#EnumerationKind-HVACOperatingMode> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00459
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00461
  - <http://data.ashrae.org/standard223#EnumerationKind-HVACOperatingMode> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00463
  - <http://data.ashrae.org/standard223#EnumerationKind-HVACOperatingMode> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00465
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00467
  - <http://data.ashrae.org/standard223#EnumerationKind-HVACOperatingMode> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00469
  - <http://data.ashrae.org/standard223#EnumerationKind-HVACOperatingMode> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00471
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00473
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00475
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00477
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00479
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00481
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00483
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00485
  - <http://data.ashrae.org/standard223#EnumerationKind-HVACOperatingMode> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00487
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00489
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00491
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00503
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00507
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00507> cannot be an instance of both <http://data.ashrae.org/standard223#OutletConnectionPoint> and <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00507>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00507>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00507>)]
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00507> cannot be an instance of both <http://data.ashrae.org/standard223#BidirectionalConnectionPoint> and <http://data.ashrae.org/standard223#OutletConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00507>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00507>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00507>)]
http://data.ashrae.org/standard223/data/scb-vrf#00508
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00508> cannot be an instance of both <http://data.ashrae.org/standard223#OutletConnectionPoint> and <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00508>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00508>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00508>)]
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00508> cannot be an instance of both <http://data.ashrae.org/standard223#BidirectionalConnectionPoint> and <http://data.ashrae.org/standard223#OutletConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00508>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00508>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00508>)]
http://data.ashrae.org/standard223/data/scb-vrf#00510
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00510> cannot be an instance of both <http://data.ashrae.org/standard223#OutletConnectionPoint> and <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00510>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00510>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00510>)]
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00510> cannot be an instance of both <http://data.ashrae.org/standard223#BidirectionalConnectionPoint> and <http://data.ashrae.org/standard223#OutletConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00510>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00510>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00510>)]
http://data.ashrae.org/standard223/data/scb-vrf#00511
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00511> cannot be an instance of both <http://data.ashrae.org/standard223#OutletConnectionPoint> and <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00511>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00511>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00511>)]
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00511> cannot be an instance of both <http://data.ashrae.org/standard223#BidirectionalConnectionPoint> and <http://data.ashrae.org/standard223#OutletConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00511>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00511>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00511>)]
http://data.ashrae.org/standard223/data/scb-vrf#00512
  - <http://data.ashrae.org/standard223/data/scb-vrf#00512> none of 3 alternative(s) satisfied
http://data.ashrae.org/standard223/data/scb-vrf#00515
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00515> cannot be an instance of both <http://data.ashrae.org/standard223#OutletConnectionPoint> and <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00515>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00515>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00515>)]
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00515> cannot be an instance of both <http://data.ashrae.org/standard223#BidirectionalConnectionPoint> and <http://data.ashrae.org/standard223#OutletConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00515>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00515>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00515>)]
http://data.ashrae.org/standard223/data/scb-vrf#00516
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00516> cannot be an instance of both <http://data.ashrae.org/standard223#OutletConnectionPoint> and <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00516>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00516>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00516>)]
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00516> cannot be an instance of both <http://data.ashrae.org/standard223#BidirectionalConnectionPoint> and <http://data.ashrae.org/standard223#OutletConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00516>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00516>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00516>)]
http://data.ashrae.org/standard223/data/scb-vrf#00517
  - <http://data.ashrae.org/standard223/data/scb-vrf#00517> at least 1 value(s) matching `instance of <http://data.ashrae.org/standard223#EnumeratedActuatableProperty> and ∃[1..1] <http://data.ashrae.org/standard223#hasEnumerationKind> . any node and ∃[..0] <http://data.ashrae.org/standard223#hasEnumerationKind> . ∃[..0] rdf:type/rdfs:subClassOf* . test(<http://data.ashrae.org/standard223#Binary-OnOff>)` required along <http://data.ashrae.org/standard223#hasProperty>, found 0
http://data.ashrae.org/standard223/data/scb-vrf#00523
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
http://data.ashrae.org/standard223/data/scb-vrf#00533
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00533> cannot be an instance of both <http://data.ashrae.org/standard223#OutletConnectionPoint> and <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00533>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00533>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00533>)]
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00533> cannot be an instance of both <http://data.ashrae.org/standard223#BidirectionalConnectionPoint> and <http://data.ashrae.org/standard223#OutletConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00533>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00533>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00533>)]
http://data.ashrae.org/standard223/data/scb-vrf#00534
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
http://data.ashrae.org/standard223/data/scb-vrf#00535
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00535> cannot be an instance of both <http://data.ashrae.org/standard223#OutletConnectionPoint> and <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00535>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00535>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00535>)]
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00535> cannot be an instance of both <http://data.ashrae.org/standard223#BidirectionalConnectionPoint> and <http://data.ashrae.org/standard223#OutletConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00535>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00535>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00535>)]
http://data.ashrae.org/standard223/data/scb-vrf#00536
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
http://data.ashrae.org/standard223/data/scb-vrf#00538
  - <http://data.ashrae.org/standard223#EnumerationKind-HVACOperatingMode> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00540
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00542
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00544
  - <http://data.ashrae.org/standard223#EnumerationKind-HVACOperatingMode> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00566
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00568
  - <http://data.ashrae.org/standard223#EnumerationKind-HVACOperatingMode> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00570
  - <http://data.ashrae.org/standard223#EnumerationKind-HVACOperatingMode> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00572
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00574
  - <http://data.ashrae.org/standard223#EnumerationKind-HVACOperatingMode> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00576
  - <http://data.ashrae.org/standard223#EnumerationKind-HVACOperatingMode> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00578
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00580
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00582
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00584
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00586
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00588
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00590
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00592
  - <http://data.ashrae.org/standard223#EnumerationKind-HVACOperatingMode> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00594
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00596
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00598
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00610
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00614
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00614> cannot be an instance of both <http://data.ashrae.org/standard223#OutletConnectionPoint> and <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00614>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00614>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00614>)]
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00614> cannot be an instance of both <http://data.ashrae.org/standard223#BidirectionalConnectionPoint> and <http://data.ashrae.org/standard223#OutletConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00614>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00614>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00614>)]
http://data.ashrae.org/standard223/data/scb-vrf#00615
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00615> cannot be an instance of both <http://data.ashrae.org/standard223#OutletConnectionPoint> and <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00615>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00615>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00615>)]
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00615> cannot be an instance of both <http://data.ashrae.org/standard223#BidirectionalConnectionPoint> and <http://data.ashrae.org/standard223#OutletConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00615>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00615>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00615>)]
http://data.ashrae.org/standard223/data/scb-vrf#00617
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00617> cannot be an instance of both <http://data.ashrae.org/standard223#OutletConnectionPoint> and <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00617>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00617>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00617>)]
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00617> cannot be an instance of both <http://data.ashrae.org/standard223#BidirectionalConnectionPoint> and <http://data.ashrae.org/standard223#OutletConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00617>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00617>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00617>)]
http://data.ashrae.org/standard223/data/scb-vrf#00618
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00618> cannot be an instance of both <http://data.ashrae.org/standard223#OutletConnectionPoint> and <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00618>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00618>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00618>)]
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00618> cannot be an instance of both <http://data.ashrae.org/standard223#BidirectionalConnectionPoint> and <http://data.ashrae.org/standard223#OutletConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00618>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00618>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00618>)]
http://data.ashrae.org/standard223/data/scb-vrf#00619
  - <http://data.ashrae.org/standard223/data/scb-vrf#00619> none of 3 alternative(s) satisfied
http://data.ashrae.org/standard223/data/scb-vrf#00622
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00622> cannot be an instance of both <http://data.ashrae.org/standard223#OutletConnectionPoint> and <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00622>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00622>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00622>)]
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00622> cannot be an instance of both <http://data.ashrae.org/standard223#BidirectionalConnectionPoint> and <http://data.ashrae.org/standard223#OutletConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00622>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00622>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00622>)]
http://data.ashrae.org/standard223/data/scb-vrf#00623
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00623> cannot be an instance of both <http://data.ashrae.org/standard223#OutletConnectionPoint> and <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00623>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00623>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00623>)]
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00623> cannot be an instance of both <http://data.ashrae.org/standard223#BidirectionalConnectionPoint> and <http://data.ashrae.org/standard223#OutletConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00623>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00623>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00623>)]
http://data.ashrae.org/standard223/data/scb-vrf#00624
  - <http://data.ashrae.org/standard223/data/scb-vrf#00624> at least 1 value(s) matching `instance of <http://data.ashrae.org/standard223#EnumeratedActuatableProperty> and ∃[1..1] <http://data.ashrae.org/standard223#hasEnumerationKind> . any node and ∃[..0] <http://data.ashrae.org/standard223#hasEnumerationKind> . ∃[..0] rdf:type/rdfs:subClassOf* . test(<http://data.ashrae.org/standard223#Binary-OnOff>)` required along <http://data.ashrae.org/standard223#hasProperty>, found 0
http://data.ashrae.org/standard223/data/scb-vrf#00630
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
http://data.ashrae.org/standard223/data/scb-vrf#00640
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00640> cannot be an instance of both <http://data.ashrae.org/standard223#OutletConnectionPoint> and <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00640>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00640>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00640>)]
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00640> cannot be an instance of both <http://data.ashrae.org/standard223#BidirectionalConnectionPoint> and <http://data.ashrae.org/standard223#OutletConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00640>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00640>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00640>)]
http://data.ashrae.org/standard223/data/scb-vrf#00641
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
http://data.ashrae.org/standard223/data/scb-vrf#00642
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00642> cannot be an instance of both <http://data.ashrae.org/standard223#OutletConnectionPoint> and <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00642>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00642>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00642>)]
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00642> cannot be an instance of both <http://data.ashrae.org/standard223#BidirectionalConnectionPoint> and <http://data.ashrae.org/standard223#OutletConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00642>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00642>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00642>)]
http://data.ashrae.org/standard223/data/scb-vrf#00643
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
http://data.ashrae.org/standard223/data/scb-vrf#00645
  - <http://data.ashrae.org/standard223#EnumerationKind-HVACOperatingMode> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00647
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00649
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00651
  - <http://data.ashrae.org/standard223#EnumerationKind-HVACOperatingMode> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00673
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00675
  - <http://data.ashrae.org/standard223#EnumerationKind-HVACOperatingMode> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00677
  - <http://data.ashrae.org/standard223#EnumerationKind-HVACOperatingMode> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00679
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00681
  - <http://data.ashrae.org/standard223#EnumerationKind-HVACOperatingMode> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00683
  - <http://data.ashrae.org/standard223#EnumerationKind-HVACOperatingMode> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00685
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00687
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00689
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00691
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00693
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00695
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00697
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00699
  - <http://data.ashrae.org/standard223#EnumerationKind-HVACOperatingMode> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00701
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00703
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00705
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00717
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00721
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00721> cannot be an instance of both <http://data.ashrae.org/standard223#OutletConnectionPoint> and <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00721>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00721>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00721>)]
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00721> cannot be an instance of both <http://data.ashrae.org/standard223#BidirectionalConnectionPoint> and <http://data.ashrae.org/standard223#OutletConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00721>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00721>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00721>)]
http://data.ashrae.org/standard223/data/scb-vrf#00722
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00722> cannot be an instance of both <http://data.ashrae.org/standard223#OutletConnectionPoint> and <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00722>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00722>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00722>)]
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00722> cannot be an instance of both <http://data.ashrae.org/standard223#BidirectionalConnectionPoint> and <http://data.ashrae.org/standard223#OutletConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00722>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00722>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00722>)]
http://data.ashrae.org/standard223/data/scb-vrf#00724
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00724> cannot be an instance of both <http://data.ashrae.org/standard223#OutletConnectionPoint> and <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00724>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00724>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00724>)]
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00724> cannot be an instance of both <http://data.ashrae.org/standard223#BidirectionalConnectionPoint> and <http://data.ashrae.org/standard223#OutletConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00724>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00724>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00724>)]
http://data.ashrae.org/standard223/data/scb-vrf#00725
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00725> cannot be an instance of both <http://data.ashrae.org/standard223#OutletConnectionPoint> and <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00725>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00725>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00725>)]
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00725> cannot be an instance of both <http://data.ashrae.org/standard223#BidirectionalConnectionPoint> and <http://data.ashrae.org/standard223#OutletConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00725>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00725>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00725>)]
http://data.ashrae.org/standard223/data/scb-vrf#00726
  - <http://data.ashrae.org/standard223/data/scb-vrf#00726> none of 3 alternative(s) satisfied
http://data.ashrae.org/standard223/data/scb-vrf#00729
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00729> cannot be an instance of both <http://data.ashrae.org/standard223#OutletConnectionPoint> and <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00729>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00729>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00729>)]
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00729> cannot be an instance of both <http://data.ashrae.org/standard223#BidirectionalConnectionPoint> and <http://data.ashrae.org/standard223#OutletConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00729>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00729>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00729>)]
http://data.ashrae.org/standard223/data/scb-vrf#00730
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00730> cannot be an instance of both <http://data.ashrae.org/standard223#OutletConnectionPoint> and <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00730>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00730>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00730>)]
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00730> cannot be an instance of both <http://data.ashrae.org/standard223#BidirectionalConnectionPoint> and <http://data.ashrae.org/standard223#OutletConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00730>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00730>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00730>)]
http://data.ashrae.org/standard223/data/scb-vrf#00731
  - <http://data.ashrae.org/standard223/data/scb-vrf#00731> at least 1 value(s) matching `instance of <http://data.ashrae.org/standard223#EnumeratedActuatableProperty> and ∃[1..1] <http://data.ashrae.org/standard223#hasEnumerationKind> . any node and ∃[..0] <http://data.ashrae.org/standard223#hasEnumerationKind> . ∃[..0] rdf:type/rdfs:subClassOf* . test(<http://data.ashrae.org/standard223#Binary-OnOff>)` required along <http://data.ashrae.org/standard223#hasProperty>, found 0
http://data.ashrae.org/standard223/data/scb-vrf#00737
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
http://data.ashrae.org/standard223/data/scb-vrf#00747
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00747> cannot be an instance of both <http://data.ashrae.org/standard223#OutletConnectionPoint> and <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00747>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00747>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00747>)]
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00747> cannot be an instance of both <http://data.ashrae.org/standard223#BidirectionalConnectionPoint> and <http://data.ashrae.org/standard223#OutletConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00747>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00747>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00747>)]
http://data.ashrae.org/standard223/data/scb-vrf#00748
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
http://data.ashrae.org/standard223/data/scb-vrf#00749
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00749> cannot be an instance of both <http://data.ashrae.org/standard223#OutletConnectionPoint> and <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00749>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00749>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00749>)]
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00749> cannot be an instance of both <http://data.ashrae.org/standard223#BidirectionalConnectionPoint> and <http://data.ashrae.org/standard223#OutletConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00749>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00749>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00749>)]
http://data.ashrae.org/standard223/data/scb-vrf#00750
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
http://data.ashrae.org/standard223/data/scb-vrf#00752
  - <http://data.ashrae.org/standard223#EnumerationKind-HVACOperatingMode> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00754
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00756
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00758
  - <http://data.ashrae.org/standard223#EnumerationKind-HVACOperatingMode> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00780
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00782
  - <http://data.ashrae.org/standard223#EnumerationKind-HVACOperatingMode> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00784
  - <http://data.ashrae.org/standard223#EnumerationKind-HVACOperatingMode> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00786
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00788
  - <http://data.ashrae.org/standard223#EnumerationKind-HVACOperatingMode> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00790
  - <http://data.ashrae.org/standard223#EnumerationKind-HVACOperatingMode> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00792
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00794
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00796
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00798
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00800
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00802
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00804
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00806
  - <http://data.ashrae.org/standard223#EnumerationKind-HVACOperatingMode> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00808
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00810
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00812
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00824
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00828
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00828> cannot be an instance of both <http://data.ashrae.org/standard223#OutletConnectionPoint> and <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00828>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00828>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00828>)]
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00828> cannot be an instance of both <http://data.ashrae.org/standard223#BidirectionalConnectionPoint> and <http://data.ashrae.org/standard223#OutletConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00828>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00828>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00828>)]
http://data.ashrae.org/standard223/data/scb-vrf#00829
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00829> cannot be an instance of both <http://data.ashrae.org/standard223#OutletConnectionPoint> and <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00829>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00829>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00829>)]
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00829> cannot be an instance of both <http://data.ashrae.org/standard223#BidirectionalConnectionPoint> and <http://data.ashrae.org/standard223#OutletConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00829>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00829>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00829>)]
http://data.ashrae.org/standard223/data/scb-vrf#00831
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00831> cannot be an instance of both <http://data.ashrae.org/standard223#OutletConnectionPoint> and <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00831>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00831>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00831>)]
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00831> cannot be an instance of both <http://data.ashrae.org/standard223#BidirectionalConnectionPoint> and <http://data.ashrae.org/standard223#OutletConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00831>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00831>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00831>)]
http://data.ashrae.org/standard223/data/scb-vrf#00832
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00832> cannot be an instance of both <http://data.ashrae.org/standard223#OutletConnectionPoint> and <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00832>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00832>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00832>)]
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00832> cannot be an instance of both <http://data.ashrae.org/standard223#BidirectionalConnectionPoint> and <http://data.ashrae.org/standard223#OutletConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00832>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00832>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00832>)]
http://data.ashrae.org/standard223/data/scb-vrf#00833
  - <http://data.ashrae.org/standard223/data/scb-vrf#00833> none of 3 alternative(s) satisfied
http://data.ashrae.org/standard223/data/scb-vrf#00836
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00836> cannot be an instance of both <http://data.ashrae.org/standard223#OutletConnectionPoint> and <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00836>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00836>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00836>)]
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00836> cannot be an instance of both <http://data.ashrae.org/standard223#BidirectionalConnectionPoint> and <http://data.ashrae.org/standard223#OutletConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00836>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00836>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00836>)]
http://data.ashrae.org/standard223/data/scb-vrf#00837
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00837> cannot be an instance of both <http://data.ashrae.org/standard223#OutletConnectionPoint> and <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00837>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00837>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00837>)]
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00837> cannot be an instance of both <http://data.ashrae.org/standard223#BidirectionalConnectionPoint> and <http://data.ashrae.org/standard223#OutletConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00837>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00837>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00837>)]
http://data.ashrae.org/standard223/data/scb-vrf#00838
  - <http://data.ashrae.org/standard223/data/scb-vrf#00838> at least 1 value(s) matching `instance of <http://data.ashrae.org/standard223#EnumeratedActuatableProperty> and ∃[1..1] <http://data.ashrae.org/standard223#hasEnumerationKind> . any node and ∃[..0] <http://data.ashrae.org/standard223#hasEnumerationKind> . ∃[..0] rdf:type/rdfs:subClassOf* . test(<http://data.ashrae.org/standard223#Binary-OnOff>)` required along <http://data.ashrae.org/standard223#hasProperty>, found 0
http://data.ashrae.org/standard223/data/scb-vrf#00844
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
http://data.ashrae.org/standard223/data/scb-vrf#00854
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00854> cannot be an instance of both <http://data.ashrae.org/standard223#OutletConnectionPoint> and <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00854>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00854>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00854>)]
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00854> cannot be an instance of both <http://data.ashrae.org/standard223#BidirectionalConnectionPoint> and <http://data.ashrae.org/standard223#OutletConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00854>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00854>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00854>)]
http://data.ashrae.org/standard223/data/scb-vrf#00855
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
http://data.ashrae.org/standard223/data/scb-vrf#00856
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00856> cannot be an instance of both <http://data.ashrae.org/standard223#OutletConnectionPoint> and <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00856>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00856>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00856>)]
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00856> cannot be an instance of both <http://data.ashrae.org/standard223#BidirectionalConnectionPoint> and <http://data.ashrae.org/standard223#OutletConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00856>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00856>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00856>)]
http://data.ashrae.org/standard223/data/scb-vrf#00857
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
http://data.ashrae.org/standard223/data/scb-vrf#00859
  - <http://data.ashrae.org/standard223#EnumerationKind-HVACOperatingMode> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00861
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00863
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00865
  - <http://data.ashrae.org/standard223#EnumerationKind-HVACOperatingMode> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00887
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00889
  - <http://data.ashrae.org/standard223#EnumerationKind-HVACOperatingMode> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00891
  - <http://data.ashrae.org/standard223#EnumerationKind-HVACOperatingMode> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00893
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00895
  - <http://data.ashrae.org/standard223#EnumerationKind-HVACOperatingMode> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00897
  - <http://data.ashrae.org/standard223#EnumerationKind-HVACOperatingMode> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00899
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00901
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00903
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00905
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00907
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00909
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00911
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00913
  - <http://data.ashrae.org/standard223#EnumerationKind-HVACOperatingMode> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00915
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00917
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00919
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00931
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00935
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00935> cannot be an instance of both <http://data.ashrae.org/standard223#OutletConnectionPoint> and <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00935>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00935>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00935>)]
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00935> cannot be an instance of both <http://data.ashrae.org/standard223#BidirectionalConnectionPoint> and <http://data.ashrae.org/standard223#OutletConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00935>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00935>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00935>)]
http://data.ashrae.org/standard223/data/scb-vrf#00936
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00936> cannot be an instance of both <http://data.ashrae.org/standard223#OutletConnectionPoint> and <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00936>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00936>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00936>)]
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00936> cannot be an instance of both <http://data.ashrae.org/standard223#BidirectionalConnectionPoint> and <http://data.ashrae.org/standard223#OutletConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00936>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00936>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00936>)]
http://data.ashrae.org/standard223/data/scb-vrf#00938
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00938> cannot be an instance of both <http://data.ashrae.org/standard223#OutletConnectionPoint> and <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00938>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00938>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00938>)]
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00938> cannot be an instance of both <http://data.ashrae.org/standard223#BidirectionalConnectionPoint> and <http://data.ashrae.org/standard223#OutletConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00938>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00938>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00938>)]
http://data.ashrae.org/standard223/data/scb-vrf#00939
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00939> cannot be an instance of both <http://data.ashrae.org/standard223#OutletConnectionPoint> and <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00939>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00939>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00939>)]
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00939> cannot be an instance of both <http://data.ashrae.org/standard223#BidirectionalConnectionPoint> and <http://data.ashrae.org/standard223#OutletConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00939>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00939>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00939>)]
http://data.ashrae.org/standard223/data/scb-vrf#00940
  - <http://data.ashrae.org/standard223/data/scb-vrf#00940> none of 3 alternative(s) satisfied
http://data.ashrae.org/standard223/data/scb-vrf#00943
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00943> cannot be an instance of both <http://data.ashrae.org/standard223#OutletConnectionPoint> and <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00943>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00943>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00943>)]
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00943> cannot be an instance of both <http://data.ashrae.org/standard223#BidirectionalConnectionPoint> and <http://data.ashrae.org/standard223#OutletConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00943>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00943>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00943>)]
http://data.ashrae.org/standard223/data/scb-vrf#00944
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00944> cannot be an instance of both <http://data.ashrae.org/standard223#OutletConnectionPoint> and <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00944>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00944>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00944>)]
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00944> cannot be an instance of both <http://data.ashrae.org/standard223#BidirectionalConnectionPoint> and <http://data.ashrae.org/standard223#OutletConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00944>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00944>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00944>)]
http://data.ashrae.org/standard223/data/scb-vrf#00945
  - <http://data.ashrae.org/standard223/data/scb-vrf#00945> at least 1 value(s) matching `instance of <http://data.ashrae.org/standard223#EnumeratedActuatableProperty> and ∃[1..1] <http://data.ashrae.org/standard223#hasEnumerationKind> . any node and ∃[..0] <http://data.ashrae.org/standard223#hasEnumerationKind> . ∃[..0] rdf:type/rdfs:subClassOf* . test(<http://data.ashrae.org/standard223#Binary-OnOff>)` required along <http://data.ashrae.org/standard223#hasProperty>, found 0
http://data.ashrae.org/standard223/data/scb-vrf#00951
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
http://data.ashrae.org/standard223/data/scb-vrf#00961
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00961> cannot be an instance of both <http://data.ashrae.org/standard223#OutletConnectionPoint> and <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00961>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00961>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00961>)]
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00961> cannot be an instance of both <http://data.ashrae.org/standard223#BidirectionalConnectionPoint> and <http://data.ashrae.org/standard223#OutletConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00961>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00961>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00961>)]
http://data.ashrae.org/standard223/data/scb-vrf#00962
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
http://data.ashrae.org/standard223/data/scb-vrf#00963
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00963> cannot be an instance of both <http://data.ashrae.org/standard223#OutletConnectionPoint> and <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00963>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00963>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00963>)]
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#00963> cannot be an instance of both <http://data.ashrae.org/standard223#BidirectionalConnectionPoint> and <http://data.ashrae.org/standard223#OutletConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#00963>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00963>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#00963>)]
http://data.ashrae.org/standard223/data/scb-vrf#00964
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
http://data.ashrae.org/standard223/data/scb-vrf#00966
  - <http://data.ashrae.org/standard223#EnumerationKind-HVACOperatingMode> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00968
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00970
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00972
  - <http://data.ashrae.org/standard223#EnumerationKind-HVACOperatingMode> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00994
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00996
  - <http://data.ashrae.org/standard223#EnumerationKind-HVACOperatingMode> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#00998
  - <http://data.ashrae.org/standard223#EnumerationKind-HVACOperatingMode> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#01000
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#01002
  - <http://data.ashrae.org/standard223#EnumerationKind-HVACOperatingMode> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#01004
  - <http://data.ashrae.org/standard223#EnumerationKind-HVACOperatingMode> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#01006
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#01008
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#01010
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#01012
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#01014
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#01016
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#01018
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#01020
  - <http://data.ashrae.org/standard223#EnumerationKind-HVACOperatingMode> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#01022
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#01024
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#01026
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#01038
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#01042
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#01042> cannot be an instance of both <http://data.ashrae.org/standard223#OutletConnectionPoint> and <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#01042>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01042>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01042>)]
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#01042> cannot be an instance of both <http://data.ashrae.org/standard223#BidirectionalConnectionPoint> and <http://data.ashrae.org/standard223#OutletConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#01042>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01042>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01042>)]
http://data.ashrae.org/standard223/data/scb-vrf#01043
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#01043> cannot be an instance of both <http://data.ashrae.org/standard223#OutletConnectionPoint> and <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#01043>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01043>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01043>)]
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#01043> cannot be an instance of both <http://data.ashrae.org/standard223#BidirectionalConnectionPoint> and <http://data.ashrae.org/standard223#OutletConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#01043>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01043>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01043>)]
http://data.ashrae.org/standard223/data/scb-vrf#01045
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#01045> cannot be an instance of both <http://data.ashrae.org/standard223#OutletConnectionPoint> and <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#01045>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01045>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01045>)]
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#01045> cannot be an instance of both <http://data.ashrae.org/standard223#BidirectionalConnectionPoint> and <http://data.ashrae.org/standard223#OutletConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#01045>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01045>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01045>)]
http://data.ashrae.org/standard223/data/scb-vrf#01046
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#01046> cannot be an instance of both <http://data.ashrae.org/standard223#OutletConnectionPoint> and <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#01046>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01046>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01046>)]
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#01046> cannot be an instance of both <http://data.ashrae.org/standard223#BidirectionalConnectionPoint> and <http://data.ashrae.org/standard223#OutletConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#01046>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01046>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01046>)]
http://data.ashrae.org/standard223/data/scb-vrf#01047
  - <http://data.ashrae.org/standard223/data/scb-vrf#01047> none of 3 alternative(s) satisfied
http://data.ashrae.org/standard223/data/scb-vrf#01050
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#01050> cannot be an instance of both <http://data.ashrae.org/standard223#OutletConnectionPoint> and <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#01050>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01050>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01050>)]
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#01050> cannot be an instance of both <http://data.ashrae.org/standard223#BidirectionalConnectionPoint> and <http://data.ashrae.org/standard223#OutletConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#01050>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01050>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01050>)]
http://data.ashrae.org/standard223/data/scb-vrf#01051
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#01051> cannot be an instance of both <http://data.ashrae.org/standard223#OutletConnectionPoint> and <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#01051>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01051>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01051>)]
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#01051> cannot be an instance of both <http://data.ashrae.org/standard223#BidirectionalConnectionPoint> and <http://data.ashrae.org/standard223#OutletConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#01051>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01051>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01051>)]
http://data.ashrae.org/standard223/data/scb-vrf#01052
  - <http://data.ashrae.org/standard223/data/scb-vrf#01052> at least 1 value(s) matching `instance of <http://data.ashrae.org/standard223#EnumeratedActuatableProperty> and ∃[1..1] <http://data.ashrae.org/standard223#hasEnumerationKind> . any node and ∃[..0] <http://data.ashrae.org/standard223#hasEnumerationKind> . ∃[..0] rdf:type/rdfs:subClassOf* . test(<http://data.ashrae.org/standard223#Binary-OnOff>)` required along <http://data.ashrae.org/standard223#hasProperty>, found 0
http://data.ashrae.org/standard223/data/scb-vrf#01058
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
http://data.ashrae.org/standard223/data/scb-vrf#01068
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#01068> cannot be an instance of both <http://data.ashrae.org/standard223#OutletConnectionPoint> and <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#01068>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01068>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01068>)]
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#01068> cannot be an instance of both <http://data.ashrae.org/standard223#BidirectionalConnectionPoint> and <http://data.ashrae.org/standard223#OutletConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#01068>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01068>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01068>)]
http://data.ashrae.org/standard223/data/scb-vrf#01069
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
http://data.ashrae.org/standard223/data/scb-vrf#01070
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#01070> cannot be an instance of both <http://data.ashrae.org/standard223#OutletConnectionPoint> and <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#01070>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01070>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01070>)]
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#01070> cannot be an instance of both <http://data.ashrae.org/standard223#BidirectionalConnectionPoint> and <http://data.ashrae.org/standard223#OutletConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#01070>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01070>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01070>)]
http://data.ashrae.org/standard223/data/scb-vrf#01071
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
http://data.ashrae.org/standard223/data/scb-vrf#01073
  - <http://data.ashrae.org/standard223#EnumerationKind-HVACOperatingMode> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#01075
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#01077
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#01079
  - <http://data.ashrae.org/standard223#EnumerationKind-HVACOperatingMode> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#01101
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#01103
  - <http://data.ashrae.org/standard223#EnumerationKind-HVACOperatingMode> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#01105
  - <http://data.ashrae.org/standard223#EnumerationKind-HVACOperatingMode> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#01107
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#01109
  - <http://data.ashrae.org/standard223#EnumerationKind-HVACOperatingMode> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#01111
  - <http://data.ashrae.org/standard223#EnumerationKind-HVACOperatingMode> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#01113
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#01115
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#01117
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#01119
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#01121
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#01123
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#01125
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#01127
  - <http://data.ashrae.org/standard223#EnumerationKind-HVACOperatingMode> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#01129
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#01131
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#01133
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#01145
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#01149
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#01149> cannot be an instance of both <http://data.ashrae.org/standard223#OutletConnectionPoint> and <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#01149>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01149>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01149>)]
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#01149> cannot be an instance of both <http://data.ashrae.org/standard223#BidirectionalConnectionPoint> and <http://data.ashrae.org/standard223#OutletConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#01149>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01149>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01149>)]
http://data.ashrae.org/standard223/data/scb-vrf#01150
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#01150> cannot be an instance of both <http://data.ashrae.org/standard223#OutletConnectionPoint> and <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#01150>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01150>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01150>)]
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#01150> cannot be an instance of both <http://data.ashrae.org/standard223#BidirectionalConnectionPoint> and <http://data.ashrae.org/standard223#OutletConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#01150>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01150>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01150>)]
http://data.ashrae.org/standard223/data/scb-vrf#01152
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#01152> cannot be an instance of both <http://data.ashrae.org/standard223#OutletConnectionPoint> and <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#01152>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01152>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01152>)]
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#01152> cannot be an instance of both <http://data.ashrae.org/standard223#BidirectionalConnectionPoint> and <http://data.ashrae.org/standard223#OutletConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#01152>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01152>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01152>)]
http://data.ashrae.org/standard223/data/scb-vrf#01153
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#01153> cannot be an instance of both <http://data.ashrae.org/standard223#OutletConnectionPoint> and <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#01153>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01153>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01153>)]
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#01153> cannot be an instance of both <http://data.ashrae.org/standard223#BidirectionalConnectionPoint> and <http://data.ashrae.org/standard223#OutletConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#01153>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01153>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01153>)]
http://data.ashrae.org/standard223/data/scb-vrf#01154
  - <http://data.ashrae.org/standard223/data/scb-vrf#01154> none of 3 alternative(s) satisfied
http://data.ashrae.org/standard223/data/scb-vrf#01157
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#01157> cannot be an instance of both <http://data.ashrae.org/standard223#OutletConnectionPoint> and <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#01157>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01157>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01157>)]
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#01157> cannot be an instance of both <http://data.ashrae.org/standard223#BidirectionalConnectionPoint> and <http://data.ashrae.org/standard223#OutletConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#01157>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01157>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01157>)]
http://data.ashrae.org/standard223/data/scb-vrf#01158
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#01158> cannot be an instance of both <http://data.ashrae.org/standard223#OutletConnectionPoint> and <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#01158>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01158>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01158>)]
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#01158> cannot be an instance of both <http://data.ashrae.org/standard223#BidirectionalConnectionPoint> and <http://data.ashrae.org/standard223#OutletConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#01158>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01158>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01158>)]
http://data.ashrae.org/standard223/data/scb-vrf#01159
  - <http://data.ashrae.org/standard223/data/scb-vrf#01159> at least 1 value(s) matching `instance of <http://data.ashrae.org/standard223#EnumeratedActuatableProperty> and ∃[1..1] <http://data.ashrae.org/standard223#hasEnumerationKind> . any node and ∃[..0] <http://data.ashrae.org/standard223#hasEnumerationKind> . ∃[..0] rdf:type/rdfs:subClassOf* . test(<http://data.ashrae.org/standard223#Binary-OnOff>)` required along <http://data.ashrae.org/standard223#hasProperty>, found 0
http://data.ashrae.org/standard223/data/scb-vrf#01165
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
http://data.ashrae.org/standard223/data/scb-vrf#01175
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#01175> cannot be an instance of both <http://data.ashrae.org/standard223#OutletConnectionPoint> and <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#01175>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01175>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01175>)]
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#01175> cannot be an instance of both <http://data.ashrae.org/standard223#BidirectionalConnectionPoint> and <http://data.ashrae.org/standard223#OutletConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#01175>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01175>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01175>)]
http://data.ashrae.org/standard223/data/scb-vrf#01176
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
http://data.ashrae.org/standard223/data/scb-vrf#01177
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#01177> cannot be an instance of both <http://data.ashrae.org/standard223#OutletConnectionPoint> and <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#01177>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01177>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01177>)]
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#01177> cannot be an instance of both <http://data.ashrae.org/standard223#BidirectionalConnectionPoint> and <http://data.ashrae.org/standard223#OutletConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#01177>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01177>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01177>)]
http://data.ashrae.org/standard223/data/scb-vrf#01178
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
http://data.ashrae.org/standard223/data/scb-vrf#01180
  - <http://data.ashrae.org/standard223#EnumerationKind-HVACOperatingMode> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#01182
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#01184
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#01186
  - <http://data.ashrae.org/standard223#EnumerationKind-HVACOperatingMode> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#01208
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#01210
  - <http://data.ashrae.org/standard223#EnumerationKind-HVACOperatingMode> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#01212
  - <http://data.ashrae.org/standard223#EnumerationKind-HVACOperatingMode> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#01214
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#01216
  - <http://data.ashrae.org/standard223#EnumerationKind-HVACOperatingMode> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#01218
  - <http://data.ashrae.org/standard223#EnumerationKind-HVACOperatingMode> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#01220
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#01222
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#01224
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#01226
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#01228
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#01230
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#01232
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#01234
  - <http://data.ashrae.org/standard223#EnumerationKind-HVACOperatingMode> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#01236
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#01238
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#01240
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#01252
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#01256
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#01256> cannot be an instance of both <http://data.ashrae.org/standard223#OutletConnectionPoint> and <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#01256>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01256>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01256>)]
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#01256> cannot be an instance of both <http://data.ashrae.org/standard223#BidirectionalConnectionPoint> and <http://data.ashrae.org/standard223#OutletConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#01256>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01256>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01256>)]
http://data.ashrae.org/standard223/data/scb-vrf#01257
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#01257> cannot be an instance of both <http://data.ashrae.org/standard223#OutletConnectionPoint> and <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#01257>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01257>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01257>)]
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#01257> cannot be an instance of both <http://data.ashrae.org/standard223#BidirectionalConnectionPoint> and <http://data.ashrae.org/standard223#OutletConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#01257>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01257>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01257>)]
http://data.ashrae.org/standard223/data/scb-vrf#01259
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#01259> cannot be an instance of both <http://data.ashrae.org/standard223#OutletConnectionPoint> and <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#01259>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01259>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01259>)]
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#01259> cannot be an instance of both <http://data.ashrae.org/standard223#BidirectionalConnectionPoint> and <http://data.ashrae.org/standard223#OutletConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#01259>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01259>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01259>)]
http://data.ashrae.org/standard223/data/scb-vrf#01260
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#01260> cannot be an instance of both <http://data.ashrae.org/standard223#OutletConnectionPoint> and <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#01260>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01260>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01260>)]
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#01260> cannot be an instance of both <http://data.ashrae.org/standard223#BidirectionalConnectionPoint> and <http://data.ashrae.org/standard223#OutletConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#01260>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01260>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01260>)]
http://data.ashrae.org/standard223/data/scb-vrf#01261
  - <http://data.ashrae.org/standard223/data/scb-vrf#01261> none of 3 alternative(s) satisfied
http://data.ashrae.org/standard223/data/scb-vrf#01264
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#01264> cannot be an instance of both <http://data.ashrae.org/standard223#OutletConnectionPoint> and <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#01264>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01264>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01264>)]
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#01264> cannot be an instance of both <http://data.ashrae.org/standard223#BidirectionalConnectionPoint> and <http://data.ashrae.org/standard223#OutletConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#01264>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01264>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01264>)]
http://data.ashrae.org/standard223/data/scb-vrf#01265
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#01265> cannot be an instance of both <http://data.ashrae.org/standard223#OutletConnectionPoint> and <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#01265>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01265>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01265>)]
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#01265> cannot be an instance of both <http://data.ashrae.org/standard223#BidirectionalConnectionPoint> and <http://data.ashrae.org/standard223#OutletConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#01265>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01265>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01265>)]
http://data.ashrae.org/standard223/data/scb-vrf#01266
  - <http://data.ashrae.org/standard223/data/scb-vrf#01266> at least 1 value(s) matching `instance of <http://data.ashrae.org/standard223#EnumeratedActuatableProperty> and ∃[1..1] <http://data.ashrae.org/standard223#hasEnumerationKind> . any node and ∃[..0] <http://data.ashrae.org/standard223#hasEnumerationKind> . ∃[..0] rdf:type/rdfs:subClassOf* . test(<http://data.ashrae.org/standard223#Binary-OnOff>)` required along <http://data.ashrae.org/standard223#hasProperty>, found 0
http://data.ashrae.org/standard223/data/scb-vrf#01272
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
http://data.ashrae.org/standard223/data/scb-vrf#01282
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#01282> cannot be an instance of both <http://data.ashrae.org/standard223#OutletConnectionPoint> and <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#01282>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01282>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01282>)]
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#01282> cannot be an instance of both <http://data.ashrae.org/standard223#BidirectionalConnectionPoint> and <http://data.ashrae.org/standard223#OutletConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#01282>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01282>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01282>)]
http://data.ashrae.org/standard223/data/scb-vrf#01283
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
http://data.ashrae.org/standard223/data/scb-vrf#01284
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#01284> cannot be an instance of both <http://data.ashrae.org/standard223#OutletConnectionPoint> and <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#01284>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01284>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01284>)]
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#01284> cannot be an instance of both <http://data.ashrae.org/standard223#BidirectionalConnectionPoint> and <http://data.ashrae.org/standard223#OutletConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#01284>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01284>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01284>)]
http://data.ashrae.org/standard223/data/scb-vrf#01285
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
http://data.ashrae.org/standard223/data/scb-vrf#01287
  - <http://data.ashrae.org/standard223#EnumerationKind-HVACOperatingMode> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#01289
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#01291
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#01293
  - <http://data.ashrae.org/standard223#EnumerationKind-HVACOperatingMode> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#01315
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#01317
  - <http://data.ashrae.org/standard223#EnumerationKind-HVACOperatingMode> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#01319
  - <http://data.ashrae.org/standard223#EnumerationKind-HVACOperatingMode> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#01321
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#01323
  - <http://data.ashrae.org/standard223#EnumerationKind-HVACOperatingMode> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#01325
  - <http://data.ashrae.org/standard223#EnumerationKind-HVACOperatingMode> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#01327
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#01329
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#01331
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#01333
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#01335
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#01337
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#01339
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#01341
  - <http://data.ashrae.org/standard223#EnumerationKind-HVACOperatingMode> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#01343
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#01345
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#01347
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#01359
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#01363
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#01363> cannot be an instance of both <http://data.ashrae.org/standard223#OutletConnectionPoint> and <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#01363>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01363>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01363>)]
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#01363> cannot be an instance of both <http://data.ashrae.org/standard223#BidirectionalConnectionPoint> and <http://data.ashrae.org/standard223#OutletConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#01363>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01363>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01363>)]
http://data.ashrae.org/standard223/data/scb-vrf#01364
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#01364> cannot be an instance of both <http://data.ashrae.org/standard223#OutletConnectionPoint> and <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#01364>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01364>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01364>)]
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#01364> cannot be an instance of both <http://data.ashrae.org/standard223#BidirectionalConnectionPoint> and <http://data.ashrae.org/standard223#OutletConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#01364>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01364>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01364>)]
http://data.ashrae.org/standard223/data/scb-vrf#01366
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#01366> cannot be an instance of both <http://data.ashrae.org/standard223#OutletConnectionPoint> and <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#01366>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01366>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01366>)]
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#01366> cannot be an instance of both <http://data.ashrae.org/standard223#BidirectionalConnectionPoint> and <http://data.ashrae.org/standard223#OutletConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#01366>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01366>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01366>)]
http://data.ashrae.org/standard223/data/scb-vrf#01367
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#01367> cannot be an instance of both <http://data.ashrae.org/standard223#OutletConnectionPoint> and <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#01367>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01367>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01367>)]
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#01367> cannot be an instance of both <http://data.ashrae.org/standard223#BidirectionalConnectionPoint> and <http://data.ashrae.org/standard223#OutletConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#01367>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01367>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01367>)]
http://data.ashrae.org/standard223/data/scb-vrf#01368
  - <http://data.ashrae.org/standard223/data/scb-vrf#01368> none of 3 alternative(s) satisfied
http://data.ashrae.org/standard223/data/scb-vrf#01371
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#01371> cannot be an instance of both <http://data.ashrae.org/standard223#OutletConnectionPoint> and <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#01371>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01371>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01371>)]
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#01371> cannot be an instance of both <http://data.ashrae.org/standard223#BidirectionalConnectionPoint> and <http://data.ashrae.org/standard223#OutletConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#01371>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01371>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01371>)]
http://data.ashrae.org/standard223/data/scb-vrf#01372
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#01372> cannot be an instance of both <http://data.ashrae.org/standard223#OutletConnectionPoint> and <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#01372>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01372>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01372>)]
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#01372> cannot be an instance of both <http://data.ashrae.org/standard223#BidirectionalConnectionPoint> and <http://data.ashrae.org/standard223#OutletConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#01372>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01372>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01372>)]
http://data.ashrae.org/standard223/data/scb-vrf#01373
  - <http://data.ashrae.org/standard223/data/scb-vrf#01373> at least 1 value(s) matching `instance of <http://data.ashrae.org/standard223#EnumeratedActuatableProperty> and ∃[1..1] <http://data.ashrae.org/standard223#hasEnumerationKind> . any node and ∃[..0] <http://data.ashrae.org/standard223#hasEnumerationKind> . ∃[..0] rdf:type/rdfs:subClassOf* . test(<http://data.ashrae.org/standard223#Binary-OnOff>)` required along <http://data.ashrae.org/standard223#hasProperty>, found 0
http://data.ashrae.org/standard223/data/scb-vrf#01379
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
http://data.ashrae.org/standard223/data/scb-vrf#01389
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#01389> cannot be an instance of both <http://data.ashrae.org/standard223#OutletConnectionPoint> and <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#01389>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01389>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01389>)]
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#01389> cannot be an instance of both <http://data.ashrae.org/standard223#BidirectionalConnectionPoint> and <http://data.ashrae.org/standard223#OutletConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#01389>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01389>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01389>)]
http://data.ashrae.org/standard223/data/scb-vrf#01390
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
http://data.ashrae.org/standard223/data/scb-vrf#01391
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#01391> cannot be an instance of both <http://data.ashrae.org/standard223#OutletConnectionPoint> and <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#01391>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01391>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01391>)]
  - s223: `ConnectionPoint` <http://data.ashrae.org/standard223/data/scb-vrf#01391> cannot be an instance of both <http://data.ashrae.org/standard223#BidirectionalConnectionPoint> and <http://data.ashrae.org/standard223#OutletConnectionPoint>. [query: SELECT ?this ?subclass1 ?subclass2 WHERE { ?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass1 .?this <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ?subclass2 .?subclass1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.ashrae.org/standard223#Class> .?subclass1 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> .?subclass2 <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://data.ashrae.org/standard223#ConnectionPoint> . FILTER(!(?subclass1 = ?subclass2)) } | bound: $this = <http://data.ashrae.org/standard223/data/scb-vrf#01391>, $currentShape = <http://data.ashrae.org/standard223#ConnectionPoint> | results: (subclass1 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01391>); (subclass1 = <http://data.ashrae.org/standard223#BidirectionalConnectionPoint>, subclass2 = <http://data.ashrae.org/standard223#OutletConnectionPoint>, this = <http://data.ashrae.org/standard223/data/scb-vrf#01391>)]
http://data.ashrae.org/standard223/data/scb-vrf#01392
  - <http://data.ashrae.org/standard223#Fluid-Refrigerant> must be an instance of <http://data.ashrae.org/standard223#Substance-Medium>
http://data.ashrae.org/standard223/data/scb-vrf#01394
  - <http://data.ashrae.org/standard223#EnumerationKind-HVACOperatingMode> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#01396
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#01398
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#01400
  - <http://data.ashrae.org/standard223#EnumerationKind-HVACOperatingMode> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#01422
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#01424
  - <http://data.ashrae.org/standard223#EnumerationKind-HVACOperatingMode> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#01426
  - <http://data.ashrae.org/standard223#EnumerationKind-HVACOperatingMode> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#01428
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#01430
  - <http://data.ashrae.org/standard223#EnumerationKind-HVACOperatingMode> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#01432
  - <http://data.ashrae.org/standard223#EnumerationKind-HVACOperatingMode> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#01434
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#01436
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#01438
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#01440
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#01442
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#01444
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#01446
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#01448
  - <http://data.ashrae.org/standard223#EnumerationKind-HVACOperatingMode> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#01450
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#01452
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#01454
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#01466
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#01468
  - <http://data.ashrae.org/standard223#EnumerationKind-HVACOperatingMode> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#01470
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#01472
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#01474
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>
http://data.ashrae.org/standard223/data/scb-vrf#01538
  - <http://data.ashrae.org/standard223#EnumerationKind-OnOff> must be an instance of <http://data.ashrae.org/standard223#EnumerationKind>