-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprocessor.ttl
54 lines (49 loc) · 1.29 KB
/
processor.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
@prefix js: <https://w3id.org/conn/js#>.
@prefix fno: <https://w3id.org/function/ontology#>.
@prefix fnom: <https://w3id.org/function/vocabulary/mapping#>.
@prefix xsd: <http://www.w3.org/2001/XMLSchema#>.
@prefix : <https://w3id.org/conn#>.
@prefix sh: <http://www.w3.org/ns/shacl#>.
@prefix owl: <http://www.w3.org/2002/07/owl#>.
js:Piveau a js:JsProcess;
js:file <./lib/index.js>;
js:function "piveau";
js:location <./>;
js:mapping [
a fno:Mapping;
fno:parameterMapping [
a fnom:PositionParameterMapping;
fnom:functionParameter "Data input";
fnom:implementationParameterPosition "0"^^xsd:int;
];
].
[ ] a sh:NodeShape;
sh:targetClass js:Piveau;
sh:property [
sh:class :ReaderChannel;
sh:path js:input;
sh:name "Data input";
sh:minCount 1;
sh:maxCount 1;
].
js:Log a js:JsProcess;
js:file <./lib/index.js>;
js:function "consoleLog";
js:location <./>;
js:mapping [
a fno:Mapping;
fno:parameterMapping [
a fnom:PositionParameterMapping;
fnom:functionParameter "Data input";
fnom:implementationParameterPosition "0"^^xsd:int;
];
].
[ ] a sh:NodeShape;
sh:targetClass js:Log;
sh:property [
sh:class :ReaderChannel;
sh:path js:input;
sh:name "Data input";
sh:minCount 1;
sh:maxCount 1;
].