Web of Science APIs · JSON Structure

Web Of Science Document Identifiers Structure

Document identifiers (DOI, PMID, etc.)

Type: object Properties: 4
ResearchAcademicBibliometricsCitationsScienceScholarly

Web Of Science Document Identifiers Structure is a JSON Structure definition published by Web of Science APIs, describing 4 properties. It conforms to the https://json-structure.org/meta/extended/v0/# meta-schema.

Properties

doi pmid issn eissn

Meta-schema: https://json-structure.org/meta/extended/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/extended/v0/#",
  "$id": "https://api-evangelist.github.io/web-of-science-apis/json-structure/web-of-science-document-identifiers-structure.json",
  "title": "DocumentIdentifiers",
  "description": "Document identifiers (DOI, PMID, etc.)",
  "type": "object",
  "properties": {
    "doi": {
      "type": "str",
      "description": "Digital Object Identifier"
    },
    "pmid": {
      "type": "str",
      "description": "PubMed identifier"
    },
    "issn": {
      "type": "str",
      "description": "ISSN of the source journal"
    },
    "eissn": {
      "type": "str",
      "description": "Electronic ISSN of the source journal"
    }
  }
}