Issue with Schema.DateTime and JSONSchema Annotations
is it normal that Schema.DateTime does not work with JSONSchema.make? I need to add the annotations for jsonSchema otherwise it return an error https://effect.website/play#702a83558e0f
const date = Schema.DateTimeUtcFromDate.annotations({jsonSchema: {format:'date-time', type:'string'}})console.log(JSONSchema.make(date))
const date = Schema.DateTimeUtcFromDate.annotations({jsonSchema: {format:'date-time', type:'string'}})console.log(JSONSchema.make(date))
why Schema.Date does not have this annotation by default?