Maxiviper117 - I'm working on validating an obj...
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 Zod type that allows:
- Some known, explicitly typed keys.
- And any number of extra keys that match the regex pattern above?Solution:Jump to solution
If you wish to get more type safety, here is something: https://tsplay.dev/N5oVdW
TS Playground - An online editor for exploring TypeScript and JavaS...
The Playground lets you write TypeScript or JavaScript online in a safe and sharable way.
4 Replies
You would intersect your known object with the "unknown" record just like in pure types.
Here's a playground for one of the implementations: https://tsplay.dev/ND9Ajm
TS Playground - An online editor for exploring TypeScript and JavaS...
The Playground lets you write TypeScript or JavaScript online in a safe and sharable way.
Solution
If you wish to get more type safety, here is something: https://tsplay.dev/N5oVdW
TS Playground - An online editor for exploring TypeScript and JavaS...
The Playground lets you write TypeScript or JavaScript online in a safe and sharable way.
@Sikari Thanks
Added this to
superRefine()
:
To exclude known keys from being checked against the regex.You might be able to swap the order of the schemas in the intersection, not sure if that would work.
Alternatively, you could extract the known schema to a variable and exclude that way:
Anyways, I hope that helps!