Persons

The Person entity represents an individual who is involved in the creation, publication, and dissemination of Research products. A Person can be an author, a reviewer, an editor, a publisher, a researcher, or any other stakeholder involved in the scholarly communication process.

Properties

This section describes the metadata fields for the Person.

Local identifier

Description:

Unique code identifiying the Person in the SKG (if any, otherwise “stateless identifier”).

Type:

String

Use:

Mandatory (1)

1 "local_identifier": "the_id"

Identifiers

Description:

Identifier for the entity outside of the SKG (e.g., ORCID).

Type:

List

Use:

Recommended (1)

Scheme

Description:

The scheme for the external identifier.

Type:

String

Use:

Mandatory (1)

Value

Description:

The external identifier.

Type:

String

Use:

Mandatory (1)

1 "identifiers": [
2     {
3         "scheme": "orcid"
4         "value": "000-0002-5193-7851"
5     }
6 ]

Given name

Description:

The given name of a Person.

Type:

String

Use:

Mandatory (1), unless an agent is specified

1 "given_name": "John"

Family name

Description:

The family name of a Person.

Type:

String

Use:

Mandatory (1), unless an agent is specified.

1 "family_name": "Doe"

Agent

Description:

The name of an agent (e.g., a collactive name or a legal entity).

Type:

String

Use:

Optional (0..1), unless given name and family name are not present.

1 "agent": "Data curation team"

Affiliations

Description:

A list of all the affiliations of a Person (à la ORCID).

Type:

List

Use:

Optional (0..1)

Organisation

Description:

The identifier of the Organisation a Person is affiliated with.

Type:

String

Use:

Mandatory (1)

Start date

Description:

The start date of the affiliation with the Organisation.

Type:

String (ISO 8601 date string)

Use:

Recommended (1)

End date

Description:

The end day (if any) of the affiliation with the Organisation.

Type:

String (ISO 8601 date string)

Use:

Optional (1)

 1 "affiliations": [
 2     {
 3         "organisation": "org2",
 4         "start_date": "2015-01-01",
 5         "end_date": "2017-01-01"
 6     },
 7     {
 8         "organisation": "org3",
 9         "start_date": "2017-01-01",
10         "end_date": "2019-01-01"
11     }
12 ]