Web of Science APIs · JSON Structure

Web Of Science Journals Search Response Structure

Response from journal search containing results and metadata

Type: object Properties: 4
ResearchAcademicBibliometricsCitationsScienceScholarly

Web Of Science Journals Search Response 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

total page limit hits

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-journals-search-response-structure.json",
  "title": "JournalsSearchResponse",
  "description": "Response from journal search containing results and metadata",
  "type": "object",
  "properties": {
    "total": {
      "type": "int32",
      "description": "Total number of journals matching the query"
    },
    "page": {
      "type": "int32",
      "description": "Current page number"
    },
    "limit": {
      "type": "int32",
      "description": "Number of records per page"
    },
    "hits": {
      "type": "array",
      "description": "Array of journal records"
    }
  }
}