Create trivial-schema.json

Signed-off-by: 1000TurquoisePogs <sgrady@rocketsoftware.com>
This commit is contained in:
1000TurquoisePogs
2024-10-02 21:04:23 +02:00
committed by GitHub
parent 549493623f
commit 6a9d198f46

21
trivial-schema.json Normal file
View File

@@ -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"
}
}
}
}
}
]
}