Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-08-16 21:09:33 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-08-16 21:09:33 +0300
commit7e4746d6b8049ac170de633022a662e405ccc818 (patch)
tree33fa57879f1304506a86a4408c2015b05d21bd5c /app/validators/json_schemas
parentab04c244dc7a2405a55d532e1793256a47685f38 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/validators/json_schemas')
-rw-r--r--app/validators/json_schemas/catalog_resource_component_inputs.json24
1 files changed, 24 insertions, 0 deletions
diff --git a/app/validators/json_schemas/catalog_resource_component_inputs.json b/app/validators/json_schemas/catalog_resource_component_inputs.json
new file mode 100644
index 00000000000..014a52d4f1b
--- /dev/null
+++ b/app/validators/json_schemas/catalog_resource_component_inputs.json
@@ -0,0 +1,24 @@
+{
+ "description": "Catalog Resource Component Inputs",
+ "type": "object",
+ "patternProperties": {
+ ".*": {
+ "type": [
+ "object",
+ "null"
+ ],
+ "patternProperties": {
+ "default": {
+ "type": [
+ "string",
+ "integer",
+ "boolean"
+ ]
+ },
+ "^type$": {
+ "type": "string"
+ }
+ }
+ }
+ }
+}