-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprocessors.ttl
More file actions
166 lines (159 loc) · 3.76 KB
/
processors.ttl
File metadata and controls
166 lines (159 loc) · 3.76 KB
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
@prefix rdfc: <https://w3id.org/rdf-connect#>.
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#>.
@prefix sh: <http://www.w3.org/ns/shacl#>.
@prefix xsd: <http://www.w3.org/2001/XMLSchema#>.
rdfc:SPARQLIngest rdfc:jsImplementationOf rdfc:Processor;
rdfs:label "SPARQL Ingest Processor";
rdfs:comment "A processor that ingests RDF data into a SPARQL endpoint";
rdfc:file <./lib/SPARQLIngest.js>;
rdfc:class "SPARQLIngest";
rdfc:entrypoint <./>.
[ ] a sh:NodeShape;
sh:targetClass rdfc:SPARQLIngest;
sh:property [
sh:path rdfc:memberStream;
sh:name "memberStream";
sh:class rdfc:Reader;
sh:minCount 1;
sh:maxCount 1;
], [
sh:path rdfc:ingestConfig;
sh:name "config";
sh:class rdfc:IngestConfig;
sh:minCount 1;
sh:maxCount 1;
], [
sh:path rdfc:sparqlWriter;
sh:name "sparqlWriter";
sh:class rdfc:Writer;
sh:maxCount 1;
].
[ ] a sh:NodeShape;
sh:targetClass rdfc:IngestConfig;
sh:property [
sh:path rdfc:operationMode;
sh:datatype xsd:string;
sh:name "operationMode";
sh:maxCount 1;
], [
sh:path rdfc:memberBatchSize;
sh:datatype xsd:integer;
sh:name "memberBatchSize";
sh:maxCount 1;
], [
sh:path rdfc:memberShape;
sh:datatype xsd:string;
sh:name "memberShape";
sh:maxCount 1;
], [
sh:path rdfc:changeSemantics;
sh:class rdfc:ChangeSemantics;
sh:name "changeSemantics";
sh:maxCount 1;
sh:minCount 0;
], [
sh:path rdfc:targetNamedGraph;
sh:datatype xsd:string;
sh:name "targetNamedGraph";
sh:maxCount 1;
sh:minCount 0;
], [
sh:path rdfc:transactionConfig;
sh:class rdfc:TransactionConfig;
sh:name "transactionConfig";
sh:maxCount 1;
sh:minCount 0;
], [
sh:path rdfc:graphStoreUrl;
sh:datatype xsd:string;
sh:name "graphStoreUrl";
sh:maxCount 1;
sh:minCount 0;
], [
sh:path rdfc:forVirtuoso;
sh:datatype xsd:boolean;
sh:name "forVirtuoso";
sh:maxCount 1;
sh:minCount 0;
], [
sh:path rdfc:accessToken;
sh:datatype xsd:string;
sh:name "accessToken";
sh:maxCount 1;
sh:minCount 0;
], [
sh:path rdfc:measurePerformance;
sh:class rdfc:PerformanceConfig;
sh:name "measurePerformance";
sh:maxCount 1;
sh:minCount 0;
].
[ ] a sh:NodeShape;
sh:targetClass rdfc:PerformanceConfig;
sh:property [
sh:path rdfc:name;
sh:datatype xsd:string;
sh:name "name";
sh:maxCount 1;
sh:minCount 1;
], [
sh:path rdfc:outputPath;
sh:datatype xsd:string;
sh:name "outputPath";
sh:maxCount 1;
sh:minCount 1;
], [
sh:path rdfc:failureIsFatal;
sh:datatype xsd:boolean;
sh:name "failureIsFatal";
sh:maxCount 1;
sh:minCount 0;
], [
sh:path rdfc:queryTimeout;
sh:datatype xsd:integer;
sh:name "queryTimeout";
sh:maxCount 1;
sh:minCount 0;
].
[ ] a sh:NodeShape;
sh:targetClass rdfc:ChangeSemantics;
sh:property [
sh:path rdfc:changeTypePath;
sh:datatype xsd:string;
sh:name "changeTypePath";
sh:maxCount 1;
sh:minCount 1;
], [
sh:path rdfc:createValue;
sh:datatype xsd:string;
sh:name "createValue";
sh:maxCount 1;
sh:minCount 1;
], [
sh:path rdfc:updateValue;
sh:datatype xsd:string;
sh:name "updateValue";
sh:maxCount 1;
sh:minCount 1;
], [
sh:path rdfc:deleteValue;
sh:datatype xsd:string;
sh:name "deleteValue";
sh:maxCount 1;
sh:minCount 1;
].
[ ] a sh:NodeShape;
sh:targetClass rdfc:TransactionConfig;
sh:property [
sh:path rdfc:transactionIdPath;
sh:datatype xsd:string;
sh:name "transactionIdPath";
sh:maxCount 1;
sh:minCount 1;
], [
sh:path rdfc:transactionEndPath;
sh:datatype xsd:string;
sh:name "transactionEndPath";
sh:maxCount 1;
sh:minCount 1;
].