Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix definition of the ambient temperature component of the PowerOutput shape #300

Merged
merged 1 commit into from
Jul 22, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions bricksrc/entity_properties.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Entity property definitions
"""
from rdflib import Literal
from .namespaces import BRICK, RDFS, SKOS, UNIT, XSD
from .namespaces import BRICK, RDFS, SKOS, UNIT, XSD, SH

# these are the "relationship"/predicates/OWL properties that
# relate a Brick entity to a structured value.
Expand Down Expand Up @@ -306,7 +306,7 @@
SKOS.definition: Literal(
"The ambient temperature at which the power output was measured"
),
RDFS.range: BRICK.TemperatureShape,
SH["class"]: BRICK.TemperatureShape,
},
},
},
Expand Down