@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:subject a owl:ObjectProperty ;
    rdfs:label "has subject" ;
    vann:example """
        :my-dataset 
                dcterms:subject :my-concept .

        :my-concept a skos:Concept ;
                skos:prefLabel "Knowledge"@en . 
        """ ;
    vaem:rationale """
This property should always be used with a [SKOS](http://www.w3.org/2004/02/skos/core#) concept. 
If possible, one could specify a more specific property rather than the general `dcterms:subject`, such as `fabio:hasSubjectTerm` and `fabio:hasSubjectDiscipline`. 
Instead of creating a new concept every time, one could reuse concepts already available in existing SKOS-based models.
        """@en ;
    rdfs:comment "A topic of the resource."@en ;
    rdfs:isDefinedBy dcterms: ;
    vs:term_status reg:statusStable .

