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

46 lines
962 B
JSON

{
"java_extends": "DivBlockWithId",
"$description": "translations.json#/div_custom",
"platforms": [
"android",
"ios"
],
"allOf": [
{
"$ref": "div-base.json"
},
{
"properties": {
"type": {
"type": "string",
"enum": [
"custom"
]
},
"items": {
"type": "array",
"items": {
"$ref": "div.json"
},
"minItems": 1,
"$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"
]
}