Schema.Struct(
{
mandatory: Schema.NonEmpty,
mandatory2: Schema.NonEmpty,
mandatory3: Schema.OptionFromNullishOr(Schema.Date, undefined),
},
Schema.Record(
Schema.NonEmpty,
Schema.OptionFromNullishOr(Schema.NonEmpty, undefined),
),
)
Schema.Struct(
{
mandatory: Schema.NonEmpty,
mandatory2: Schema.NonEmpty,
mandatory3: Schema.OptionFromNullishOr(Schema.Date, undefined),
},
Schema.Record(
Schema.NonEmpty,
Schema.OptionFromNullishOr(Schema.NonEmpty, undefined),
),
)