You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{"min-properties", `{"kind":"task"}`, "input must contain at least 2 properties"},
136
+
{"max-properties", `{"kind":"task","name":"alpha","ratio":0.5,"tags":["x"],"choice":"fast","single":"x","combined":"abc","extra":1,"extra2":2}`, "input must contain at most 8 properties"},
137
+
{"const", `{"kind":"job","name":"alpha"}`, "input.kind must be task"},
138
+
{"pattern", `{"kind":"task","name":"Alpha"}`, "input.name must match pattern ^[a-z][a-z0-9-]*$"},
139
+
{"max-length", `{"kind":"task","name":"alpha-beta"}`, "input.name must be at most 8 characters"},
140
+
{"exclusive-minimum", `{"kind":"task","ratio":0}`, "input.ratio must be greater than 0"},
141
+
{"exclusive-maximum", `{"kind":"task","ratio":1}`, "input.ratio must be less than 1"},
142
+
{"legacy-exclusive-minimum", `{"kind":"task","legacy_ratio":0}`, "input.legacy_ratio must be greater than 0"},
143
+
{"min-items", `{"kind":"task","tags":[]}`, "input.tags must contain at least 1 items"},
144
+
{"max-items", `{"kind":"task","tags":["a","b","c"]}`, "input.tags must contain at most 2 items"},
145
+
{"any-of", `{"kind":"task","choice":9}`, "input.choice must match at least one allowed schema"},
146
+
{"one-of", `{"kind":"task","single":"same"}`, "input.single must match exactly one allowed schema"},
147
+
{"all-of", `{"kind":"task","combined":"ab"}`, "input.combined must be at least 3 characters"},
0 commit comments