relaton / relaton-nist

NistBib: retrieve NIST Standards for bibliographic use using the BibliographicItem model
https://www.metanorma.com
MIT License
2 stars 1 forks source link

(URGENT) NIST Relaton data mistakenly showing source `link` with `type: doi` #69

Closed ronaldtse closed 2 years ago

ronaldtse commented 2 years ago

On BibXML Service the link is mistakenly labeled as doi.

https://dev.bibxml.org/get-one/by-docid/?docid=NIST+CSWP+02042022-5&doctype=NIST

Screenshot 2022-04-06 at 9 24 50 AM

This is because in the Relaton source data, the link is marked with type doi:

https://github.com/ietf-ribose/relaton-data-nist/blob/7725aed2b135149ed242b97bc0bff3258968a494/data/NIST_CSWP_02042022-5.yaml#L18-L20

link:
- content: https://nvlpubs.nist.gov/nistpubs/CSWP/NIST.CSWP.02042022-5.pdf
  type: doi
  1. This is NOT a DOI link. Please remove the type: doi from this link.
  2. Please add a DOI link from the DOI data, i.e. https://github.com/ietf-ribose/relaton-data-nist/blob/7725aed2b135149ed242b97bc0bff3258968a494/data/NIST_CSWP_02042022-5.yaml#L26-L27
    - id: 10.6028/NIST.CSWP.02042022-5
    type: DOI

    The resulting link should be:

    https://doi.org/10.6028/NIST.CSWP.02042022-5

    (Even though it does not resolve at NIST right now, this is the correct link. The problem is at the NIST library end.)

ronaldtse commented 2 years ago

Well, I just found out that NIST does put that link under <doi_data> element in the source:

<doi_data>
  <doi>10.6028/NIST.CSWP.01142020</doi>
  <resource>https://nvlpubs.nist.gov/nistpubs/CSWP/NIST.CSWP.01142020.pdf</resource>
</doi_data>

And that is for all NIST documents. So @andrew2net can we just adjust so that the type of such link is not doi (since it is misleading)? Thanks.