JFrog · Schema
IgnoreRule
ArtifactoryCI/CDContainer RegistryDevOpsMLOpsPackage ManagementSecuritySoftware Supply Chain
Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| notes | string | |
| expiration_date | string | |
| vulnerabilities | array | |
| cves | array | |
| licenses | array | |
| watches | array | |
| policies | array | |
| component | object | |
| artifact | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/IgnoreRule",
"title": "IgnoreRule",
"type": "object",
"properties": {
"id": {
"type": "string"
},
"notes": {
"type": "string"
},
"expiration_date": {
"type": "string",
"format": "date-time"
},
"vulnerabilities": {
"type": "array",
"items": {
"type": "object",
"properties": {
"cve": {
"type": "string"
}
}
}
},
"cves": {
"type": "array",
"items": {
"type": "object",
"properties": {
"cve": {
"type": "string"
}
}
}
},
"licenses": {
"type": "array",
"items": {
"type": "string"
}
},
"watches": {
"type": "array",
"items": {
"type": "string"
}
},
"policies": {
"type": "array",
"items": {
"type": "string"
}
},
"component": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"version": {
"type": "string"
}
}
},
"artifact": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"version": {
"type": "string"
},
"path": {
"type": "string"
}
}
}
}
}