mirror of
https://github.com/openai/codex.git
synced 2026-04-25 23:24:55 +00:00
62 lines
1.6 KiB
JSON
62 lines
1.6 KiB
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"definitions": {
|
|
"ExperimentalFeature": {
|
|
"properties": {
|
|
"announcement": {
|
|
"description": "Announcement copy shown to users when the feature is introduced.",
|
|
"type": "string"
|
|
},
|
|
"defaultEnabled": {
|
|
"description": "Whether this feature is enabled by default.",
|
|
"type": "boolean"
|
|
},
|
|
"description": {
|
|
"description": "Short summary describing what the feature does.",
|
|
"type": "string"
|
|
},
|
|
"displayName": {
|
|
"description": "User-facing display name shown in the experimental features UI.",
|
|
"type": "string"
|
|
},
|
|
"enabled": {
|
|
"description": "Whether this feature is currently enabled in the loaded config.",
|
|
"type": "boolean"
|
|
},
|
|
"flagName": {
|
|
"description": "Stable key used in config.toml and CLI flag toggles.",
|
|
"type": "string"
|
|
}
|
|
},
|
|
"required": [
|
|
"announcement",
|
|
"defaultEnabled",
|
|
"description",
|
|
"displayName",
|
|
"enabled",
|
|
"flagName"
|
|
],
|
|
"type": "object"
|
|
}
|
|
},
|
|
"properties": {
|
|
"data": {
|
|
"items": {
|
|
"$ref": "#/definitions/ExperimentalFeature"
|
|
},
|
|
"type": "array"
|
|
},
|
|
"nextCursor": {
|
|
"description": "Opaque cursor to pass to the next call to continue after the last item. If None, there are no more items to return.",
|
|
"type": [
|
|
"string",
|
|
"null"
|
|
]
|
|
}
|
|
},
|
|
"required": [
|
|
"data"
|
|
],
|
|
"title": "ExperimentalFeatureListResponse",
|
|
"type": "object"
|
|
} |