Member Junction
    Preparing search index...

    Interface ExternalSchemaObject

    One table/view/collection discovered during schema introspection.

    interface ExternalSchemaObject {
        Columns: ExternalSchemaColumn[];
        Name: string;
        ObjectType: ExternalObjectType;
        Relationships?: ExternalSchemaRelationship[];
        Schema?: string;
    }
    Index

    Properties

    Name: string
    ObjectType: ExternalObjectType
    Relationships?: ExternalSchemaRelationship[]

    Foreign-key relationships originating from this object (the referencing side). Optional and additive: drivers populate this incrementally as per-provider relationship introspection lands, and DBAutoDoc may further enrich it. An absent or empty array means "relationships not yet discovered", NOT "this object has no relationships".

    Schema?: string

    Schema/namespace the object lives in on the remote side, when applicable.