mirror of
https://github.com/divkit/divkit.git
synced 2026-05-07 20:02:32 +00:00
25 lines
376 B
JSON
25 lines
376 B
JSON
{
|
|
"type": "object",
|
|
"properties": {
|
|
"type": {
|
|
"type": "string",
|
|
"enum": [
|
|
"entity_with_json_property"
|
|
]
|
|
},
|
|
"json_property": {
|
|
"type": "object",
|
|
"additionalProperties": true,
|
|
"default_value": {
|
|
"key": "value",
|
|
"items": [
|
|
"value"
|
|
]
|
|
}
|
|
}
|
|
},
|
|
"required": [
|
|
"type"
|
|
]
|
|
}
|