From 6a9d198f464250b836703f9dc06556a286b4dfb0 Mon Sep 17 00:00:00 2001 From: 1000TurquoisePogs Date: Wed, 2 Oct 2024 21:04:23 +0200 Subject: [PATCH] Create trivial-schema.json Signed-off-by: 1000TurquoisePogs --- trivial-schema.json | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 trivial-schema.json diff --git a/trivial-schema.json b/trivial-schema.json new file mode 100644 index 0000000..95af3d7 --- /dev/null +++ b/trivial-schema.json @@ -0,0 +1,21 @@ +{ + "$schema": "https://json-schema.org/draft/2019-09/schema", + "$id": "https://abcdef.com/schemas/v2/sample-node-api", + "allOf": [ + { "$ref": "https://zowe.org/schemas/v2/server-base" }, + { + "type": "object", + "properties": { + "components": { + "type": "object", + "additionalProperties": true, + "properties": { + "sample-iframe": { + "$ref": "https://zowe.org/schemas/v2/server-base#zoweComponent" + } + } + } + } + } + ] +}