@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix fabio: <http://purl.org/spar/fabio/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix reg: <http://purl.org/linked-data/registry#> .
@prefix vaem: <http://www.linkedmodel.org/schema/vaem#> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix vs: <http://www.w3.org/2003/06/sw-vocab-status/ns#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

fabio:hasDateCollected a owl:DatatypeProperty ;
    rdfs:label "has date collected"@en ;
    vann:example """
        :my-dataset-collection-date 
                literal:hasLiteralValue "2012-07-04"^^xsd:date ;
                dcterms:type fabio:hasDateCollected .        
        """ ;
    vaem:rationale """
This is used as a controlled term to specify a given date type ("Collected").

This is used in combination with [OWL2 punning](http://www.w3.org/TR/2009/WD-owl2-new-features-20090611/#F12:_Punning) to characterise the type of a date (modelled as an instance of `literal:Literal`) via the property `dcterms:type`.
        """@en ;
    rdfs:comment "The date on which some item has been collected, for example the data gathered by means of questionnaires."@en ;
    rdfs:isDefinedBy fabio: ;
    rdfs:range xsd:dateTime ;
    rdfs:subPropertyOf dcterms:date ;
    vs:term_status reg:statusStable .

