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