You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Added new fields to licenses: rightsIdentifier, rightsIdentifierScheme, schemeUri, languageCode
3
+
- Updated DataCite metadata export to include rightsIdentifier, rightsIdentifierScheme, and schemeUri consistent with the DataCite 4.5 schema and examples
4
+
- Enhanced metadata exports to include all new license fields
5
+
- Existing licenses from the example set included with Dataverse will be automatically updated with new fields
6
+
- Existing API calls support the new optional fields
7
+
8
+
Setup: For existing published datasets, the additional license metadata will not be available from DataCite or in metadata exports until the dataset is republished or
9
+
- the /api/admin/metadata/{id}/reExportDataset is run for the dataset
10
+
- the api/datasets/{id}/modifyRegistrationMetadata API is run for the dataset,
11
+
or the global version of these api calls (/api/admin/metadata/reExportAll, /api/datasets/modifyRegistrationPIDMetadataAll) are used.
"termsOfAccess": "You need to request for access.",
1529
1539
"fileAccessRequest": true,
@@ -6929,6 +6939,10 @@ View the details of the standard license with the database ID specified in ``$ID
6929
6939
6930
6940
Superusers can add a new license by posting a JSON file adapted from this example :download:`add-license.json <../_static/api/add-license.json>`. The ``name`` and ``uri`` of the new license must be unique. Sort order field is mandatory. If you are interested in adding a Creative Commons license, you are encouarged to use the JSON files under :ref:`adding-creative-commons-licenses`:
6931
6941
6942
+
Licenses must have a "name" and "uri" and may have the following optional fields: "shortDescription", "iconUri", "rightsIdentifier", "rightsIdentifierScheme", "schemeUri", "languageCode", "active", "sortOrder".
6943
+
The "name" and "uri" are used to display the license in the user interface, with "shortDescription" and "iconUri" being used to enhance the display if available.
6944
+
The "rightsIdentifier", "rightsIdentifierScheme", and "schemeUri" should be added if the license is available from https://spdx.org ."languageCode" should be sent if the language is not in English ("en"). "active" is a boolean indicating whether the license should be shown to users as an option. "sortOrder" is a numeric value - licenses are shown in the relative numeric order of this value.
0 commit comments