mirror of
https://github.com/openai/codex.git
synced 2026-04-25 23:24:55 +00:00
26 lines
508 B
JSON
26 lines
508 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"definitions": {
|
|
"ExternalAgentConfigMigrationType": {
|
|
"enum": [
|
|
"AGENTS_MD",
|
|
"CONFIG",
|
|
"SKILLS"
|
|
],
|
|
"type": "string"
|
|
}
|
|
},
|
|
"properties": {
|
|
"migrationTypes": {
|
|
"items": {
|
|
"$ref": "#/definitions/ExternalAgentConfigMigrationType"
|
|
},
|
|
"type": "array"
|
|
}
|
|
},
|
|
"required": [
|
|
"migrationTypes"
|
|
],
|
|
"title": "ExternalAgentConfigImportParams",
|
|
"type": "object"
|
|
} |