© 2026 Hedgehog Software, LLC
const MySchema = Schema.Struct({ hello: Schema.String }) const MySchema2 = MySchema.pipe( Schema.omit("hello"), Schema.extend(Schema.Struct( { hello: Schema.NullOr(MySchema.fields.hello) } )) )