Files
divkit/test_data/test_schema/entity_with_json_property.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"
]
}