Skip to content

Commit

Permalink
feat: Add Thesaurus Historische Persoonsgegevens (#1448)
Browse files Browse the repository at this point in the history
* feat: Add Thesaurus Historische Persoonsgegevens

* fix: Update description
  • Loading branch information
ddeboer authored Nov 4, 2024
1 parent 16086f7 commit 3fbc7ed
Show file tree
Hide file tree
Showing 4 changed files with 83 additions and 0 deletions.
69 changes: 69 additions & 0 deletions packages/network-of-terms-catalog/catalog/datasets/picot.jsonld
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
{
"@context": "https://schema.org/docs/jsonldcontext.jsonld",
"@id": "https://terms.personsincontext.org/ThesaurusHistorischePersoonsgegevens",
"@type": "Dataset",
"name": [
{
"@language": "nl",
"@value": "Thesaurus Historische Persoonsgegevens"
}
],
"alternateName": [
{
"@language": "en",
"@value": "PiCoT"
}
],
"genre": [
{
"@id": "https://data.cultureelerfgoed.nl/termennetwerk/onderwerpen/Actoren-en-organismen"
}
],
"creator": [
{
"@id": "https://www.cbg.nl"
}
],
"url": [
"https://terms.personsincontext.org/ThesaurusHistorischePersoonsgegevens/"
],
"mainEntityOfPage": [
"https://terms.personsincontext.org/ThesaurusHistorischePersoonsgegevens"
],
"description": [
{
"@language": "nl",
"@value": "Gestandaardiseerde termen voor het type bron waarop een persoon is vermeld en voor de rol die die persoon kan hebben op de bron. Onderdeel van de Persons in Context-standaard."
}
],
"inLanguage": "nl",
"distribution": [
{
"@id": "https://terms.personsincontext.org/PoolParty/sparql/ThesaurusHistorischePersoonsgegevens",
"@type": "DataDownload",
"contentUrl": "https://terms.personsincontext.org/PoolParty/sparql/ThesaurusHistorischePersoonsgegevens",
"encodingFormat": "application/sparql-query",
"potentialAction": [
{
"@type": "SearchAction",
"query": "file://catalog/queries/search/poolparty.rq"
},
{
"@type": "FindAction",
"query": "file://catalog/queries/lookup/poolparty.rq"
},
{
"@type": "Action",
"target": {
"@type": "EntryPoint",
"actionApplication": {
"@id": "https://reconciliation-api.github.io/specs/latest/",
"@type": "SoftwareApplication"
},
"urlTemplate": "https://termennetwerk-api.netwerkdigitaalerfgoed.nl/reconcile/{dataset}"
}
}
]
}
]
}
6 changes: 6 additions & 0 deletions packages/network-of-terms-catalog/catalog/publishers.jsonld
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,12 @@
"@type": "Organization",
"name": "Amsterdam Time Machine",
"alternateName": "ATM"
},
{
"@id": "https://www.cbg.nl",
"@type": "Organization",
"name": "Centrum voor familiegeschiedenis",
"alternateName": "CBG"
}
]
}
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,10 @@ WHERE {
?uri skos:scopeNote ?scopeNote .
FILTER(LANG(?scopeNote) = "nl")
}
OPTIONAL {
?uri skos:definition ?scopeNote .
FILTER(LANG(?scopeNote) = "nl")
}
OPTIONAL {
?uri skos:broader ?broader_uri .
?broader_uri skos:prefLabel ?broader_prefLabel .
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,10 @@ WHERE {
?uri skos:scopeNote ?scopeNote .
FILTER(LANG(?scopeNote) = "nl")
}
OPTIONAL {
?uri skos:definition ?scopeNote .
FILTER(LANG(?scopeNote) = "nl")
}
OPTIONAL {
?uri skos:broader ?broader_uri .
?broader_uri skos:prefLabel ?broader_prefLabel .
Expand Down

0 comments on commit 3fbc7ed

Please sign in to comment.