deno.land / x / shacl_to_type@v0.0.9 / shapes / Philosopher.ttl

Philosopher.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
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .@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#> .@prefix dbp: <http://dbpedia.org/property/> .@prefix dbo: <http://dbpedia.org/ontology/> .
dbp:Philosopher a sh:NodeShape ; sh:targetClass <http://dbpedia.org/ontology/Philosopher> ; sh:property [ sh:path rdfs:label ; sh:datatype rdf:langString ; sh:minCount 1 ; sh:maxCount 1 ; ] ; sh:property [ sh:path rdf:type ; sh:minCount 1 ; ] ; sh:property [ sh:path dbo:wikiPageID ; sh:minCount 1 ; sh:maxCount 1 ; sh:datatype xsd:integer ; ] ;
sh:property [ sh:path dbp:alt ; sh:datatype rdf:langString ; ] ; sh:property [ sh:path dbp:birthPlace ; sh:node dbo:Location ; ] ; sh:property [ sh:path dbp:birthDate ; sh:datatype xsd:date; sh:minCount 1 ; sh:maxCount 1 ; ] .dbo:Location a sh:NodeShape ; sh:property [ sh:path rdf:type ; sh:minCount 1 ; ] ; sh:targetClass <http://dbpedia.org/ontology/Location> ; sh:property [ sh:path dbp:name ; sh:datatype rdf:langString ; sh:minCount 1 ; sh:maxCount 1 ; ] .
shacl_to_type

Version Info

Tagged at
a year ago