Properties
| Name | Type | Description |
|---|---|---|
| id | string | Fix identifier |
| name | string | Fix name |
| type | string | |
| description | string | |
| resolvedCVEs | array | CVEs resolved by this fix |
| applicableVersions | array | WebSphere versions this fix applies to |
| downloadURL | string | |
| releaseDate | string | |
| size | integer | Fix size in bytes |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Fix",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Fix identifier"
},
"name": {
"type": "string",
"description": "Fix name"
},
"type": {
"type": "string"
},
"description": {
"type": "string"
},
"resolvedCVEs": {
"type": "array",
"description": "CVEs resolved by this fix"
},
"applicableVersions": {
"type": "array",
"description": "WebSphere versions this fix applies to"
},
"downloadURL": {
"type": "string"
},
"releaseDate": {
"type": "string"
},
"size": {
"type": "integer",
"description": "Fix size in bytes"
}
}
}