JFrog · Schema
ComponentDetail
ArtifactoryCI/CDContainer RegistryDevOpsMLOpsPackage ManagementSecuritySoftware Supply Chain
Properties
| Name | Type | Description |
|---|---|---|
| component_id | string | |
| component_name | string | |
| package_type | string | |
| version | string | |
| licenses | array | |
| vulnerabilities | array |
JSON Schema
{
"$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"
}
}
}
}