{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ComponentDetail", "title": "ComponentDetail", "type": "object", "properties": { "component_id": { "type": "string" }, "component_name": { "type": "string" }, "package_type": { "type": "string" }, "version": { "type": "string" }, "licenses": { "type": "array", "items": { "type": "object", "properties": { "name": { "type": "string" }, "full_name": { "type": "string" }, "more_info_url": { "type": "array", "items": { "type": "string", "format": "uri" } } } } }, "vulnerabilities": { "type": "array", "items": { "$ref": "#/components/schemas/Vulnerability" } } } }