{
  "openapi": "3.0.0",
  "info": {
    "title": "NVD",
    "version": "1.0.0"
  },
  "servers": [
    {
      "url": "https://services.nvd.nist.gov"
    }
  ],
  "paths": {
    "/cves": {
      "get": {
        "tags": [
          "default"
        ],
        "summary": "cves",
        "parameters": [
          {
            "name": "startIndex",
            "in": "query",
            "schema": {
              "type": "number"
            }
          },
          {
            "name": "resultsPerPage",
            "in": "query",
            "schema": {
              "type": "number",
              "maximum": 5000
            }
          },
          {
            "name": "includeMatchStringChange",
            "in": "query",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "name": "keyword",
            "in": "query",
            "schema": {
              "type": "string"
            },
            "example": "cisco"
          },
          {
            "name": "isExactMatch",
            "in": "query",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "name": "cweId",
            "in": "query",
            "schema": {
              "type": "string"
            },
            "example": "CWE-20"
          },
          {
            "name": "cvssV2Severity",
            "in": "query",
            "schema": {
              "type": "string",
              "enum": [
                "LOW",
                "MEDIUM",
                "HIGH"
              ]
            },
            "example": "HIGH"
          },
          {
            "name": "cvssV3Severity",
            "in": "query",
            "schema": {
              "type": "string",
              "enum": [
                "LOW",
                "MEDIUM",
                "HIGH",
                "CRITICAL"
              ]
            }
          },
          {
            "name": "cvssV2Metrics",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "cvssV3Metrics",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "cpeMatchString",
            "in": "query",
            "schema": {
              "type": "string"
            },
            "example": "cpe:2.3:o:cisco:ios_xr:15.*"
          },
          {
            "name": "cpeName",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "addOns",
            "in": "query",
            "schema": {
              "type": "string",
              "enum": [
                "dictionaryCpes"
              ]
            },
            "example": "dictionaryCpes"
          }
        ],
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {}
            }
          }
        }
      }
    },
    "/cve": {
      "get": {
        "tags": [
          "default"
        ],
        "summary": "cve",
        "parameters": [
          {
            "name": "cvdId",
            "in": "query",
            "schema": {
              "type": "number"
            }
          },
          {
            "name": "addOns",
            "in": "query",
            "schema": {
              "type": "string",
              "enum": [
                "dictionaryCpes"
              ]
            },
            "example": "dictionaryCpes"
          }
        ],
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {}
            }
          }
        }
      }
    }
  },
  "components": {
    "securitySchemes": {}
  },
  "security": []
}