We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When importing
<rdf:RDF xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:dct="http://purl.org/dc/terms/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="https://doi.org/10.1002/2016WR020175"> <dc:identifier>10.1002/eqe.3286</dc:identifier> <dct:references>http://doi.org/10.1002/eqe.3286</dct:references> <dc:type>document</dc:type> </rdf:Description> </rdf:RDF>
vs
<rdf:RDF xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:dct="http://purl.org/dc/terms/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="https://doi.org/10.1002/2016WR020175"> <dc:identifier>10.1002/2016WR020175</dc:identifier> <dct:references rdf:resource="http://doi.org/10.1002/2016WR020175"/> <dc:type>document</dc:type> </rdf:Description> </rdf:RDF>
the first works fine, the second returns an empty reference element, can we support both the second may be the optimal choice considering https://www.dublincore.org/specifications/dublin-core/dcmi-terms/terms/references/
The text was updated successfully, but these errors were encountered:
This Issue has been inactive for 90 days. In order to manage maintenance burden, it will be automatically closed in 7 days.
Sorry, something went wrong.
Keep open, working on it
No branches or pull requests
When importing
vs
the first works fine, the second returns an empty reference element, can we support both
the second may be the optimal choice considering https://www.dublincore.org/specifications/dublin-core/dcmi-terms/terms/references/
The text was updated successfully, but these errors were encountered: