generated from rdf-connect/template-processor-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
processor.ttl
69 lines (67 loc) · 2.01 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
@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#>.
js:Log a js:JsProcess;
js:file <./lib/index.js>;
js:function "log";
js:location <./>;
js:mapping [
a fno:Mapping;
fno:parameterMapping [
a fnom:PositionParameterMapping;
fnom:functionParameter "incoming";
fnom:implementationParameterPosition "0"^^xsd:int;
], [
a fnom:PositionParameterMapping;
fnom:functionParameter "outgoing";
fnom:implementationParameterPosition "1"^^xsd:int;
], [
a fnom:PositionParameterMapping;
fnom:functionParameter "label";
fnom:implementationParameterPosition "2"^^xsd:int;
], [
a fnom:PositionParameterMapping;
fnom:functionParameter "level";
fnom:implementationParameterPosition "3"^^xsd:int;
], [
a fnom:PositionParameterMapping;
fnom:functionParameter "raw";
fnom:implementationParameterPosition "4"^^xsd:int;
];
].
[ ] a sh:NodeShape;
sh:targetClass js:Log;
sh:property [
sh:class :ReaderChannel;
sh:path js:incoming;
sh:name "incoming";
sh:maxCount 1;
sh:minCount 1;
], [
sh:class :WriterChannel;
sh:path js:outgoing;
sh:name "outgoing";
sh:maxCount 1;
sh:minCount 0;
], [
sh:datatype xsd:string;
sh:path js:label;
sh:name "label";
sh:minCount 0;
sh:maxCount 1;
], [
sh:datatype xsd:string;
sh:path js:level;
sh:name "level";
sh:minCount 0;
sh:maxCount 1;
], [
sh:datatype xsd:boolean;
sh:path js:raw;
sh:name "raw";
sh:minCount 0;
sh:maxCount 1;
].