Venues

A Venue is an entity that models a publishing “gateway” used by Person to make their Research products available to others.

Example:

Episciences is an overlay platform supporting the management of open-access journals on top of the Open Access repository HAL. In this context, episciences.org is a publishing Venue (journal, open access, open peer review), while HAL is a Data source. Articles published via episciences.org will be therefore linked to the respective journal (publishing Venue) and the data source HAL. However, HAL is also a publishing Venue for researchers that are directly uploading their Research product. More specifically, a publishing Venue with peer-review and some support for metadata curation. In this case, a Research product will be linked to HAL both as a publishing Venue and as a Data source.

Note

Each Research product must be associated with its publishing Venue and its Data source.

This section is to describe the metadata fields for the Venue.

local_identifier

String (mandatory): Unique code identifiying the Venue in the SKG (if any, otherwise “stateless identifier”).

1 "local_identifier": "123_local_id"

identifiers

List (recommended): A list of objects representing external identifiers for the entity. Each object is structured as follows.

  • scheme String (mandatory): The scheme for the external identifier. It can be one of the following

    • issn

    • eissn

    • lissn

    • isbn

    • opendoar

    • re3data.org

    • fairsharing

    • doi

    • handle

  • value String (mandatory): The external identifier.

 1 "identifiers": [
 2     {
 3         "scheme": "issn"
 4         "value": "0302-9743"
 5     },
 6     {
 7         "scheme": "isbn"
 8         "value": "978-3-031-25049-1"
 9     }
10 ]

name

String (mandatory): The name of the Venue.

1 "name": "Lecture Notes in Computer Science"

acronym

String (recommended): Acronym used by a Venue.

1 "acronym": "JASIST"

type

String (mandatory): The type of the Venue. The String follows the vocabulary below

Controlled vocabulary for different types of venue and its mapping towards OpenCitations

SKG-IF

OpenCitations

repository

Repository, Scientific database

journal

Journal issue, Journal volume, Journal

conference

Proceedings series, Proceedings

book

Book, Book part, Book section, Book series, Book set, Edited book, Reference book, Monograph

other

Report series, Standard series, Archival document

unknown

1 "type": "repository"

publisher

String (optional): The name of the publisher (for journals, books, conferences).

1 "publisher": "Springer Nature"

series

String (optional): The name of the conference or book series.

1 "series": "Lecture Notes in Computer Science (LNCS)"

is_full_oa

Boolean (optional): True if the Venue contains only open access products (to the best of knowledge, at the time of expert).

1 "is_currently_full_oa": True

creation_date

String (recommended): The date of creation of the Venue expressed as ISO 8601.

1 "creation_date": "2019-09-13"

contributions

List (optional) : A list of all the Persons that contributed to the Venue. Each element of the list is structured as follows:

  • person String (mandatory): The id of a Persons.

  • roles List (mandatory): The roles of the Persons contributing to the Venue.

1"contributions": [
2     {
3         "person": "person_3",
4         "roles": ["editor"]
5     }
6]