concept holds for
- CURIE:
gmeow:conceptHoldsFor - IRI: https://blackcatinformatics.ca/gmeow/conceptHoldsFor
- Category: property
- Defined by:
gmeow:slices/concepts - Box roles: RBox role (What is this?)
Relates a gmeow:ConceptTenure to the gmeow:Concept whose intension it time-scopes. Functional: one tenure records the intension of exactly one concept; a concept may have many tenures over time.
Structure
Property shape: object property; gmeow:ConceptTenure -> gmeow:Concept; functional
Practical Pattern
Use gmeow:conceptHoldsFor from gmeow:ConceptTenure to gmeow:Concept when the relationship itself belongs in the native GMEOW graph.
Example Snippets
These snippets are generated from canonical slice examples and trimmed to the Turtle blocks where this term appears.
Conceptual Change
- Source:
slices/core/concepts/examples/conceptual-change.ttl - Examples catalog: open in catalog#example-slices-core-concepts-examples-conceptual-change
@prefix gmeow: <https://blackcatinformatics.ca/gmeow/> .
@prefix ex: <https://blackcatinformatics.ca/gmeow/examples/concepts/conceptual-change/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
# --- Pre-2006 intension, closed and suppressed (Principle 10) --------------------- # codespell:ignore
ex:planetTenurePre2006 a gmeow:ConceptTenure ;
rdfs:label "pre-2006 intension of 'planet'"@en ; # codespell:ignore
gmeow:conceptHoldsFor ex:planet ;
gmeow:duringInterval ex:pre2006Interval ;
rdfs:comment "A body orbiting the Sun."@en ;
gmeow:displayable false .
# --- Post-2006 intension, open tenure --------------------------------------------- # codespell:ignore
ex:planetTenurePost2006 a gmeow:ConceptTenure ;
rdfs:label "post-2006 intension of 'planet'"@en ; # codespell:ignore
gmeow:conceptHoldsFor ex:planet ;
gmeow:duringInterval ex:post2006Interval ;
rdfs:comment "A body that has cleared its neighbourhood."@en .
Common Companion Terms
gmeow:ConceptTenure, gmeow:Concept
Usage Advice
Use when
- Use to bind a
ConceptTenureto the concept whose intension was held over the interval.
Avoid when
- Avoid using it outside a
ConceptTenure; for the categorization link usegmeow:observedFeature/gmeow:observationResult.
How to use
- Set exactly once per
ConceptTenure, pairing it withgmeow:duringInterval.
Examples
- ex:mammalTenure
gmeow:conceptHoldsForex:mammal.