Files
divkit/test_data/test_schema/entity_with_array.json
T
2023-10-22 22:32:24 +03:00

30 lines
405 B
JSON

{
"type": "object",
"codegen": {
"kotlin": {
"properties_to_patch": [
"array"
]
}
},
"properties": {
"type": {
"type": "string",
"enum": [
"entity_with_array"
]
},
"array": {
"type": "array",
"items": {
"$ref": "entity.json"
},
"minItems": 1
}
},
"required": [
"type",
"array"
]
}