1
0
Fork 0
mirror of https://github.com/YunoHost/apps.git synced 2024-09-03 20:06:07 +02:00

schemas: Allow translated_string to be a simple string, the underlying code supports it.

This commit is contained in:
Salamandar 2023-09-24 16:08:50 +02:00
parent 03504079da
commit 19f3eb02cf

View file

@ -7,14 +7,21 @@
"type": "object",
"$defs": {
"translated_string": {
"type": "object",
"required": ["en"],
"additionalProperties": false,
"patternProperties": {
"^[a-z]{2}$": {
"anyOf": [
{
"type": "object",
"required": ["en"],
"additionalProperties": false,
"patternProperties": {
"^[a-z]{2}$": {
"type": "string"
}
}
},
{
"type": "string"
}
}
]
},
"byte_size": {
"type": "string",