@blockchaincommons/known-values - v1.0.0-beta.4
    Preparing search index...

    Interface RegistryFile

    A parsed registry file.

    interface RegistryFile {
        ontology?: OntologyInfo;
        generated?: GeneratedInfo;
        entries: readonly RegistryEntry[];
        statistics?: unknown;
    }
    Index
    ontology?: OntologyInfo

    The ontology block, when given and not null.

    generated?: GeneratedInfo

    The generated block, when given and not null.

    entries: readonly RegistryEntry[]

    The entries, in file order; duplicates are kept.

    statistics?: unknown

    The statistics value, when given and not null: any JSON value, with objects as plain objects (a repeated key keeps its last value), arrays as arrays, JSON integers as bigint, JSON numbers with a fraction or an exponent as number, and null as null.