mirror of
https://github.com/openai/codex.git
synced 2026-05-03 21:01:55 +03:00
feat: annotate experimental fields in app server protocol
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema#",
|
||||
"properties": {
|
||||
"extraCount": {
|
||||
"format": "uint",
|
||||
"minimum": 0.0,
|
||||
"type": "integer"
|
||||
},
|
||||
"failedScan": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"samplePaths": {
|
||||
"items": {
|
||||
"type": "string"
|
||||
},
|
||||
"type": "array"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"extraCount",
|
||||
"failedScan",
|
||||
"samplePaths"
|
||||
],
|
||||
"title": "WindowsWorldWritableWarningNotification",
|
||||
"type": "object"
|
||||
}
|
||||
Reference in New Issue
Block a user