Properties
| Name | Type | Description |
|---|---|---|
| advanced_security | object | |
| secret_scanning | object | |
| secret_scanning_push_protection | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/security-and-analysis",
"title": "security-and-analysis",
"nullable": true,
"type": "object",
"properties": {
"advanced_security": {
"type": "object",
"properties": {
"status": {
"type": "string",
"enum": [
"enabled",
"disabled"
]
}
}
},
"secret_scanning": {
"type": "object",
"properties": {
"status": {
"type": "string",
"enum": [
"enabled",
"disabled"
]
}
}
},
"secret_scanning_push_protection": {
"type": "object",
"properties": {
"status": {
"type": "string",
"enum": [
"enabled",
"disabled"
]
}
}
}
}
}