Files
divkit/test_data/test_schema/entity_with_array_of_enums.json
T
grechka62 3c47e4f3bb Revert "Support prototypes in android"
8162da5a9c891a7adc34b1a35c231702b2e419e8
2024-04-04 14:07:53 +03:00

34 lines
476 B
JSON

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