@prefix dcterms: <http://purl.org/dc/terms/> .
@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#> .

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

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 "Date of submission of the resource."@en ;
    rdfs:isDefinedBy dcterms: ;
    rdfs:range rdfs:Literal ;
    rdfs:subPropertyOf dcterms:date ;
    vs:term_status reg:statusStable .

