Skip to content

Latest commit

 

History

History
37 lines (30 loc) · 1.2 KB

rdf.md

File metadata and controls

37 lines (30 loc) · 1.2 KB

Communities: RDF model

RDF model for describing a community and users. The model is a translation of the conceptual model. The model uses Linked Art as foundation.

Group

@prefix crm: <http://www.cidoc-crm.org/cidoc-crm/> .

<https://example.org/community-1>
    a crm:E74_Group ;
    crm:P2_has_type <http://vocab.getty.edu/aat/300435377> ; # Community
    crm:P1_is_identified_by [
        a crm:E33_E41_Linguistic_Appellation ;
        crm:P2_has_type <http://vocab.getty.edu/aat/300404670> ; # Name
        crm:P190_has_symbolic_content "Suriname"
    ] ;
    crm:P1_is_identified_by [
        a crm:E42_Identifier ;
        crm:P2_has_type <http://vocab.getty.edu/aat/300404621> ; # Repository number
        crm:P190_has_symbolic_content "1234" # ID assigned by the data source
    ] .

Person

@prefix crm: <http://www.cidoc-crm.org/cidoc-crm/> .

<https://example.org/member-1>
    a crm:E21_Person ;
    crm:P1_is_identified_by [
        a crm:E42_Identifier ;
        crm:P2_has_type <http://vocab.getty.edu/aat/300404621> ; # Repository number
        crm:P190_has_symbolic_content "1234" # ID assigned by the data source
    ] .