JFrog · Schema
ArtifactSummary
ArtifactoryCI/CDContainer RegistryDevOpsMLOpsPackage ManagementSecuritySoftware Supply Chain
Properties
| Name | Type | Description |
|---|---|---|
| artifacts | array |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ArtifactSummary",
"title": "ArtifactSummary",
"type": "object",
"properties": {
"artifacts": {
"type": "array",
"items": {
"type": "object",
"properties": {
"general": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"path": {
"type": "string"
},
"sha256": {
"type": "string"
},
"component_id": {
"type": "string"
}
}
},
"issues": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Issue"
}
},
"licenses": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"full_name": {
"type": "string"
},
"components": {
"type": "array",
"items": {
"type": "string"
}
}
}
}
}
}
}
}
}
}