bioRxiv · Schema

PublishedPreprintMetadata

Metadata for a preprint that has been published in a peer-reviewed journal

BiologyPreprintsResearchOpen AccessLife SciencesScientific Publications

Properties

Name Type Description
biorxiv_doi string DOI of the bioRxiv or medRxiv preprint
published_doi string DOI of the corresponding published journal article
preprint_title string Title of the preprint
preprint_authors string Semicolon-separated list of authors
preprint_author_corresponding string Corresponding author name
preprint_author_corresponding_institution string Institution of the corresponding author
preprint_category string Subject category of the preprint
preprint_date string Date the preprint was posted
preprint_doi string DOI of the preprint (same as biorxiv_doi)
published_date string Date the article was published in a journal
published_citation_count integer Number of citations received by the published article
preprint_platform string Platform where the preprint was posted
View JSON Schema on GitHub

JSON Schema

published-preprint.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/biorxiv/main/json-schema/published-preprint.json",
  "title": "PublishedPreprintMetadata",
  "description": "Metadata for a preprint that has been published in a peer-reviewed journal",
  "type": "object",
  "properties": {
    "biorxiv_doi": {
      "type": "string",
      "description": "DOI of the bioRxiv or medRxiv preprint",
      "pattern": "^10\\.\\d{4,}/.*$",
      "example": "10.1101/339747"
    },
    "published_doi": {
      "type": "string",
      "description": "DOI of the corresponding published journal article",
      "pattern": "^10\\.\\d{4,}/.*$",
      "example": "10.1016/j.cell.2021.05.001"
    },
    "preprint_title": {
      "type": "string",
      "description": "Title of the preprint"
    },
    "preprint_authors": {
      "type": "string",
      "description": "Semicolon-separated list of authors"
    },
    "preprint_author_corresponding": {
      "type": "string",
      "description": "Corresponding author name"
    },
    "preprint_author_corresponding_institution": {
      "type": "string",
      "description": "Institution of the corresponding author"
    },
    "preprint_category": {
      "type": "string",
      "description": "Subject category of the preprint"
    },
    "preprint_date": {
      "type": "string",
      "format": "date",
      "description": "Date the preprint was posted"
    },
    "preprint_doi": {
      "type": "string",
      "description": "DOI of the preprint (same as biorxiv_doi)",
      "pattern": "^10\\.\\d{4,}/.*$"
    },
    "published_date": {
      "type": "string",
      "format": "date",
      "description": "Date the article was published in a journal"
    },
    "published_citation_count": {
      "type": "integer",
      "description": "Number of citations received by the published article",
      "minimum": 0
    },
    "preprint_platform": {
      "type": "string",
      "description": "Platform where the preprint was posted",
      "enum": ["bioRxiv", "medRxiv"]
    }
  },
  "required": ["biorxiv_doi", "published_doi", "preprint_title", "preprint_date", "published_date"]
}