Files
gulevsky a05eac31fe move expression api description to a new location
commit_hash:5eb88e0ab7a836dcecb028557c53633d1d006092
2025-10-31 16:15:39 +03:00

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"
}
}