Files
divkit/schema/div-custom.json
T
grechka62 e79b1afdb0 Remove unused java_extends field from scheme
commit_hash:ea39cabc26e139790e36bcfe3e93f889d85c1241
2024-10-17 18:24:43 +03:00

40 lines
854 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,
"$description": "translations.json#/div_custom_custom_props"
}
}
}
],
"required": [
"type",
"custom_type"
]
}