Maxiviper117
Aarktype
•Created by Maxiviper117 on 4/1/2025 in #questions
Key validation on arbitrary number of properties.
The whole use case for this was validating data that would be used to create a Shopify customer via API, where customers on a clients account could have any number of additional metafields that hold extra information apart from the standard. And those metafields need to have that format when recevied to be able to easily parse them to send them correctly to each clients Shopify account to create a customer with unique metafields.
25 replies
Aarktype
•Created by Maxiviper117 on 4/1/2025 in #questions
Key validation on arbitrary number of properties.
your last example works well to get all errors at once, appreciate the time taken.
25 replies
Aarktype
•Created by Maxiviper117 on 4/1/2025 in #questions
Key validation on arbitrary number of properties.
yes just made the correction in case you were testing it your side and seeing nothing
25 replies
Aarktype
•Created by Maxiviper117 on 4/1/2025 in #questions
Key validation on arbitrary number of properties.
small error in the regex
this is the corrected one:
25 replies
Aarktype
•Created by Maxiviper117 on 4/1/2025 in #questions
Key validation on arbitrary number of properties.
Yes but then I have no control on the error messages it produces. And would have to do manual processing afterwards
25 replies
Aarktype
•Created by Maxiviper117 on 4/1/2025 in #questions
Key validation on arbitrary number of properties.
Problem I mention earlier is if validation failed on known keys then the narrow errors were ignored.
25 replies
Aarktype
•Created by Maxiviper117 on 4/1/2025 in #questions
Key validation on arbitrary number of properties.
In this case with this Zod type I would be able to collect all errors at once
25 replies
Aarktype
•Created by Maxiviper117 on 4/1/2025 in #questions
Key validation on arbitrary number of properties.
Error shown as :
25 replies
Aarktype
•Created by Maxiviper117 on 4/1/2025 in #questions
Key validation on arbitrary number of properties.
But if you are interested in a comparison to Zod, someone came up with this in Zod:
25 replies
Aarktype
•Created by Maxiviper117 on 4/1/2025 in #questions
Key validation on arbitrary number of properties.
I figured that If I wanted this type of operation for this narrow use case, I would probably have to split it up.
25 replies
ZZod
•Created by Maxiviper117 on 4/2/2025 in #questions
Maxiviper117 - I'm working on validating an obj...
@Sikari Thanks
Added this to
superRefine()
:
To exclude known keys from being checked against the regex.7 replies
Aarktype
•Created by Maxiviper117 on 4/1/2025 in #questions
Key validation on arbitrary number of properties.
Seems like the issue is that when there's a type invalidation from
type({})
, it takes precedence and overrides any ArkError
added via ctx.reject
in a narrow()
expression. So even if narrow()
adds its own errors, they get ignored unless the known keys type check passes in type({})
.
But the issue is that I might want to collect all errors to send back in a response—so the user sees everything that failed validation at once, rather than fixing one thing, resubmitting, hitting the next error, and repeating that cycle.25 replies
Aarktype
•Created by Maxiviper117 on 4/1/2025 in #questions
Key validation on arbitrary number of properties.

25 replies
Aarktype
•Created by Maxiviper117 on 4/1/2025 in #questions
Key validation on arbitrary number of properties.
Nice but then what about custom error message, otherwise it shows that all extra invalid keys must be removed.
25 replies
Aarktype
•Created by Maxiviper117 on 4/1/2025 in #questions
Key validation on arbitrary number of properties.
This data would cause this error
and this data would cause this error (missing metafield errors)
What am I doing wrong or missing ?
25 replies
Aarktype
•Created by Maxiviper117 on 4/1/2025 in #questions
Key validation on arbitrary number of properties.
My attempt: but issue is if known keys cause error then all invalid metafield invalidation errors excluded from
.summery
unless they are the only errors:
25 replies