-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathget-medicine-domain1.n3
More file actions
29 lines (26 loc) · 851 Bytes
/
get-medicine-domain1.n3
File metadata and controls
29 lines (26 loc) · 851 Bytes
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
@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 dbo: <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> .
}
{
?x skos:broader <http://dbpedia.org/resource/Category:Health> .
} => {
[] http:mthd httpm:GET ;
http:requestURI ?x .
} .
{
?x dcterms:subject ?y .
} => {
[] http:mthd httpm:GET ;
http:requestURI ?x .
} .