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

23 lines
341 B
JSON

{
"type": "object",
"properties": {
"type": {
"type": "string",
"enum": [
"entity_with_array_of_expressions"
]
},
"items": {
"type": "array",
"items": {
"$ref": "common.json#/non_empty_string"
},
"minItems": 1
}
},
"required": [
"type",
"items"
]
}