mirror of
https://github.com/openai/codex.git
synced 2026-04-25 15:15:15 +00:00
41 lines
838 B
JSON
41 lines
838 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"definitions": {
|
|
"ExternalAgentConfigMigrationItem": {
|
|
"properties": {
|
|
"description": {
|
|
"type": "string"
|
|
},
|
|
"migrationType": {
|
|
"$ref": "#/definitions/ExternalAgentConfigMigrationType"
|
|
}
|
|
},
|
|
"required": [
|
|
"description",
|
|
"migrationType"
|
|
],
|
|
"type": "object"
|
|
},
|
|
"ExternalAgentConfigMigrationType": {
|
|
"enum": [
|
|
"AGENTS_MD",
|
|
"CONFIG",
|
|
"SKILLS"
|
|
],
|
|
"type": "string"
|
|
}
|
|
},
|
|
"properties": {
|
|
"items": {
|
|
"items": {
|
|
"$ref": "#/definitions/ExternalAgentConfigMigrationItem"
|
|
},
|
|
"type": "array"
|
|
}
|
|
},
|
|
"required": [
|
|
"items"
|
|
],
|
|
"title": "ExternalAgentConfigDetectResponse",
|
|
"type": "object"
|
|
} |