-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpipeline.ttl
33 lines (27 loc) · 996 Bytes
/
pipeline.ttl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
@prefix rml: <http://w3id.org/rml/>.
@prefix js: <https://w3id.org/conn/js#>.
@prefix ws: <https://w3id.org/conn/ws#>.
@prefix : <https://w3id.org/conn#>.
@prefix owl: <http://www.w3.org/2002/07/owl#>.
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#>.
@prefix rml: <https://w3id.org/conn/rml#>.
@prefix ql: <http://semweb.mmlab.be/ns/ql#>.
<> owl:imports <../node_modules/@ajuvercr/js-runner/ontology.ttl>.
<> owl:imports <../node_modules/@ajuvercr/js-runner/channels/file.ttl>.
<> owl:imports <../node_modules/@ajuvercr/js-runner/channels/http.ttl>.
<> owl:imports <../node_modules/ldes-client/processor.ttl>.
[ ] a js:JsChannel;
:writer <json/writer>.
<json/writer> a :FileWriterChannel;
:fileOnReplace "false";
:filePath <./output.ttl>.
[ ] a js:LdesClient;
js:output <json/writer>;
js:url <https://mumo.ilabt.imec.be/ldes/default>;
js:ordered "none";
js:follow false;
js:interval 5000;
js:noShape false;
js:loose false;
js:urlIsView false;
js:verbose true.