@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . @prefix ns0: <http://purl.org/tempo/> . @prefix owl: <http://www.w3.org/2002/07/owl#> . @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . @prefix metadata: <http://data.bioontology.org/metadata/> . @prefix metadata_def: <http://data.bioontology.org/metadata/def/> . ns0:TemporalConstraint metadata_def:mappingLoom "temporalconstraint" ; metadata_def:mappingSameURI ns0:TemporalConstraint ; metadata_def:prefLabel "Temporal Constraint"@en ; metadata:prefixIRI "tempo:TemporalConstraint" ; a owl:Class ; rdfs:comment """Temporal constraint box to capture a consistent set of validity and efficacy intervals. Objects of this class also serve the purpose to capture additional constraints or annotations, in particular when they are also temporally constrained. Example ------- ccy:EUR a ccy:ISO4217-CurrencyCode ; ccy:usedIn cc:DE , cc:GR ; rdfs:label \"EUR\" ; tempo:constrainedBy [ a tempo:TemporalConstraint ; tempo:validFrom \"1999-01-01\"^^xsd:date ; ccy:usedIn cc:DE ; ] , [ a tempo:TemporalConstraint ; tempo:validFrom \"2001-01-01\"^^xsd:date ; ccy:usedIn cc:GR ; ] . meaning the currency code 'EUR' became valid in Germany in 1999 whereas in Greece it became valid in 2001."""@en ; rdfs:label "Temporal Constraint"@en ; rdfs:seeAlso ns0:constrainedBy ; rdfs:subClassOf owl:Thing . ns0:constrainedBy rdfs:range ns0:TemporalConstraint ; rdfs:seeAlso ns0:TemporalConstraint .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix ns0: <http://purl.org/tempo/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix metadata: <http://data.bioontology.org/metadata/> .
@prefix metadata_def: <http://data.bioontology.org/metadata/def/> .

ns0:TemporalConstraint
    metadata_def:mappingLoom "temporalconstraint" ;
    metadata_def:mappingSameURI ns0:TemporalConstraint ;
    metadata_def:prefLabel "Temporal Constraint"@en ;
    metadata:prefixIRI "tempo:TemporalConstraint" ;
    a owl:Class ;
    rdfs:comment """Temporal constraint box to capture a consistent set of validity and efficacy intervals.

Objects of this class also serve the purpose to capture additional constraints or annotations, in particular when they are also temporally constrained.

Example
-------

    ccy:EUR
        a ccy:ISO4217-CurrencyCode ;
        ccy:usedIn cc:DE , cc:GR ;
        rdfs:label \"EUR\" ;
        tempo:constrainedBy [
            a tempo:TemporalConstraint ;
            tempo:validFrom \"1999-01-01\"^^xsd:date ;
            ccy:usedIn cc:DE ;
        ] , [
            a tempo:TemporalConstraint ;
            tempo:validFrom \"2001-01-01\"^^xsd:date ;
            ccy:usedIn cc:GR ;
        ] .

meaning the currency code 'EUR' became valid in Germany in 1999 whereas in Greece it became valid in 2001."""@en ;
    rdfs:label "Temporal Constraint"@en ;
    rdfs:seeAlso ns0:constrainedBy ;
    rdfs:subClassOf owl:Thing .

ns0:constrainedBy
    rdfs:range ns0:TemporalConstraint ;
    rdfs:seeAlso ns0:TemporalConstraint .