sajad torkamani
const baseSchema = Yup.object().shape({
  id: string().isRequired(),  
  name: string().isRequired()
})

// We extend the baseSchema
const extendedSchema = baseSchema.shape({
   id: number().isRequired(),
   age: number().isRequired()
})
Tagged: Yup