Combining Two Schemas in Effect Typescript Library

Is there a way to connect two Schemas together?

For example if I have a Schema<T, U, R1> and a Schema<U, V, R2>, is there nice way combine them and get a Schema<T, V, R1 | R2>?
Was this page helpful?