One spelling per shape: reject a one-item choice, a repeated item and an inert object; reshape the data

This commit is contained in:
2026-09-02 12:38:59 +02:00
parent de8c1d13e9
commit 054f99c94f
49 changed files with 620 additions and 593 deletions
+16 -3
View File
@@ -1,5 +1,18 @@
[
{ "format": "4{d}{luhn()}", "d": { "format": "{digits(1)}", "repeat": 14 }, "weight": 4 },
{ "format": "5{m}{d}{luhn()}", "m": ["1", "2", "3", "4", "5"], "d": { "format": "{digits(1)}", "repeat": 13 }, "weight": 3 },
{ "format": "3{m}{d}{luhn()}", "m": ["4", "7"], "d": { "format": "{digits(1)}", "repeat": 12 }, "weight": 1 }
{
"format": "4{d}{luhn()}",
"d": { "format": "{digits(1)}", "repeat": 14 },
"weight": 4
},
{
"format": "5{m}{d}{luhn()}",
"m": ["1", "2", "3", "4", "5"],
"d": { "format": "{digits(1)}", "repeat": 13 },
"weight": 3
},
{
"format": "3{m}{d}{luhn()}",
"m": ["4", "7"],
"d": { "format": "{digits(1)}", "repeat": 12 }
}
]