From 8babec3b20d2f262661ea517829046298be05922 Mon Sep 17 00:00:00 2001 From: Gerald Pinder Date: Mon, 27 Jan 2025 23:51:30 -0500 Subject: [PATCH] chore: Create import-v1 schema --- src-tsp/main.tsp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src-tsp/main.tsp b/src-tsp/main.tsp index fa8ff93..b1d54bc 100644 --- a/src-tsp/main.tsp +++ b/src-tsp/main.tsp @@ -127,6 +127,7 @@ model ModuleDefaults { `no-cache`?: boolean = false; } +@jsonSchema("module-custom-v1.json") model CustomModule { /** This is not a built-in module. */ type: string; @@ -142,6 +143,7 @@ model CustomModule { } @extension("additionalProperties", false) +@jsonSchema("import-v1.json") model ImportedModule { /** The path to another file containing module configuration to import here. * https://blue-build.org/how-to/multiple-files/