-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
56916ec
commit 2ad6368
Showing
3 changed files
with
39 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Metadata for your pipeline: | ||
name: KB NBT Pipeline | ||
description: > | ||
This is an example pipeline. It uses files that are available in this repository | ||
and SPARQL endpoints that should work. | ||
# This is optional, by default it will be stored in the data directory of the pipeline using filename 'statements.nt' | ||
destination: file://pipelines/data/kb-nbt-pipeline.nt | ||
|
||
# The individual stages for your pipeline | ||
stages: | ||
- name: "Stage 1" | ||
iterator: | ||
query: file://static/kb-nbt/iterator-stage-1.rq | ||
endpoint: http://data.bibliotheken.nl/sparql | ||
generator: | ||
query: file://static/kb-nbt/generator-stage-1.rq |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> | ||
prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> | ||
prefix edm: <http://www.europeana.eu/schemas/edm/> | ||
prefix dc: <http://purl.org/dc/elements/1.1/> | ||
|
||
construct { | ||
?this a edm:ProvidedCHO ; | ||
edm:type "TEXT" ; | ||
dc:title ?name . | ||
} | ||
where { | ||
$this rdfs:label ?name . | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> | ||
prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> | ||
prefix schema: <http://schema.org/> | ||
|
||
select * where { | ||
$this a schema:Book ; | ||
schema:mainEntityOfPage/schema:isPartOf <http://data.bibliotheken.nl/id/dataset/nbt> . | ||
} limit 1000 |