Minimal dictionary shape used when reconstructing the filter tree.

interface AcDbPersistDictionary {
    entries: Record<string, string>;
    extensionDictionaryId?: string;
    handle: string;
    ownerObjectId?: string;
}

Properties

entries: Record<string, string>

Named entries mapping to soft/hard-owned object handles.

extensionDictionaryId?: string

Extension dictionary handle, when known.

handle: string

Object handle.

ownerObjectId?: string

Owner object handle, when known.