Key validation on arbitrary number of properties.
I'm working on validating an object where:
- Some property keys are known and expected.
- Other extra/unknown keys are allowed only if they follow a specific pattern.
Pattern for extra keys:
Keys should match the format:
Where: -
metafield.<namespace>.<key>
Where: -
namespace
and key
can contain alphanumeric characters, underscores, or hyphens.
Here's the regex I'm using:
Example payload:
Question:
How can I define a Arktype type that allows:
- Some known, explicitly typed keys.
- And any number of extra keys that match the regex pattern above?18 Replies
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:
This data would cause this error
and this data would cause this error (missing metafield errors)
What am I doing wrong or missing ?Well I have some good news for you- you don't have to work so hard 😅
Nice but then what about custom error message, otherwise it shows that all extra invalid keys must be removed.

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.I mean I'd say that's a pretty good error message but I get wanting to include the correct format.
Probably easiest to just transform the messages you want after validation like:
In terms of
.narrow
, it has to run after the base checks have succeeded otherwise you would be able to have an inferred input type to narrow from.
If you want to give those errors regardless, I would separate it into two types. The first just checks type("object").narrow(...your custom key validation logic...)
and the second can check known keys.I figured that If I wanted this type of operation for this narrow use case, I would probably have to split it up.
But if you are interested in a comparison to Zod, someone came up with this in Zod:
Error shown as :
In this case with this Zod type I would be able to collect all errors at once
I mean if that is super important just define the known keys type, then call it and add errors from the narrow
Problem I mention earlier is if validation failed on known keys then the narrow errors were ignored.
I really feel like using the index signature is the best way though because you're not having to manually control narrowing flow
Yes but then I have no control on the error messages it produces. And would have to do manual processing afterwards
small error in the regex
this is the corrected one:
Okay lol I just copied yours not exactly the point...
yes just made the correction in case you were testing it your side and seeing nothing
your last example works well to get all errors at once, appreciate the time taken.
Glad it was helpful!
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.
I also want a dedicated code for undeclared key errors so you could leverage that directly in the future
https://github.com/arktypeio/arktype/issues/1403
GitHub
Add dedicated error code for undeclared key · Issue #1403 · arkty...
This would allow customization for undeclared key errors. Currently, we are just using a general "predicate" error: ctx.errorFromNodeContext({ code: "predicate", expected: "...