-
-
Notifications
You must be signed in to change notification settings - Fork 8
Open
Description
Consider following schema
const mySchema = object({
id: string(),
name: pipe(string, minStringLength(10))
})Now, I would like to create another schema to validate only part of mySchema. For that reason I can create another schema and pick only a few validators from mySchema, potentially like this:
const anotherSchema = object({
name: mySchema.name
})But the object's validator shape is not available after the validator is built. I took a look at the code and this is potentially possible but the types in refine function are too complex for me at the moment :)
Metadata
Metadata
Assignees
Labels
No labels