Files
divkit/test_data/test_schema/entity_with_string_array_property.json
2023-02-27 19:35:52 +03:00

23 lines
319 B
JSON

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