-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbioknet_shacl.ttl
41 lines (40 loc) · 955 Bytes
/
bioknet_shacl.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
@prefix bk: <http://knetminer.org/data/rdf/terms/biokno/> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix dcterms: <http://purl.org/dc/terms/> .
bk:Describeable
sh:property [
sh:path dcterms:identifier;
sh:minCount 1;
sh:severity sh:Warning
],
[
sh:path dcterms:identifier;
sh:maxCount 1;
sh:severity sh:Warning
],
[
sh:path rdfs:label;
sh:minCount 1;
sh:severity sh:Warning
],
[
sh:path rdfs:label;
sh:maxCount 1;
sh:severity sh:Warning;
],
[
sh:path dcterms:description;
sh:minCount 1;
sh:severity sh:Info
],
[
sh:path dcterms:description;
sh:maxCount 1;
sh:severity sh:Warning
]
.