From 0fa0bd857c140669849f9ba2d7abfa46fbd3bd71 Mon Sep 17 00:00:00 2001 From: Andrew Petrochuk <30735471+petrochuk@users.noreply.github.com> Date: Mon, 24 Jun 2024 16:49:46 -0700 Subject: [PATCH] Move subschemas to separate folder (#678) --- docs/pa.yaml-schema.json | 4 ++-- docs/{ => subschemas}/control-property-schema.json | 0 docs/{ => subschemas}/control-type-schema.json | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename docs/{ => subschemas}/control-property-schema.json (100%) rename docs/{ => subschemas}/control-type-schema.json (100%) diff --git a/docs/pa.yaml-schema.json b/docs/pa.yaml-schema.json index e4878ef5..cb97c8de 100644 --- a/docs/pa.yaml-schema.json +++ b/docs/pa.yaml-schema.json @@ -23,7 +23,7 @@ "type": "object", "properties": { "Control": { - "$ref": "control-type-schema.json#" + "$ref": "subschemas/control-type-schema.json" }, "Variant": { "description": "The variant of the control", @@ -40,7 +40,7 @@ "Settings": { "type": "object" }, "Style": { "type": "string" }, "Properties": { - "$ref": "control-property-schema.json#" + "$ref": "subschemas/control-property-schema.json" }, "CustomProperties": { "type": "array" diff --git a/docs/control-property-schema.json b/docs/subschemas/control-property-schema.json similarity index 100% rename from docs/control-property-schema.json rename to docs/subschemas/control-property-schema.json diff --git a/docs/control-type-schema.json b/docs/subschemas/control-type-schema.json similarity index 100% rename from docs/control-type-schema.json rename to docs/subschemas/control-type-schema.json