Converting Date to ISO String in Schema Struct

how to convert a Date to ISO string in a Schema Struct?

export const Entry = S.Struct({
  itemType: ItemType,
  timePeriod: TimePeriod,
  date: // should be an ISO string,
  itemId: S.Int.pipe(S.nonNegative()),
})
`
Was this page helpful?