mirror of
https://github.com/openai/codex.git
synced 2026-09-04 15:08:45 +00:00
41 lines
1.1 KiB
JSON
Generated
41 lines
1.1 KiB
JSON
Generated
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"definitions": {
|
|
"InstalledApp": {
|
|
"description": "Installed connector runtime state.",
|
|
"properties": {
|
|
"callable": {
|
|
"description": "Whether the connector is enabled and has a non-synthetic, model-visible tool allowed by effective MCP and app/tool policy in the committed runtime snapshot.",
|
|
"type": "boolean"
|
|
},
|
|
"enabled": {
|
|
"description": "Effective enabled state after applying global, workspace, local, and managed configuration at read time.",
|
|
"type": "boolean"
|
|
},
|
|
"id": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"required": [
|
|
"callable",
|
|
"enabled",
|
|
"id"
|
|
],
|
|
"type": "object"
|
|
}
|
|
},
|
|
"description": "The installed connectors in one committed runtime snapshot.",
|
|
"properties": {
|
|
"apps": {
|
|
"items": {
|
|
"$ref": "#/definitions/InstalledApp"
|
|
},
|
|
"type": "array"
|
|
}
|
|
},
|
|
"required": [
|
|
"apps"
|
|
],
|
|
"title": "AppsInstalledResponse",
|
|
"type": "object"
|
|
} |