testing/schema_introspect.ts view source
ZodObject<{ data_type: ZodString; udt_name: ZodString; is_nullable: ZodBoolean; column_default: ZodNullable<ZodString>; is_identity: ZodBoolean; }, $strip> import type {ColumnSnapshot} from '@fuzdev/fuz_app/testing/schema_introspect.js'; Per-column structural metadata. The Zod schema is the canonical source
for the column shape — SchemaSnapshot reuses it as the cross-impl
_testing_schema_snapshot RPC action's wire validator, so the
introspection type and the wire contract can't drift apart.