Files
divkit/test_data/test_schema/entity_with_array.json
T
grechka62 d1a81ca6a7 Add copy method to divs
0fd13dc14c7677c595acfebbc2f7db605b2370bf
2024-04-10 11:40:44 +03:00

34 lines
463 B
JSON

{
"type": "object",
"platforms": [
"android",
"ios",
"web"
],
"properties": {
"type": {
"type": "string",
"enum": [
"entity_with_array"
]
},
"array": {
"type": "array",
"platforms": [
"android",
"ios",
"web",
"flutter"
],
"items": {
"$ref": "entity.json"
},
"minItems": 1
}
},
"required": [
"type",
"array"
]
}