-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnamespaces.pl
More file actions
24 lines (16 loc) · 807 Bytes
/
namespaces.pl
File metadata and controls
24 lines (16 loc) · 807 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
%:- module(namespaces,[]).
/**
* Some common namespaces GNARQL might need
*/
:- use_module(library('semweb/rdf_db')).
:- rdf_register_ns(mo,'http://purl.org/ontology/mo/').
:- rdf_register_ns(dc,'http://purl.org/dc/elements/1.1/').
:- rdf_register_ns(foaf,'http://xmlns.com/foaf/0.1/').
:- rdf_register_ns(xsd,'http://www.w3.org/2001/XMLSchema#').
:- rdf_register_ns(time,'http://www.w3.org/2006/time#').
:- rdf_register_ns(tl,'http://purl.org/NET/c4dm/timeline.owl#').
:- rdf_register_ns(event,'http://purl.org/NET/c4dm/event.owl#').
:- rdf_register_ns(tags,'http://www.holygoat.co.uk/owl/redwood/0.1/tags/').
%Just for ClioPatria to not give errors:
:- rdf_register_ns(rijks,'http://www.chip-project.org/Rijksmuseum#').
:- rdf_register_ns(glink,'http://www.multimedian.nl/projects/n9c/glink#').