Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

180
Views
Yup schema with vee-validate and typescript

I wanna validate an array of objects with yup schema validation, but I have typescript error.

This is my yup schema:

const validationSchema = yup.object({
  roles: yup
    .array()
    .of(
      yup.object().shape({
        id: yup.number(),
        title: yup.string(),
        created_at: yup.string(),
        updated_at: yup.string(),
      })
    )
    .required('Role is required'),
});

And Setup (here I have an error):

 const { handleSubmit, errors, meta, setValues } = useForm({
      validationSchema,
    });
    const { value: roles } = useField<RoleType[]>('roles');

    watch(
      () => props.data,
      (value) => {
        if (value) {
          const { roles } = value;

          setValues({
            roles,
          });
        }
      },
      {
        immediate: true,
      }
    );

enter image description here

RoleType interface:

export interface RoleType {
  id: number;
  title: string;
  created_at: string;
  updated_at: string;
}

How can I fix that?

about 4 years ago · Juan Pablo Isaza
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!