Files
codex-telegram-bot/schemas/v2/MarketplaceAddParams.json
2026-05-21 08:40:16 +00:00

28 lines
431 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "MarketplaceAddParams",
"type": "object",
"required": [
"source"
],
"properties": {
"refName": {
"type": [
"string",
"null"
]
},
"source": {
"type": "string"
},
"sparsePaths": {
"type": [
"array",
"null"
],
"items": {
"type": "string"
}
}
}
}