Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

143
Vistas
Using when with objects in array in Yup

I have the following object:

const values = {
  people: [
    {
      name: "Mark",
      age: null
    },
    {
      name: "Shark",
      age: 31
    }
  ],
  isAgeRequired: false
};

When isAgeRequired flips to true, in my Yup schema I would like to make the age value for each object in the people array require.

I have the following yup schema definition, but right now it seems to validate successfully even if the above requirements are not met:

const validator = object({
  people: array(
    object({
      name: string().required(),
      age: number()
        .nullable()
        .when("isAgeRequired", {
          is: true,
          then: (schema) => schema.required()
        })
    })
  )
});
about 4 years ago · Santiago Trujillo
1 Respuestas
Responde la pregunta

0

The problem is that the parent context is not available in parent , so one way around this was to "raise" the isAgeRequired .when .when sibling like so:

 // Declare the default person schema separately because I'll want to reuse it. const person = { name: string().required(), age: number().nullable() } const validator = object({ people: array( object(personSchema) ).when('isAgeRequired', (isAgeRequired, schema) => { if (Required) { return array({ ...personSchema, age: personSchema.age.required() // Override existing age rule and attach .required to it }) } return schema; }) });
about 4 years ago · Santiago Trujillo Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda