-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathexample.rdf
29 lines (29 loc) · 1.18 KB
/
example.rdf
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
<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF
xmlns:ns1="http://schema.org/Person#"
xmlns:ns2="http://schema.org/PostalAddress#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
>
<rdf:Description rdf:about="http://www.xyz.edu/~jane">
<ns1:image rdf:resource="janedoe.jpg"/>
<ns1:jobTitle>Professor</ns1:jobTitle>
<ns1:email rdf:resource="mailto:[email protected]"/>
<ns1:address rdf:nodeID="cAWDTLlT2"/>
<ns1:url rdf:resource="http://www.janedoe.com"/>
<ns1:telephone>(425) 123-4567</ns1:telephone>
<rdf:type rdf:resource="http://schema.org/Person"/>
<ns1:colleagues rdf:resource="http://www.xyz.edu/students/alicejones.html"/>
<ns1:colleagues rdf:resource="http://www.xyz.edu/students/bobsmith.html"/>
<ns1:name>Jane Doe</ns1:name>
</rdf:Description>
<rdf:Description rdf:nodeID="cAWDTLlT2">
<ns2:addressRegion>WA</ns2:addressRegion>
<ns2:postalCode>98052</ns2:postalCode>
<ns2:streetAddress>
20341 Whitworth Institute
405 N. Whitworth
</ns2:streetAddress>
<ns2:addressLocality>Seattle</ns2:addressLocality>
<rdf:type rdf:resource="http://schema.org/PostalAddress"/>
</rdf:Description>
</rdf:RDF>