Skip to content

Instantly share code, notes, and snippets.

@adam3smith
Created July 21, 2011 22:10
Show Gist options
  • Save adam3smith/1098358 to your computer and use it in GitHub Desktop.
Save adam3smith/1098358 to your computer and use it in GitHub Desktop.
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:z="http://www.zotero.org/namespaces/export#"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:vcard="http://nwalsh.com/rdf/vCard#"
xmlns:foaf="http://xmlns.com/foaf/0.1/"
xmlns:bib="http://purl.org/net/biblio#">
<bib:Book rdf:about="urn:isbn:123456">
<z:itemType>book</z:itemType>
<dc:publisher>
<foaf:Organization>
<vcard:adr>
<vcard:Address>
<vcard:locality>Location</vcard:locality>
</vcard:Address>
</vcard:adr>
<foaf:name>Test Publisher</foaf:name>
</foaf:Organization>
</dc:publisher>
<bib:authors>
<rdf:Seq>
<rdf:li>
<foaf:Person>
<foaf:surname>Author1</foaf:surname>
<foaf:givenname>One</foaf:givenname>
</foaf:Person>
</rdf:li>
</rdf:Seq>
</bib:authors>
<z:translators>
<rdf:Seq>
<rdf:li>
<foaf:Person>
<foaf:surname>Translator</foaf:surname>
<foaf:givenname>Two</foaf:givenname>
</foaf:Person>
</rdf:li>
</rdf:Seq>
</z:translators>
<dc:title>Book with Translator</dc:title>
<dc:date>2009</dc:date>
<z:numPages>123</z:numPages>
<dc:identifier>ISBN 123456</dc:identifier>
</bib:Book>
</rdf:RDF>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment