-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.ttl
95 lines (90 loc) · 2.34 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
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
@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 "Simple file I/O operations, written in Kotlin." ;
rdfc:repo "https://github.com/rdf-connect/orchestrator.git" ;
rdfc:license "MIT" ;
rdfc:prepare (
"gradle jar --console=plain --warning-mode all"
) ;
rdfc:processors
rdfc:FileReaderKT ,
rdfc:FileWriterKT .
rdfc:FileReaderKT
a rdfc:Processor ;
rdfc:target rdfc:JVMRunner ;
rdfc:entrypoint <./build/libs/file-utils-kt-0.0.1.jar> ;
rdfc:metadata "class: technology.idlab.fileutils.FileReader" .
rdfc:FileWriterKT
a rdfc:Processor ;
rdfc:target rdfc:JVMRunner ;
rdfc:entrypoint <./build/libs/file-utils-kt-0.0.1.jar> ;
rdfc:metadata "class: technology.idlab.fileutils.FileWriter" .
[]
a sh:NodeShape ;
sh:closed true ;
sh:ignoredProperties ( rdf:type ) ;
sh:targetClass rdfc:FileReaderKT ;
sh:property [
sh:maxCount 1 ;
sh:minCount 1 ;
sh:name "arguments" ;
sh:path rdfc:arguments ;
sh:node [
sh:property [
sh:maxCount 1 ;
sh:minCount 1 ;
sh:name "outgoing" ;
sh:path rdfc:outgoing ;
sh:class rdfc:Writer;
], [
sh:minCount 1 ;
sh:name "paths" ;
sh:path rdfc:paths ;
sh:nodeKind sh:IRIOrLiteral ;
] ;
] ;
].
[]
a sh:NodeShape ;
sh:closed true ;
sh:ignoredProperties ( rdf:type ) ;
sh:targetClass rdfc:FileWriterKT ;
sh:property [
sh:maxCount 1 ;
sh:minCount 1 ;
sh:name "arguments" ;
sh:path rdfc:arguments ;
sh:node [
sh:property [
sh:maxCount 1 ;
sh:minCount 1 ;
sh:name "incoming" ;
sh:path rdfc:incoming ;
sh:class rdfc:Reader;
], [
sh:maxCount 1 ;
sh:minCount 1 ;
sh:name "path" ;
sh:path rdfc:path ;
sh:nodeKind sh:IRIOrLiteral ;
], [
sh:maxCount 1 ;
sh:minCount 0 ;
sh:name "overwrite" ;
sh:path rdfc:overwrite ;
sh:datatype xsd:boolean ;
], [
sh:maxCount 1 ;
sh:minCount 0 ;
sh:name "append" ;
sh:path rdfc:append ;
sh:datatype xsd:boolean ;
] ;
] ;
].