Properties
| Name | Type | Description |
|---|---|---|
| id | string | Advisory ID (e.g., RHSA-2024:1234) |
| title | string | |
| severity | string | |
| type | string | |
| issued | string | |
| updated | string | |
| cves | array |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/AdvisorySummary",
"title": "AdvisorySummary",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Advisory ID (e.g., RHSA-2024:1234)"
},
"title": {
"type": "string"
},
"severity": {
"type": "string"
},
"type": {
"type": "string",
"enum": [
"RHSA",
"RHBA",
"RHEA"
]
},
"issued": {
"type": "string",
"format": "date-time"
},
"updated": {
"type": "string",
"format": "date-time"
},
"cves": {
"type": "array",
"items": {
"type": "string"
}
}
}
}