1
+ <?xml version =" 1.0" ?>
2
+
3
+ <rdf : RDF
4
+ xmlns:rdf =" http://www.w3.org/1999/02/22-rdf-syntax-ns#"
5
+ xmlns:rdfs =" http://www.w3.org/2000/01/rdf-schema#"
6
+ xmlns:owl =" http://www.w3.org/2002/07/owl#"
7
+ xmlns:dc =" http://purl.org/dc/elements/1.1/"
8
+ xmlns:dct =" http://purl.org/dc/terms/"
9
+ xmlns:xsd =" http://www.w3.org/2001/XMLSchema#"
10
+ xmlns:foaf =" http://xmlns.com/foaf/0.1/"
11
+ xmlns:ex =" http://example.com/" >
12
+
13
+ <rdf : Description rdf : about =" http://example.com/aReallyGreatBook" >
14
+ <dc : title >A Really Great Book</dc : title >
15
+ <dc : publisher >Examples-R-Us</dc : publisher >
16
+ <dc : creator >
17
+ <rdf : Description >
18
+ <rdf : type rdf : resource =" http://xmlns.com/foaf/0.1/Person" />
19
+ <foaf : name >John Doe</foaf : name >
20
+ <foaf : mbox >john@example.com</foaf : mbox >
21
+ <foaf : img >
22
+ <rdf : Description rdf : about =" http://example.com/john.jpg" >
23
+ <rdf : type rdf : resource =" http://xmlns.com/foaf/0.1/Image" />
24
+ <dc : format >image/jpeg</dc : format >
25
+ <dc : extent >1234</dc : extent >
26
+ </rdf : Description >
27
+ </foaf : img >
28
+ <foaf : phone rdf : resource =" tel:+1-999-555-1234" />
29
+ </rdf : Description >
30
+ </dc : creator >
31
+ <dc : contributor >
32
+ <rdf : Description >
33
+ <rdf : type rdf : resource =" http://xmlns.com/foaf/0.1/Person" />
34
+ <foaf : name >Jane Doe</foaf : name >
35
+ </rdf : Description >
36
+ </dc : contributor >
37
+ <dc : language >en</dc : language >
38
+ <dc : format >application/pdf</dc : format >
39
+ <dc : rights >Copyright (C) 2004 Examples-R-Us. All rights reserved.</dc : rights >
40
+ <dct : issued rdf : datatype =" http://www.w3.org/2001/XMLSchema#date" >2004-01-19</dct : issued >
41
+ <rdfs : seeAlso rdf : resource =" http://example.com/anotherGreatBook" />
42
+ </rdf : Description >
43
+
44
+ <rdf : Statement >
45
+ <rdf : subject rdf : resource =" http://example.com/aReallyGreatBook" />
46
+ <rdf : predicate rdf : resource =" http://purl.org/dc/elements/1.1/format" />
47
+ <rdf : object >application/pdf</rdf : object >
48
+ <rdfs : isDefinedBy rdf : resource =" http://example.com/book-formats.rdf" />
49
+ </rdf : Statement >
50
+
51
+ <rdf : Statement >
52
+ <rdf : subject rdf : resource =" http://xmlns.com/foaf/0.1/Image" />
53
+ <rdf : predicate rdf : resource =" http://purl.org/dc/elements/1.1/format" />
54
+ <rdf : object >image/jpeg</rdf : object >
55
+ <rdfs : isDefinedBy rdf : resource =" http://example.com/image-formats.rdf" />
56
+ </rdf : Statement >
57
+
58
+ <rdf : Description rdf : about =" http://example.com/anotherGreatBook" >
59
+ <dc : title >Another Great Book</dc : title >
60
+ <dc : publisher >Examples-R-Us</dc : publisher >
61
+ <dc : creator >June Doe (june@example.com)</dc : creator >
62
+ <dc : format >application/pdf</dc : format >
63
+ <dc : language >en</dc : language >
64
+ <dc : rights >Copyright (C) 2004 Examples-R-Us. All rights reserved.</dc : rights >
65
+ <dct : issued rdf : datatype =" http://www.w3.org/2001/XMLSchema#date" >2004-05-03</dct : issued >
66
+ <rdfs : seeAlso rdf : resource =" http://example.com/aReallyGreatBook" />
67
+ </rdf : Description >
68
+
69
+ <rdf : Description rdf : about =" http://example.com/aBookCritic" >
70
+ <ex : likes rdf : resource =" http://example.com/aReallyGreatBook" />
71
+ <ex : dislikes rdf : resource =" http://example.com/anotherGreatBook" />
72
+ </rdf : Description >
73
+
74
+ <rdf : Property rdf : about =" http://xmlns.com/foaf/0.1/mbox" >
75
+ <rdf : type rdf : resource =" http://www.w3.org/2002/07/owl#InverseFunctionalProperty" />
76
+ </rdf : Property >
77
+
78
+ </rdf : RDF >
0 commit comments