mirror of
https://github.com/divkit/divkit.git
synced 2026-05-07 20:02:32 +00:00
a05eac31fe
commit_hash:5eb88e0ab7a836dcecb028557c53633d1d006092
25 lines
430 B
JSON
25 lines
430 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"type": "object",
|
|
"definitions": {
|
|
"localized_string": {
|
|
"type": "object",
|
|
"properties": {
|
|
"en": {
|
|
"type": "string"
|
|
},
|
|
"ru": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"required": [
|
|
"en",
|
|
"ru"
|
|
]
|
|
}
|
|
},
|
|
"additionalProperties": {
|
|
"$ref": "#/definitions/localized_string"
|
|
}
|
|
}
|