Saxonberg Server API
    Preparing search index...

    Interface SettingsSnapshotEntry

    One row of listSettings() output — a snapshot of one effective schema entry plus its current value and override state.

    interface SettingsSnapshotEntry {
        currentValue: unknown;
        isOverridden: boolean;
        schema: SettingsSchemaEntry;
        sourceMixin: string;
    }
    Index

    Properties

    currentValue: unknown

    Stored override if present, else schema.default.

    isOverridden: boolean

    True iff a value lives in this entry's lifetime-specified store.

    sourceMixin: string

    _mixinName of the layer that declared the entry.