AutoBE
    Preparing search index...

    Interface AutoBeInterfaceSchemaDecoupleEdge

    A directed edge in the schema reference graph.

    Represents a property in sourceType that references targetType via $ref. Self-references (sourceType === targetType) are excluded from cycle detection — they represent legitimate tree structures.

    Samchon

    interface AutoBeInterfaceSchemaDecoupleEdge {
        propertyName: string;
        sourceType: string;
        targetType: string;
    }
    Index

    Properties

    propertyName: string

    Property name within the source type that holds the reference.

    sourceType: string

    Schema type that contains the referencing property.

    targetType: string

    Schema type being referenced (the $ref target).