@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 skos: <http://www.w3.org/2004/02/skos/core#> .
@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#> .

skos:Concept a owl:Class ;
    rdfs:label "concept"@en ;
    vann:example """
        :my-concept a skos:Concept ;
            skos:prefLabel 'Semantic Web'@en ;
            skos:definition 'An extension of the World Wide Web that enables computers to interpret the meaning of data.'@en ;
            skos:inScheme :my-concept-scheme .
    """ ;
    vaem:rationale "The notion of a SKOS concept is useful when describing the conceptual or intellectual structure of a knowledge organization system, and when referring to specific ideas or meanings established within a KOS."@en ;
    rdfs:comment "An idea or notion; a unit of thought."@en ;
    rdfs:isDefinedBy skos: ;
    owl:disjointWith skos:ConceptScheme ;
    vs:term_status reg:statusStable ;
    skos:note "Note that, because SKOS is designed to be a vehicle for representing semi-formal KOS, such as thesauri and classification schemes, a certain amount of flexibility has been built in to the formal definition of this class."@en .

