Files
divkit/test_data/test_schema/entity_with_raw_array.json
T
2023-08-14 17:33:17 +03:00

19 lines
235 B
JSON

{
"type": "object",
"properties": {
"type": {
"type": "string",
"enum": [
"entity_with_raw_array"
]
},
"array": {
"type": "array"
}
},
"required": [
"type",
"array"
]
}