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

27 lines
379 B
JSON

{
"type": "object",
"properties": {
"type": {
"type": "string",
"enum": [
"entity_with_array_of_enums"
]
},
"items": {
"type": "array",
"items": {
"type": "string",
"enum": [
"first",
"second"
]
},
"minItems": 1
}
},
"required": [
"type",
"items"
]
}