@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix pamba: <https://pamba.mus.br/ontology/> .
@prefix schema: <https://schema.org/> .
@prefix sh: <http://www.w3.org/ns/shacl#> .

pamba:PersonShape
    a sh:NodeShape ;
    sh:targetClass schema:Person ;
    sh:property [
        sh:path dcterms:identifier ;
        sh:minCount 1 ;
    ] ;
    sh:property [
        sh:path schema:name ;
        sh:minCount 1 ;
    ] .

pamba:MusicalWorkShape
    a sh:NodeShape ;
    sh:targetClass schema:MusicComposition ;
    sh:property [
        sh:path dcterms:identifier ;
        sh:minCount 1 ;
    ] ;
    sh:property [
        sh:path schema:name ;
        sh:minCount 1 ;
    ] .

pamba:SourceShape
    a sh:NodeShape ;
    sh:targetClass schema:CreativeWork ;
    sh:property [
        sh:path dcterms:identifier ;
        sh:minCount 1 ;
    ] ;
    sh:property [
        sh:path schema:name ;
        sh:minCount 1 ;
    ] .

pamba:DigitalObjectShape
    a sh:NodeShape ;
    sh:targetClass schema:DigitalDocument ;
    sh:property [
        sh:path dcterms:identifier ;
        sh:minCount 1 ;
    ] ;
    sh:property [
        sh:path schema:name ;
        sh:minCount 1 ;
    ] .

pamba:OrganizationShape
    a sh:NodeShape ;
    sh:targetClass schema:Organization ;
    sh:property [
        sh:path dcterms:identifier ;
        sh:minCount 1 ;
    ] ;
    sh:property [
        sh:path schema:name ;
        sh:minCount 1 ;
    ] .
