diff options
Diffstat (limited to 'apps/theming/openapi.json')
-rw-r--r-- | apps/theming/openapi.json | 18 |
1 files changed, 15 insertions, 3 deletions
diff --git a/apps/theming/openapi.json b/apps/theming/openapi.json index 7ed98467e96..f85f916dcaa 100644 --- a/apps/theming/openapi.json +++ b/apps/theming/openapi.json @@ -162,7 +162,11 @@ "description": "Let the browser decide the CSS priority", "schema": { "type": "integer", - "default": 0 + "default": 0, + "enum": [ + 0, + 1 + ] } }, { @@ -171,7 +175,11 @@ "description": "Include custom CSS", "schema": { "type": "integer", - "default": 0 + "default": 0, + "enum": [ + 0, + 1 + ] } }, { @@ -232,7 +240,11 @@ "description": "Return image as SVG", "schema": { "type": "integer", - "default": 1 + "default": 1, + "enum": [ + 0, + 1 + ] } }, { |