Add support for security command center mute rules in module organization, folder and project (#3694)

This commit is contained in:
Vannick Trinquier
2026-02-04 08:31:05 +07:00
committed by GitHub
parent 0e760c3015
commit 2af44b0651
22 changed files with 626 additions and 40 deletions

View File

@@ -0,0 +1,29 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "SCC Mute Configurations",
"type": "object",
"patternProperties": {
"^[a-zA-Z]+$": {
"type": "object",
"required": [
"filter"
],
"properties": {
"description": {
"type": "string"
},
"filter": {
"type": "string"
},
"type": {
"type": "string",
"enum": [
"DYNAMIC",
"STATIC"
],
"default": "DYNAMIC"
}
}
}
}
}

View File

@@ -0,0 +1,11 @@
# SCC Mute Configurations
<!-- markdownlint-disable MD036 -->
## Properties
- **`^[a-zA-Z]+$`**: *object*
- **description**: *string*
- ⁺**filter**: *string*
- **type**: *string*
- enum: `DYNAMIC`, `STATIC`