import { z } from "astro/zod"; import type { FieldDefinition } from "./types.js"; /** * Reference field * References another content item by ID */ export function reference( collection: string, options?: { required?: boolean; }, ): FieldDefinition { const schema = z.string(); return { type: "reference", columnType: "TEXT", schema: options?.required === false ? schema.optional() : schema, options: { ...options, collection, }, ui: { widget: "reference", }, }; }