IBM WebSphere · Schema
Vulnerability
Application ServerCloud NativeEnterprise JavaJ2EEMicroservicesMiddleware
Properties
| Name | Type | Description |
|---|---|---|
| id | string | Vulnerability identifier |
| cveIds | array | Associated CVE identifiers |
| severity | string | |
| cvssScore | number | CVSS base score |
| description | string | |
| affectedServers | array | List of affected server IDs |
| status | string | |
| availableFixes | array | List of available fix IDs |
| publishedDate | string | |
| discoveredDate | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Vulnerability",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Vulnerability identifier"
},
"cveIds": {
"type": "array",
"description": "Associated CVE identifiers"
},
"severity": {
"type": "string"
},
"cvssScore": {
"type": "number",
"description": "CVSS base score"
},
"description": {
"type": "string"
},
"affectedServers": {
"type": "array",
"description": "List of affected server IDs"
},
"status": {
"type": "string"
},
"availableFixes": {
"type": "array",
"description": "List of available fix IDs"
},
"publishedDate": {
"type": "string"
},
"discoveredDate": {
"type": "string"
}
}
}