import type * as HydraDB from "../index.js"; /** * ProfileContext/ProfileFilter surface the entity-profile block when the * request named a profile_subject (PRO-1797); omitted otherwise. */ export interface SearchProfileContext { /** Unique identifier for this entity in the graph. */ entityId?: string; entries?: HydraDB.SearchProfileEntry[]; headline?: string; /** Human-readable label for this resource. */ name?: string; perspective?: string; subject?: string; summary?: string; version?: number; }