Files
divkit/schema/div-patch.json
T
2023-02-27 19:35:52 +03:00

53 lines
1.1 KiB
JSON

{
"type": "object",
"$description": "translations.json#/div_patch",
"platforms": [
"android",
"ios"
],
"definitions": {
"change": {
"type": "object",
"properties": {
"id": {
"type": "string",
"supports_expressions": false,
"$description": "translations.json#/div_patch_change_id"
},
"items": {
"type": "array",
"items": {
"$ref": "div.json"
},
"minItems": 1,
"$description": "translations.json#/div_patch_change_items"
}
},
"required": [
"id"
]
}
},
"properties": {
"mode": {
"type": "string",
"enum": [
"transactional", "partial"
],
"default_value": "partial",
"$description": "translations.json#/div_patch_mode"
},
"changes": {
"type": "array",
"items": {
"$ref": "#/definitions/change"
},
"minItems": 1,
"$description": "translations.json#/div_patch_changes"
}
},
"required": [
"changes"
]
}