Schema.Struct({
test: Schema.optionalWith(
Schema.NullOr(Schema.String).pipe(
Schema.annotations({
description: 'Test',
examples: ['test'],
})
),
{ default: () => null }
),
})
Schema.Struct({
test: Schema.optionalWith(
Schema.NullOr(Schema.String).pipe(
Schema.annotations({
description: 'Test',
examples: ['test'],
})
),
{ default: () => null }
),
})