AdvisoryDetail

EnterpriseLinuxOperating SystemRed HatRHEL
View JSON Schema on GitHub

JSON Schema

red-hat-enterprise-linux-8-advisorydetail-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AdvisoryDetail",
  "title": "AdvisoryDetail",
  "allOf": [
    {
      "$ref": "#/components/schemas/AdvisorySummary"
    },
    {
      "type": "object",
      "properties": {
        "description": {
          "type": "string"
        },
        "solution": {
          "type": "string"
        },
        "references": {
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        "packages": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "name": {
                "type": "string"
              },
              "arch": {
                "type": "string"
              },
              "filename": {
                "type": "string"
              }
            }
          }
        }
      }
    }
  ]
}