Skip to content
New issue

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

references: remove deposit page warning + update list #710

Merged
merged 1 commit into from
Oct 11, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
66 changes: 40 additions & 26 deletions docs/reference/metadata.md
Original file line number Diff line number Diff line change
Expand Up @@ -715,13 +715,39 @@ Subfields:
| Field | Cardinality | Description |
|:--------------:|:-----------:|:------------------------------|
| ``identifier`` | (1) | identifier value |
| ``scheme`` | (1, CV) | The scheme of the identifier |
| ``scheme`` | (1, CV) | The scheme of the identifier. See below. |


#### Identifier schemes

The default valid schemes are listed below. They are defined in [invenio-rdm-records](https://github.com/inveniosoftware/invenio-rdm-records/blob/master/invenio_rdm_records/config.py) and configurable via `RDM_RECORDS_IDENTIFIERS_SCHEMES`.

| Scheme | Label |
| :------------------: | :----------------: |
| ``ark`` | ARK |
| ``arxiv`` | arXiv |
| ``ads`` | Bibcode |
| ``crossreffunderid`` | Crossref Funder ID |
| ``doi`` | DOI |
| ``ean13`` | EAN13 |
| ``eissn`` | EISSN |
| ``grid`` | GRID |
| ``handle`` | Handle |
| ``igsn`` | IGSN |
| ``isbn`` | ISBN |
| ``isni`` | ISNI |
| ``issn`` | ISSN |
| ``istc`` | ISTC |
| ``lissn`` | LISSN |
| ``lsid`` | LSID |
| ``pmid`` | PMID |
| ``purl`` | PURL |
| ``upc`` | UPC |
| ``url`` | URL |
| ``urn`` | URN |
| ``w3id`` | W3ID |
| ``other`` | Other |

Supported identifier schemes:

ARK, arXiv, Bibcode, DOI, EAN13, EISSN, Handle, IGSN, ISBN, ISSN, ISTC, LISSN, LSID, PubMed ID, PURL, UPC, URL, URN, W3ID. See `RDM_RECORDS_IDENTIFIERS_SCHEMES` in [invenio-rdm-records](https://github.com/inveniosoftware/invenio-rdm-records/blob/master/invenio_rdm_records/config.py).

Note that those are passed lowercased e.g., arXiv is ``arxiv``.

Example:

Expand All @@ -744,9 +770,9 @@ does not support the subfields *12.c relatedMetadataScheme*, *12.d schemeURI* an
Subfields:

| Field | Cardinality | Description |
|:-----------------:|:-----------:|:--------------------------------------------------------------------------------------------------------------|
| :---------------: | :---------: | :------------------------------------------------------------------------------------------------------------ |
| ``identifier`` | (1, CV) | A global unique persistent identifier for a related resource. |
| ``scheme`` | (1, CV) | The scheme of the identifier. |
| ``scheme`` | (1, CV) | The scheme of the identifier. See [identifier schemes](#identifier-schemes). |
| ``relation_type`` | (1) | The relation of the record to this related resource. |
| ``resource_type`` | (0-1) | The resource type of the related resource. Can be different from the [Resource type](#resource-type-1) field. |

Expand Down Expand Up @@ -967,27 +993,15 @@ Example:

### References (0-n)

!!! warning "Not part of the deposit page yet."
Although available via the API, this field may see changes when added to the deposit page.

A list of reference strings
A list of reference strings.

Subfields:

| Field | Cardinality | Description |
|:--------------:|:-----------:|:-------------------------------------|
| ``reference`` | (1) | free text, the full reference string |
| ``scheme`` | (0-1) | the scheme of the identifier. |
| ``identifier`` | (0-1) | the identifier if known. |

Supported schemes:

- CrossRef Funder ID
- GRID
- ISNI
- Other

Note that those are passed lowercased with spaces removed e.g., CrossRef Funder ID is ``crossreffunderid``.
| Field | Cardinality | Description |
| :------------: | :---------: | :--------------------------------------------------------------------------- |
| ``reference`` | (1) | The full reference string. |
| ``scheme`` | (0-1, CV) | The scheme of the identifier. See [identifier schemes](#identifier-schemes). |
| ``identifier`` | (0-1) | The identifier if known. |

Example:

Expand Down