{ "$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" } } } } } } ] }