interface JRelationship {
    cardinality: JCardinality;
    id: string;
    organizationId: string;
    referencedAttributeName: string;
    referencedDataSourceId: string;
    referencingAttributeName: string;
    referencingAttributes?: JAttribute[];
    referencingDataSourceId: string;
    referencingOrganizationId: string;
    referencingPrefix: string;
}

Properties

cardinality: JCardinality
id: string
organizationId: string

organizationId is the organization id of the referencedDataSourceId

referencedAttributeName: string
referencedDataSourceId: string
referencingAttributeName: string
referencingAttributes?: JAttribute[]
referencingDataSourceId: string
referencingOrganizationId: string
referencingPrefix: string