Schema.transformOrFail the only way that I can add cross-fields validation for a Schema? I need one field to be >= another basically. Was thinking of a custom combinator based on transformOrFail. Any other suggestions? I was hoping there was something built it that I could combine with, like a validate maybe like this const MySchema = SomeStructSchema.pipe(Schema.validate( inputSchema => inputSchema.a <= inputSchema.b )).