Created
August 10, 2020 14:16
-
-
Save HughP/08ba02eed7731659e743569828818ab0 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<rdf:RDF | |
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | |
xmlns:z="http://www.zotero.org/namespaces/export#" | |
xmlns:bib="http://purl.org/net/biblio#" | |
xmlns:foaf="http://xmlns.com/foaf/0.1/" | |
xmlns:dc="http://purl.org/dc/elements/1.1/" | |
xmlns:dcterms="http://purl.org/dc/terms/"> | |
<bib:Letter rdf:about="https://www.example.com"> | |
<z:itemType>letter</z:itemType> | |
<bib:authors> | |
<rdf:Seq> | |
<rdf:li> | |
<foaf:Person> | |
<foaf:surname>Author Last Name</foaf:surname> | |
<foaf:givenName>First Name</foaf:givenName> | |
</foaf:Person> | |
</rdf:li> | |
<rdf:li> | |
<foaf:Person> | |
<foaf:surname>Corporate Name</foaf:surname> | |
</foaf:Person> | |
</rdf:li> | |
</rdf:Seq> | |
</bib:authors> | |
<z:recipients> | |
<rdf:Seq> | |
<rdf:li> | |
<foaf:Person> | |
<foaf:surname>Recipient Last Name</foaf:surname> | |
<foaf:givenName>First name</foaf:givenName> | |
</foaf:Person> | |
</rdf:li> | |
</rdf:Seq> | |
</z:recipients> | |
<dc:subject>BCP47_no-NO-x-stavanger</dc:subject> | |
<dc:subject>Tag 1</dc:subject> | |
<dc:subject>Tag 2</dc:subject> | |
<dc:subject>ISO-639-3_und</dc:subject> | |
<dc:title>This is a Letter</dc:title> | |
<dcterms:abstract>A letter sent between persons or organizations. This type could also be used for other forms of personal communication.</dcterms:abstract> | |
<dc:date>1900</dc:date> | |
<z:language>en</z:language> | |
<z:shortTitle>Short Title</z:shortTitle> | |
<z:archive>Archive</z:archive> | |
<dc:coverage>Archive ID or Location in Archive</dc:coverage> | |
<z:libraryCatalog>Library Catalogue</z:libraryCatalog> | |
<dc:subject> | |
<dcterms:LCC><rdf:value>Call Number</rdf:value></dcterms:LCC> | |
</dc:subject> | |
<dc:identifier> | |
<dcterms:URI> | |
<rdf:value>https://www.example.com</rdf:value> | |
</dcterms:URI> | |
</dc:identifier> | |
<dcterms:dateSubmitted>2020-08-08</dcterms:dateSubmitted> | |
<dc:rights>CC-BY</dc:rights> | |
<dc:description>PMID: PMID-number | |
PMCID: PMCID-number | |
DOI: 10.20/some.doi</dc:description> | |
<z:type>Private correspondence, or some other type</z:type> | |
</bib:Letter> | |
</rdf:RDF> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment