diff --git a/src/BlockStruct.ts b/src/BlockStruct.ts index 06e66dc..a154b77 100644 --- a/src/BlockStruct.ts +++ b/src/BlockStruct.ts @@ -110,7 +110,9 @@ const TableTitleBlockSchema = BlockBaseSchema.extend({ Relationships: object({ Type: literal('CHILD'), Ids: string().array(), - }).array(), + }) + .array() + .nullable(), }); export type TableTitleBlock = zinfer;