NVD · Schema

CPEResponse

SecurityCVECPEVulnerabilityCVSS

Properties

Name Type Description
resultsPerPage integer
startIndex integer
totalResults integer
format string
version string
timestamp string
products array
View JSON Schema on GitHub

JSON Schema

nvd-cperesponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CPEResponse",
  "title": "CPEResponse",
  "type": "object",
  "properties": {
    "resultsPerPage": {
      "type": "integer"
    },
    "startIndex": {
      "type": "integer"
    },
    "totalResults": {
      "type": "integer"
    },
    "format": {
      "type": "string"
    },
    "version": {
      "type": "string"
    },
    "timestamp": {
      "type": "string",
      "format": "date-time"
    },
    "products": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "cpe": {
            "$ref": "#/components/schemas/CPE"
          }
        }
      }
    }
  }
}