@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix qudt: <http://qudt.org/schema/qudt/> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

qudt:isDeltaQuantity a rdf:Property,
        owl:DatatypeProperty ;
    rdfs:label "is Delta Quantity" ;
    dcterms:description """
  This property is used to identify a Quantity instance that is a measure of a change, or interval, of some property,
   rather than a measure of its absolute value. 
  This is important for measurements such as temperature differences where the conversion among units would be calculated differently because of offsets.
  """ ;
    rdfs:isDefinedBy <http://qudt.org/3.2.1/schema/qudt>,
        <http://qudt.org/3.2.1/schema/shacl/qudt> ;
    rdfs:range xsd:boolean .

