Red Hat Enterprise Linux · Schema
Advisory
Red Hat Security Advisory in CVRF format
AutomationComplianceEnterpriseLinuxOperating SystemRed HatRHELSecuritySubscription ManagementVulnerability Management
Properties
| Name | Type | Description |
|---|---|---|
| DocumentTitle | string | Title of the advisory |
| DocumentType | string | Type of advisory (Security Advisory, Bug Fix Advisory, Enhancement Advisory) |
| DocumentPublisher | object | |
| DocumentTracking | object | |
| CVE | array | CVE identifiers addressed by this advisory |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Advisory",
"title": "Advisory",
"type": "object",
"description": "Red Hat Security Advisory in CVRF format",
"properties": {
"DocumentTitle": {
"type": "string",
"description": "Title of the advisory"
},
"DocumentType": {
"type": "string",
"description": "Type of advisory (Security Advisory, Bug Fix Advisory, Enhancement Advisory)"
},
"DocumentPublisher": {
"type": "object",
"properties": {
"ContactDetails": {
"type": "string"
},
"IssuingAuthority": {
"type": "string"
}
}
},
"DocumentTracking": {
"type": "object",
"properties": {
"Identification": {
"type": "object",
"properties": {
"ID": {
"type": "string",
"description": "Advisory ID (e.g., RHSA-2021:2865)"
}
}
},
"Status": {
"type": "string"
},
"Version": {
"type": "string"
},
"InitialReleaseDate": {
"type": "string",
"format": "date-time"
},
"CurrentReleaseDate": {
"type": "string",
"format": "date-time"
}
}
},
"CVE": {
"type": "array",
"items": {
"type": "string"
},
"description": "CVE identifiers addressed by this advisory"
}
}
}