From 779ab94caffa6021e494cf45ea790801fee0e82d Mon Sep 17 00:00:00 2001 From: Ricardo Devis Agullo Date: Tue, 27 Aug 2024 13:36:54 +0200 Subject: [PATCH] upload oc schema --- website/static/schema.json | 40 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 website/static/schema.json diff --git a/website/static/schema.json b/website/static/schema.json new file mode 100644 index 0000000..bbaf319 --- /dev/null +++ b/website/static/schema.json @@ -0,0 +1,40 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "type": "object", + "properties": { + "registries": { + "type": "array", + "items": { + "type": "string" + } + }, + "mocks": { + "type": "object", + "properties": { + "plugins": { + "type": "object", + "properties": { + "dynamic": { + "type": "object", + "additionalProperties": { + "type": "string" + } + }, + "static": { + "type": "object", + "additionalProperties": { + "type": "string" + } + } + }, + "additionalProperties": false + } + }, + "additionalProperties": false + } + }, + "required": [ + "registries" + ], + "additionalProperties": false +} \ No newline at end of file