Interface ConceptBeta

Represents a concept with various properties and relationships.

interface Concept {
    allLabelKeys: string[];
    allProperties: undefined | Property[];
    archetype: string;
    columns: string[];
    concept_name: string;
    labelKeys: string[];
    parents: string[];
    properties: undefined | Property[];
    relationships: Relationship[];
    tags: Tag[];
}

Properties

allLabelKeys: string[]

All label keys for the concept.

allProperties: undefined | Property[]

All properties of the concept.

archetype: string

The archetype of the concept.

columns: string[]

The columns associated with the concept.

concept_name: string

The name of the concept.

labelKeys: string[]

The label keys for the concept.

parents: string[]

The parent concepts.

properties: undefined | Property[]

The properties of the concept.

relationships: Relationship[]

The relationships of the concept.

tags: Tag[]

The tags associated with the concept.