Add required array element constraints

This commit is contained in:
2026-08-11 17:24:04 +09:00
parent 5a05da6fe4
commit 46b2b3b1b6
35 changed files with 6328 additions and 5042 deletions
+11
View File
@@ -0,0 +1,11 @@
let
Service = {
name = String;
enabled = Bool default true;
};
Services = [...Service];
in
Services & [
{ name = "api"; },
{ name = "worker"; enabled = false; },
]