© 2026 Hedgehog Software, LLC
$types<>()
jsonb
Date
type InvoiceSchema = { invoiceNumber: string; invoiceDate: Date; items: { name: string; }[]; value?: number; } export const myTable = pgTable('my_table', { invoices: jsonb("invoices").$type<InvoiceSchema[]>(), })
{ invoices : [ { invoiceNumber: '3432423', invoiceDate: '2024-07-13T00:00:00.000Z', value: null, items: [ [Object] ] } ] }