-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.ttl
60 lines (57 loc) · 1.54 KB
/
index.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
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfc: <https://www.rdf-connect.com/#> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
[]
a rdfc:Package ;
rdfc:version "0.0.1" ;
rdfc:author "Jens Pots" ;
rdfc:description "HTTP utilities processor." ;
rdfc:repo "https://github.com/rdf-connect/orchestrator.git" ;
rdfc:license "MIT" ;
rdfc:prepare (
"gradle jar --console=plain --warning-mode all"
) ;
rdfc:processors rdfc:HttpFetchKT .
rdfc:HttpFetchKT
a rdfc:Processor ;
rdfc:target rdfc:JVMRunner ;
rdfc:entrypoint <./build/libs/http-utils-kt-0.0.1.jar> ;
rdfc:metadata "class: technology.idlab.httputils.HttpFetch" .
[]
a sh:NodeShape ;
sh:closed true ;
sh:ignoredProperties ( rdf:type ) ;
sh:targetClass rdfc:HttpFetchKT ;
sh:property [
sh:maxCount 1 ;
sh:minCount 1 ;
sh:name "arguments" ;
sh:path rdfc:arguments ;
sh:node [
sh:property [
sh:maxCount 1 ;
sh:minCount 0 ;
sh:name "method" ;
sh:path rdfc:method ;
sh:datatype xsd:string ;
], [
sh:maxCount 1 ;
sh:minCount 1 ;
sh:name "outgoing" ;
sh:path rdfc:outgoing ;
sh:class rdfc:Writer ;
], [
sh:maxCount 1 ;
sh:minCount 1 ;
sh:name "endpoint" ;
sh:path rdfc:endpoint ;
sh:nodeKind sh:IRIOrLiteral ;
], [
sh:minCount 0 ;
sh:name "headers" ;
sh:path rdfc:headers ;
sh:datatype xsd:string ;
] ;
] ;
].