Collections:
Other Resources:
DOI Content in Crossref UNIXSD XML Format
How to represent DOI content in Crossref UNIXSD XML format?
✍: FYIcenter.com
Crossref UNIXSD XML is an XML schema used by Crossref.org which
is a global DOI Registration Agency serving.
The Crossref UNIXSD XML format is triggered by the "application/vnd.crossref.unixsd+xml" MIME type as shown this HTTP request syntax:
GET https://doi.org/{doi} HTTP/1.1
Accept: application/vnd.crossref.unixsd+xml
Here is an example of how to use the DOI Content Negotiation service to get the Crossref UNIXSD XML format of a given DOI:
fyicenter$ curl -H "Accept: application/vnd.crossref.unixsd+xml" \ 'https://doi.org/10.1126/science.169.3946.635' <html><head><title>Handle Redirect</title></head> <body> <a href="https://api.crossref.org/v1/works/10.1126%2Fscience.169.3946.635/transform"> https://api.crossref.org/v1/works/10.1126%2Fscience.169.3946.635/transform</a> </body></html>
Okay, doi.org is not serving this Content Negotiation request directly. It is redirecting you to api.crossref.org to get the response.
You can add the -L option to let "curl" follow the redirected location. api.crossref.org will return you the DOI content in Crossref UNIXSD XML format.
fyicenter$ curl -LH "Accept: application/vnd.crossref.unixsd+xml" \
'https://doi.org/10.1126/science.169.3946.635'
<crossref_result xmlns="http://www.crossref.org/qrschema/3.0"
version="3.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.crossref.org/qrschema/3.0 http://www.crossref.org/schemas/crossref_query_output3.0.xsd">
<query_result>
<head>
<doi_batch_id>none</doi_batch_id>
</head>
<body>
<query status="resolved">
<doi type="journal_article">10.1126/science.169.3946.635</doi>
<crm-item name="publisher-name" type="string">American Association for the Advancement of Science (AAAS)</crm-item>
<crm-item name="prefix-name" type="string">American Association for the Advancement of Science (AAAS)</crm-item>
<crm-item name="member-id" type="number">221</crm-item>
<crm-item name="citation-id" type="number">23464511</crm-item>
<crm-item name="journal-id" type="number">5530</crm-item>
<crm-item name="deposit-timestamp" type="number">2021102114515200846</crm-item>
<crm-item name="owner-prefix" type="string">10.1126</crm-item>
<crm-item name="last-update" type="date">2021-10-23T15:24:14Z</crm-item>
<crm-item name="created" type="date">2006-10-05T08:56:56Z</crm-item>
<crm-item name="citedby-count" type="number">86</crm-item>
<doi_record>
<crossref xmlns="http://www.crossref.org/xschema/1.1" xsi:schemaLocation="http://www.crossref.org/xschema/1.1 http://doi.crossref.org/schemas/unixref1.1.xsd">
<journal>
<journal_metadata language="en">
<full_title>Science</full_title>
<abbrev_title>Science</abbrev_title>
<issn media_type="print">0036-8075</issn>
<issn media_type="electronic">1095-9203</issn>
</journal_metadata>
<journal_issue>
<publication_date media_type="print">
<month>08</month>
<day>14</day>
<year>1970</year>
</publication_date>
<journal_volume>
<volume>169</volume>
</journal_volume>
<issue>3946</issue>
</journal_issue>
<journal_article publication_type="full_text">
<titles>
<title>The Structure of Ordinary Water</title>
<subtitle>New data and interpretations are yielding new insights into this fascinating substance.</subtitle>
</titles>
<contributors>
<person_name contributor_role="author" sequence="first">
<given_name>Henry S.</given_name>
<surname>Frank</surname>
<affiliation>University of Pittsburgh, Mellon Institute of Carnegie-Mellon University</affiliation>
</person_name>
</contributors>
<publication_date media_type="print">
<month>08</month>
<day>14</day>
<year>1970</year>
</publication_date>
<pages>
<first_page>635</first_page>
<last_page>641</last_page>
</pages>
<publisher_item>
<identifier id_type="doi">10.1126/science.169.3946.635</identifier>
</publisher_item>
<doi_data>
<doi>10.1126/science.169.3946.635</doi>
<resource>https://www.science.org/doi/10.1126/science.169.3946.635</resource>
<collection property="crawler-based">
<item crawler="iParadigms">
<resource>https://syndication.highwire.org/content/doi/10.1126/science.169.3946.635</resource>
</item>
</collection>
</doi_data>
<citation_list>
<citation key="e_1_2_1_1_1">
<unstructured_citation>Essayes of Natural Experiments 1964</unstructured_citation>
</citation>
<citation key="e_1_2_1_2_1">
<journal_title>PHILOSOPHICAL TRANSACTIONS</journal_title>
<first_page>2020</first_page>
<volume>5</volume>
<cYear>1670</cYear>
<unstructured_citation>PHILOSOPHICAL TRANSACTIONS 5: 2020 (1670).</unstructured_citation>
</citation>
<citation key="e_1_2_1_3_1">
<journal_title>Physico-Chemical Processes in Mixed Aqueous Solvents</journal_title>
<first_page>105</first_page>
<cYear>1967</cYear>
<unstructured_citation>Arnett, E. M., Physico-Chemical Processes in Mixed Aqueous Solvents: 105 (1967).</unstructured_citation>
</citation>
<citation key="e_1_2_1_4_1">
<unstructured_citation>Water and Aqueous Solutions: Structure Thermodynamics and Transport Processes 1970</unstructured_citation>
</citation>
<citation key="e_1_2_1_5_1">
<journal_title>JOURNAL OF CHEMICAL PHYSICS</journal_title>
<first_page>515</first_page>
<volume>1</volume>
<cYear>1933</cYear>
<doi provider="crossref">10.1063/1.1749327</doi>
<unstructured_citation>BERNAL, J.D., A theory of water and ionic solution, with particular reference to hydrogen and hydroxyl ions, JOURNAL OF CHEMICAL PHYSICS 1: 515 (1933).</unstructured_citation>
</citation>
...
⇐ DOI Content in Crossref Unixref XML Format
2022-10-06, ∼581🔥, 0💬
Popular Posts:
Paper Summary: Title: How the Mind Hurts and Heals the Body. Author(s): Ray, Oakley Year: 2004 DOI: ...
What is LibKey.io? LibKey.io is a Website developed by Third Iron that allows you to access full tex...
Paper Summary: Title: IEEE Guide for Safety in AC Substation Grounding DOI: 10.1109/IEEESTD.2015.710 ...
Paper Summary: Title: Adult Dismembered Body With Myositis Ossificans: Evidence for Physical Abuse i...
Paper Summary: DOI: 10.1080/17434440.2023.22 42776Received on: 2024-05-28