This repository has been archived by the owner on Oct 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into 292/clarify-serialization
- Loading branch information
Showing
3 changed files
with
94 additions
and
102 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -261,9 +261,9 @@ The raw sources for this data package. It `MUST` be an array of Source objects. | |
|
||
##### `contributors` | ||
|
||
The people or organizations who contributed to this Data Package. It `MUST` be an array. Each entry is a Contributor and `MUST` be an `object`. A Contributor `MUST` have at least one property. A Contributor is RECOMMENDED to have `title` property and MAY contain `path`, `email`, `role`, and `organization` properties. An example of the object structure is as follows: | ||
The people or organizations who contributed to this Data Package. It `MUST` be an array. Each entry is a Contributor and `MUST` be an `object`. A Contributor `MUST` have at least one property. A Contributor is RECOMMENDED to have `title` property and MAY contain `givenName`, `familyName`, `path`, `email`, `role`, and `organization` properties. An example of the object structure is as follows: | ||
|
||
```javascript | ||
```json | ||
"contributors": [{ | ||
"title": "Joe Bloggs", | ||
"email": "[email protected]", | ||
|
@@ -272,13 +272,19 @@ The people or organizations who contributed to this Data Package. It `MUST` be a | |
}] | ||
``` | ||
|
||
- `title`: name/title of the contributor (name for person, name/title of organization) | ||
- `title`: name of the contributor. | ||
- `givenName`: name a person has been given, if the contributor is a person. | ||
- `familyName`: familial name that a person inherits, if the contributor is a person. | ||
- `path`: a fully qualified http URL pointing to a relevant location online for the contributor | ||
- `email`: An email address | ||
- `role`: a string describing the role of the contributor. It's `RECOMMENDED` to be one of: `author`, `publisher`, `maintainer`, `wrangler`, and `contributor`. Defaults to `contributor`. | ||
- Note on semantics: use of the "author" property does not imply that that person was the original creator of the data in the data package - merely that they created and/or maintain the data package. It is common for data packages to "package" up data from elsewhere. The original origin of the data can be indicated with the `sources` property - see above. | ||
- `organization`: a string describing the organization this contributor is affiliated to. | ||
|
||
References: | ||
|
||
- [Citation Style Language](https://citeproc-js.readthedocs.io/en/latest/csl-json/markup.html#name-fields) | ||
|
||
##### `keywords` | ||
|
||
An Array of string keywords to assist users searching for the package in catalogs. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters