drop error improvements across the board for localization

This commit is contained in:
2026-06-23 17:47:19 -04:00
parent d77765cb61
commit b0377e076e
42 changed files with 8857 additions and 773 deletions

View File

@ -38,7 +38,20 @@
"schema_id": "maxLength_0_0",
"action": "validate",
"expect": {
"success": false
"success": false,
"errors": [
{
"code": "MAX_LENGTH_VIOLATED",
"values": {
"count": "3",
"limit": "2"
},
"details": {
"path": "",
"schema": "maxLength_0_0"
}
}
]
}
},
{
@ -52,7 +65,7 @@
},
{
"description": "two graphemes is long enough",
"data": "\ud83d\udca9\ud83d\udca9",
"data": "💩💩",
"schema_id": "maxLength_0_0",
"action": "validate",
"expect": {
@ -91,7 +104,20 @@
"schema_id": "maxLength_1_0",
"action": "validate",
"expect": {
"success": false
"success": false,
"errors": [
{
"code": "MAX_LENGTH_VIOLATED",
"values": {
"count": "3",
"limit": "2"
},
"details": {
"path": "",
"schema": "maxLength_1_0"
}
}
]
}
}
]