Synopsys · Schema

Security Issue

A security vulnerability or code quality issue discovered by Synopsys Polaris application security testing.

Software SecurityApplication Security TestingStatic AnalysisSoftware Composition AnalysisEDA ToolsSemiconductor DesignFortune 1000

Properties

Name Type Description
id string Unique issue identifier.
type string Testing type that discovered the issue.
severity string Issue severity level.
name string Issue name or vulnerability type.
description string Detailed description of the vulnerability.
cwe string Common Weakness Enumeration identifier.
cve stringnull Common Vulnerabilities and Exposures identifier.
filePath string Source file path where the issue was found.
lineNumber integer Line number where the issue was found.
status string Issue remediation status.
projectId string Associated project identifier.
branchId string Associated branch identifier.
View JSON Schema on GitHub

JSON Schema

synopsys-security-issue-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://polaris.synopsys.com/schemas/security-issue",
  "title": "Security Issue",
  "description": "A security vulnerability or code quality issue discovered by Synopsys Polaris application security testing.",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique issue identifier."
    },
    "type": {
      "type": "string",
      "enum": ["sast", "sca", "iast"],
      "description": "Testing type that discovered the issue."
    },
    "severity": {
      "type": "string",
      "enum": ["critical", "high", "medium", "low"],
      "description": "Issue severity level."
    },
    "name": {
      "type": "string",
      "description": "Issue name or vulnerability type."
    },
    "description": {
      "type": "string",
      "description": "Detailed description of the vulnerability."
    },
    "cwe": {
      "type": "string",
      "description": "Common Weakness Enumeration identifier."
    },
    "cve": {
      "type": ["string", "null"],
      "description": "Common Vulnerabilities and Exposures identifier."
    },
    "filePath": {
      "type": "string",
      "description": "Source file path where the issue was found."
    },
    "lineNumber": {
      "type": "integer",
      "minimum": 1,
      "description": "Line number where the issue was found."
    },
    "status": {
      "type": "string",
      "enum": ["open", "dismissed", "fixed"],
      "description": "Issue remediation status."
    },
    "projectId": {
      "type": "string",
      "description": "Associated project identifier."
    },
    "branchId": {
      "type": "string",
      "description": "Associated branch identifier."
    }
  },
  "required": ["id", "type", "severity", "name", "status"]
}