DocumentIdentifiers

Document identifiers (DOI, PMID, etc.)

ResearchAcademicBibliometricsCitationsScienceScholarly

Properties

Name Type Description
doi string Digital Object Identifier
pmid string PubMed identifier
issn string ISSN of the source journal
eissn string Electronic ISSN of the source journal
View JSON Schema on GitHub

JSON Schema

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