Files
sample-node-api/trivial-schema.json
1000TurquoisePogs 6a9d198f46 Create trivial-schema.json
Signed-off-by: 1000TurquoisePogs <sgrady@rocketsoftware.com>
2024-10-02 21:04:23 +02:00

22 lines
533 B
JSON

{
"$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"
}
}
}
}
}
]
}