const SomethingIDWithoptional = Schema.optional(Schema.String).pipe(Schema.annotations({identifier: 'something id'})) // ts error
const SomethingIDWithUndefined = Schema.UndefinedOr(Schema.String).pipe(Schema.annotations({identifier: 'something id'})) // works fine!