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

171
Vistas
How to make strings in object optional with Validate?

When I run the below PoC, I get

ValidationError: Alert.one is not allowed.
ValidationError: Alert.two is not allowed.
ValidationError: Alert must be of type Array.

where I would like all the strings in Alert to be optional.

Can someone figure out how to do that?

const Schema = require('validate');

const p_schema = new Schema({
  Alert: {
    each: { type: String },
    required: false
  },
},{strict: true});

let p = {
  Alert: {
    one: 'x',
    two: 'x'
  }
};

console.log(p_schema.validate(p));
about 4 years ago · Juan Pablo Isaza
1 Respuestas
Responde la pregunta

0

It seems it's the type of Alert is wrong, even though I believe you are setting each value of Alert to string, but Alert type is not specified. Try either adding type: object, or define Alert as a list not object. Try the below:

const p_schema = new Schema({
  Alert: {
    type: object,
    each: { type: String },
    required: false
  },
},{strict: true});
about 4 years ago · Juan Pablo Isaza 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