From 6652c2582584e4f8f1599c33fb58a95712118b7c Mon Sep 17 00:00:00 2001 From: Gerald Pinder Date: Sun, 20 Oct 2024 17:07:49 -0400 Subject: [PATCH] feat: Create a module-stage-list-v1.json schema --- src-tsp/main.tsp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src-tsp/main.tsp b/src-tsp/main.tsp index aa621c0..9c35bcf 100644 --- a/src-tsp/main.tsp +++ b/src-tsp/main.tsp @@ -130,3 +130,9 @@ model ImportedModule { */ `from-file`: string; } + +@jsonSchema("module-stage-list-v1.json") +model ModuleStageList { + ...ModuleList; + ...StageList; +}