-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.ttl
73 lines (70 loc) · 1.91 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
@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 "A SHACL Validator processor, 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:SHACLValidatorKT .
rdfc:SHACLValidatorKT
a rdfc:Processor ;
rdfc:target rdfc:JVMRunner ;
rdfc:entrypoint <./build/libs/shacl-validator-kt-0.0.1.jar> ;
rdfc:metadata "class: technology.idlab.rdfc.validator.SHACLValidator".
[]
a sh:NodeShape ;
sh:closed true ;
sh:ignoredProperties ( rdf:type ) ;
sh:targetClass rdfc:SHACLValidatorKT ;
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 "shapes" ;
sh:path rdfc:shapes ;
sh:nodeKind sh:IRIOrLiteral ;
], [
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 "outgoing" ;
sh:path rdfc:outgoing ;
sh:class rdfc:Writer ;
], [
sh:maxCount 1 ;
sh:minCount 0 ;
sh:name "report" ;
sh:path rdfc:report ;
sh:class rdfc:Writer ;
], [
sh:maxCount 1 ;
sh:minCount 0 ;
sh:name "validation_is_fatal" ;
sh:path rdfc:fatal ;
sh:datatype xsd:boolean ;
], [
sh:maxCount 1 ;
sh:minCount 0 ;
sh:name "mime" ;
sh:path rdfc:mime ;
sh:datatype xsd:string ;
] ;
] ;
].