type
FieldDocument
type FieldDocument = Record<string, unknown> & {
id: string;
createdAt?: string;
updatedAt?: string;
deletedAt?: string;
_status?: "draft" | "published";
_revision?: number;
_localization?: {
sources: Record<string, string>;
};
}The authoring-safe document shape exposed to extension components.