1use super::LocalPrefix;
2
3pub const LOCAL_PREFIXES: &'static [LocalPrefix] = &[
4 LocalPrefix {
5 location: "http://xmlns.com/foaf/0.1/",
6 content: include_str!("../prefixes/foaf.ttl"),
7 name: "foaf",
8 title: "Friend of a Friend vocabulary",
9 },
10 LocalPrefix {
11 location: "https://w3id.org/tree#",
12 content: include_str!("../prefixes/tree.ttl"),
13 name: "tree",
14 title: "TREE",
15 },
16 LocalPrefix {
17 location: "http://w3id.org/rml/core#",
18 content: include_str!("../prefixes/rml.ttl"),
19 name: "rml",
20 title: "RML: Generic Mapping Language for RDF",
21 },
22 LocalPrefix {
23 location: "http://w3id.org/rml/cc/",
24 content: include_str!("../prefixes/rml-cc.ttl"),
25 name: "rml-cc",
26 title: "RML-Containers",
27 },
28 LocalPrefix {
29 location: "http://w3id.org/rml/fnml/",
30 content: include_str!("../prefixes/rml-fnml.ttl"),
31 name: "rml-fnml",
32 title: "RML-FNML",
33 },
34 LocalPrefix {
35 location: "http://w3id.org/rml/io/",
36 content: include_str!("../prefixes/rml-io.ttl"),
37 name: "rml-io",
38 title: "RML-IO: Source and Target",
39 },
40 LocalPrefix {
41 location: "http://w3id.org/rml/star/",
42 content: include_str!("../prefixes/rml-star.ttl"),
43 name: "rml-star",
44 title: "RML-star",
45 },
46 LocalPrefix {
47 location: "http://www.w3.org/2002/07/owl#",
48 content: include_str!("../prefixes/owl.ttl"),
49 name: "owl",
50 title: "The OWL 2 Schema vocabulary",
51 },
52 LocalPrefix {
53 location: "http://www.w3.org/2000/01/rdf-schema#",
54 content: include_str!("../prefixes/rdfs.ttl"),
55 name: "rdfs",
56 title: "The RDF Schema vocabulary",
57 },
58 LocalPrefix {
59 location: "http://www.w3.org/1999/02/22-rdf-syntax-ns#",
60 content: include_str!("../prefixes/rdf.ttl"),
61 name: "rdf",
62 title: "The RDF Concepts Vocabulary",
63 },
64];