@prefix sh: <http://www.w3.org/ns/shacl#> .
@prefix schema: <https://schema.org/> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

<#DatasetShape>
    a sh:NodeShape ;
    sh:targetClass schema:WebPage ;
    sh:property [
        sh:path schema:url ;
        sh:minCount 1 ;
        sh:nodeKind sh:IRIOrLiteral
    ] ;
    sh:property [
        sh:path schema:mainEntity ;
        sh:minCount 1
    ] ;
    sh:property [
        sh:path dcterms:modified ;
        sh:minCount 1
    ] .

<#PersonShape>
    a sh:NodeShape ;
    sh:targetClass schema:Person ;
    sh:property [
        sh:path schema:name ;
        sh:minCount 1
    ] ;
    sh:property [
        sh:path schema:sameAs ;
        sh:nodeKind sh:IRIOrLiteral
    ] .

<#OrganizationShape>
    a sh:NodeShape ;
    sh:targetClass schema:Organization ;
    sh:property [
        sh:path schema:name ;
        sh:minCount 1
    ] ;
    sh:property [
        sh:path schema:url ;
        sh:minCount 1
    ] .

<#ConceptShape>
    a sh:NodeShape ;
    sh:targetClass skos:Concept ;
    sh:property [
        sh:path skos:prefLabel ;
        sh:minCount 1
    ] ;
    sh:property [
        sh:path owl:sameAs ;
        sh:nodeKind sh:IRIOrLiteral
    ] .
