Skip to content

notionDateStringSchema

const notionDateStringSchema: ZodUnion<readonly [ZodISODateTime, ZodISODate]>

Defined in: src/schemas/shared.schema.ts:20

Notion date string schema.

This schema validates ISO 8601 date strings from the Notion API. It accepts a date-only format (“2023-02-23”) and a full date-time format (“2023-02-23T00:00:00.000Z”).

The Notion API docs describe date fields as “A date, with an optional time”.