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 gedcom: <http://www.w3.org/2000/10/swap/pim/gedcom#>

<WebPageShape> {
  a [schema:WebPage schema:ProfilePage] + ;
  schema:url . * ;
  schema:mainEntity . + ;
  dcterms:modified . *
}

<PersonShape> {
  a [schema:Person] + ;
  schema:name . + ;
  schema:sameAs . *
}

<OrganizationShape> {
  a [schema:Organization schema:ProfessionalService] + ;
  schema:name . + ;
  schema:url . *
}

<ConceptShape> {
  a [skos:Concept] + ;
  skos:prefLabel . + ;
  owl:sameAs . *
}

<IndividualShape> {
  a [gedcom:Individual] + ;
  schema:name . + ;
  schema:parent . * ;
  schema:children . * ;
  schema:sibling . * ;
  schema:spouse . * ;
  schema:birthDate . ? ;
  schema:deathDate . ?
}

<FamilyShape> {
  a [gedcom:Family] + ;
  gedcom:husband . ? ;
  gedcom:wife . ? ;
  gedcom:child . *
}
