Files
divkit/test_data/test_schema/entity_with_optional_property.json
2023-12-07 12:05:50 +03:00

18 lines
234 B
JSON

{
"type": "object",
"properties": {
"type": {
"type": "string",
"enum": [
"entity_with_optional_property"
]
},
"property": {
"type": "string"
}
},
"required": [
"type"
]
}