Files
divkit/schema/div-custom.json
booster abd997bf3d Enabled expressions for playerSettingsPayload
commit_hash:a4ed6e0a2df2ae78420a3828da105b083649b129
2026-03-14 22:52:27 +03:00

41 lines
895 B
JSON

{
"$description": "translations.json#/div_custom",
"allOf": [
{
"$ref": "div-base.json"
},
{
"properties": {
"type": {
"type": "string",
"enum": [
"custom"
]
},
"items": {
"type": "array",
"items": {
"$ref": "div.json"
},
"$description": "translations.json#/div_custom_items"
},
"custom_type": {
"type": "string",
"supports_expressions": false,
"$description": "translations.json#/div_custom_custom_type"
},
"custom_props": {
"type": "object",
"additionalProperties": true,
"supports_expressions": false,
"$description": "translations.json#/div_custom_custom_props"
}
}
}
],
"required": [
"type",
"custom_type"
]
}