-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathget-medicine-domainALL.n3
More file actions
67 lines (60 loc) · 1.58 KB
/
get-medicine-domainALL.n3
File metadata and controls
67 lines (60 loc) · 1.58 KB
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
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix http: <http://www.w3.org/2011/http#> .
@prefix httpm: <http://www.w3.org/2011/http-methods#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix dbpedia: <http://dbpedia.org/resource/> .
@prefix dbpedia-owl: <http://dbpedia.org/ontology/> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
{
[] http:mthd httpm:GET ;
http:requestURI <http://dbpedia.org/resource/Category:Health> .
}
{
?a skos:broader <http://dbpedia.org/resource/Category:Health> .
} => {
[] http:mthd httpm:GET ;
http:requestURI ?a .
} .
{
?a skos:broader <http://dbpedia.org/resource/Category:Health> .
?b skos:broader ?a .
} => {
[] http:mthd httpm:GET ;
http:requestURI ?b .
} .
{
?a skos:broader <http://dbpedia.org/resource/Category:Health> .
?b skos:broader ?a .
?c skos:broader ?b .
} => {
[] http:mthd httpm:GET ;
http:requestURI ?c .
} .
{
?a skos:broader <http://dbpedia.org/resource/Category:Health> .
?b skos:broader ?a .
?a skos:broader ?b .
?d skos:broader ?c .
} => {
[] http:mthd httpm:GET ;
http:requestURI ?d .
} .
{
?a skos:broader <http://dbpedia.org/resource/Category:Health> .
?b skos:broader ?a .
?a skos:broader ?b .
?d skos:broader ?c .
?e skos:broader ?d .
} => {
[] http:mthd httpm:GET ;
http:requestURI ?e .
} .
{
?x dcterms:subject ?y .
} => {
[] http:mthd httpm:GET ;
http:requestURI ?x.
} .