@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix frapo: <http://purl.org/cerif/frapo/> .
@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#> .

frapo:ResearchGroup a owl:Class ;
    rdfs:label "research group"@en ;
    vann:example """
        :my-research-group a frapo:ResearchGroup .
        """ ;
    vaem:rationale """
This is used to represent the role of research group, conceptualised as a group of people working together in research.

For example, a research group related to some resource can be specified as a type (by means of the property `rdf:type`) by means of the class `frapo:ResearchGroup`.
        """@en ;
    rdfs:comment "A group of people, usually within a university department or a research institute, and typically under a single group leader, dedicated to working together to undertake research on one or more topics. May also be called a research unit."@en ;
    rdfs:isDefinedBy frapo: ;
    rdfs:subClassOf foaf:Group ;
    vs:term_status reg:statusStable .

