Files
codex-telegram-bot/schemas/v2/WindowsWorldWritableWarningNotification.json
2026-05-21 08:40:16 +00:00

26 lines
478 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "WindowsWorldWritableWarningNotification",
"type": "object",
"required": [
"extraCount",
"failedScan",
"samplePaths"
],
"properties": {
"extraCount": {
"type": "integer",
"format": "uint",
"minimum": 0.0
},
"failedScan": {
"type": "boolean"
},
"samplePaths": {
"type": "array",
"items": {
"type": "string"
}
}
}
}