RecordIdsResponse

Response containing only record UIDs

ResearchAcademicBibliometricsCitationsScienceScholarly

Properties

Name Type Description
queryResult object
ids array Array of WOS unique identifiers
View JSON Schema on GitHub

JSON Schema

web-of-science-record-ids-response-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-record-ids-response-schema.json",
  "title": "RecordIdsResponse",
  "description": "Response containing only record UIDs",
  "type": "object",
  "properties": {
    "queryResult": {
      "$ref": "#/components/schemas/QueryResult"
    },
    "ids": {
      "type": "array",
      "description": "Array of WOS unique identifiers",
      "items": {
        "type": "string"
      }
    }
  }
}