QueryResult

Metadata about the search query and result set

ResearchAcademicBibliometricsCitationsScienceScholarly

Properties

Name Type Description
queryId integer Identifier for this query (for subsequent pagination calls)
recordsFound integer Total number of records matching the query
recordsSearched integer Number of records searched (may differ from total database size)
View JSON Schema on GitHub

JSON Schema

web-of-science-query-result-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-query-result-schema.json",
  "title": "QueryResult",
  "description": "Metadata about the search query and result set",
  "type": "object",
  "properties": {
    "queryId": {
      "type": "integer",
      "description": "Identifier for this query (for subsequent pagination calls)"
    },
    "recordsFound": {
      "type": "integer",
      "description": "Total number of records matching the query"
    },
    "recordsSearched": {
      "type": "integer",
      "description": "Number of records searched (may differ from total database size)"
    }
  }
}