Blockchain Commons Known Values TypeScript Library - v1.0.0-alpha.20
    Preparing search index...

    Interface RegistryFile

    Root structure of a known values JSON registry file.

    interface RegistryFile {
        ontology?: {
            name?: string;
            source_url?: string;
            start_code_point?: number;
            processing_strategy?: string;
        };
        generated?: { tool?: string; version?: string };
        entries: RegistryEntry[];
        statistics?: unknown;
    }
    Index

    Properties

    ontology?: {
        name?: string;
        source_url?: string;
        start_code_point?: number;
        processing_strategy?: string;
    }

    Metadata about this registry.

    generated?: { tool?: string; version?: string }

    Information about how this file was generated.

    entries: RegistryEntry[]

    The known value entries in this registry.

    statistics?: unknown

    Statistics about this registry (ignored during parsing).