|
| 1 | +# Notification groups |
| 2 | + |
| 3 | +A *group* is a granular classification of a notification's subject. Every group |
| 4 | +belongs to one of two scopes: `SYSTEM` (platform-level events) or `PORTFOLIO` |
| 5 | +(events about projects, components, or findings). Every group also has a single |
| 6 | +trigger type: `Event` for ad-hoc notifications emitted in response to a system |
| 7 | +event, or `Schedule` for notifications produced periodically by a cron schedule. |
| 8 | + |
| 9 | +Subject schemas for each group are documented in the |
| 10 | +[notification schema reference](../schemas/notification.md). |
| 11 | + |
| 12 | +## SYSTEM scope |
| 13 | + |
| 14 | +### `ANALYZER` |
| 15 | + |
| 16 | +- **Trigger:** Event |
| 17 | +- **Level:** Any |
| 18 | + |
| 19 | +Generated as a result of interacting with an external source of vulnerability |
| 20 | +intelligence. |
| 21 | + |
| 22 | +### `CONFIGURATION` |
| 23 | + |
| 24 | +- **Trigger:** Event |
| 25 | +- **Level:** Any |
| 26 | + |
| 27 | +Generated as a result of platform configuration changes or configuration errors. |
| 28 | + |
| 29 | +### `DATASOURCE_MIRRORING` |
| 30 | + |
| 31 | +- **Trigger:** Event |
| 32 | +- **Level:** Any |
| 33 | + |
| 34 | +Generated when performing mirroring of one of the supported datasources, such as |
| 35 | +the NVD. |
| 36 | + |
| 37 | +### `FILE_SYSTEM` |
| 38 | + |
| 39 | +- **Trigger:** Event |
| 40 | +- **Level:** Any |
| 41 | + |
| 42 | +Generated as a result of a file system operation. These are typically only |
| 43 | +generated on error conditions. |
| 44 | + |
| 45 | +### `INTEGRATION` |
| 46 | + |
| 47 | +- **Trigger:** Event |
| 48 | +- **Level:** Any |
| 49 | + |
| 50 | +Generated as a result of interacting with an external integration. |
| 51 | + |
| 52 | +### `REPOSITORY` |
| 53 | + |
| 54 | +- **Trigger:** Event |
| 55 | +- **Level:** Any |
| 56 | + |
| 57 | +Generated as a result of interacting with one of the supported repositories, |
| 58 | +such as Maven Central, RubyGems, or npm. |
| 59 | + |
| 60 | +### `USER_CREATED` |
| 61 | + |
| 62 | +- **Trigger:** Event |
| 63 | +- **Level:** Informational |
| 64 | + |
| 65 | +Generated as a result of a user creation. |
| 66 | + |
| 67 | +### `USER_DELETED` |
| 68 | + |
| 69 | +- **Trigger:** Event |
| 70 | +- **Level:** Informational |
| 71 | + |
| 72 | +Generated as a result of a user deletion. |
| 73 | + |
| 74 | +## PORTFOLIO scope |
| 75 | + |
| 76 | +### `BOM_CONSUMED` |
| 77 | + |
| 78 | +- **Trigger:** Event |
| 79 | +- **Level:** Informational |
| 80 | + |
| 81 | +Generated whenever a supported BOM is ingested and identified. |
| 82 | + |
| 83 | +### `BOM_PROCESSED` |
| 84 | + |
| 85 | +- **Trigger:** Event |
| 86 | +- **Level:** Informational |
| 87 | + |
| 88 | +Generated after a supported BOM is ingested, identified, and successfully |
| 89 | +processed. |
| 90 | + |
| 91 | +### `BOM_PROCESSING_FAILED` |
| 92 | + |
| 93 | +- **Trigger:** Event |
| 94 | +- **Level:** Error |
| 95 | + |
| 96 | +Generated whenever a BOM upload process fails. |
| 97 | + |
| 98 | +### `BOM_VALIDATION_FAILED` |
| 99 | + |
| 100 | +- **Trigger:** Event |
| 101 | +- **Level:** Error |
| 102 | + |
| 103 | +Generated whenever an invalid BOM is uploaded. |
| 104 | + |
| 105 | +### `NEW_VULNERABILITY` |
| 106 | + |
| 107 | +- **Trigger:** Event |
| 108 | +- **Level:** Informational |
| 109 | + |
| 110 | +Generated whenever a new vulnerability is identified. |
| 111 | + |
| 112 | +### `NEW_VULNERABLE_DEPENDENCY` |
| 113 | + |
| 114 | +- **Trigger:** Event |
| 115 | +- **Level:** Informational |
| 116 | + |
| 117 | +Generated as a result of a vulnerable component becoming a dependency of a |
| 118 | +project. |
| 119 | + |
| 120 | +### `POLICY_VIOLATION` |
| 121 | + |
| 122 | +- **Trigger:** Event |
| 123 | +- **Level:** Informational |
| 124 | + |
| 125 | +Generated whenever a policy violation is identified. |
| 126 | + |
| 127 | +### `PROJECT_AUDIT_CHANGE` |
| 128 | + |
| 129 | +- **Trigger:** Event |
| 130 | +- **Level:** Informational |
| 131 | + |
| 132 | +Generated whenever an analysis or suppression state has changed on a finding |
| 133 | +from a project. |
| 134 | + |
| 135 | +### `PROJECT_CREATED` |
| 136 | + |
| 137 | +- **Trigger:** Event |
| 138 | +- **Level:** Informational |
| 139 | + |
| 140 | +Generated whenever a new project is created. |
| 141 | + |
| 142 | +### `PROJECT_VULN_ANALYSIS_COMPLETE` |
| 143 | + |
| 144 | +- **Trigger:** Event |
| 145 | +- **Level:** Informational |
| 146 | + |
| 147 | +Generated when vulnerability analysis for a project completes. |
| 148 | + |
| 149 | +### `VEX_CONSUMED` |
| 150 | + |
| 151 | +- **Trigger:** Event |
| 152 | +- **Level:** Informational |
| 153 | + |
| 154 | +Generated whenever a VEX document is ingested. |
| 155 | + |
| 156 | +### `VEX_PROCESSED` |
| 157 | + |
| 158 | +- **Trigger:** Event |
| 159 | +- **Level:** Informational |
| 160 | + |
| 161 | +Generated after a VEX document is ingested and successfully processed. |
| 162 | + |
| 163 | +### `VULNERABILITY_RETRACTED` |
| 164 | + |
| 165 | +- **Trigger:** Event |
| 166 | +- **Level:** Informational |
| 167 | + |
| 168 | +Generated whenever a previously reported vulnerability is retracted. |
| 169 | + |
| 170 | +### `NEW_VULNERABILITIES_SUMMARY` |
| 171 | + |
| 172 | +- **Trigger:** Schedule |
| 173 | +- **Level:** Informational |
| 174 | + |
| 175 | +Summaries of new vulnerabilities identified in a set of projects. |
| 176 | + |
| 177 | +### `NEW_POLICY_VIOLATIONS_SUMMARY` |
| 178 | + |
| 179 | +- **Trigger:** Schedule |
| 180 | +- **Level:** Informational |
| 181 | + |
| 182 | +Summary of new policy violations identified in a set of projects. |
0 commit comments