/** * A relation of a specific type to another entity in the catalog. */ export interface EntityRelation { /** * The entity ref of the target of this relation. */ targetRef: string; /** * The type of the relation. */ type: string; }