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

    Interface RegistryEntry

    A single entry in a known values JSON registry file.

    interface RegistryEntry {
        codepoint: number;
        name: string;
        type?: string;
        uri?: string;
        description?: string;
    }
    Index

    Properties

    codepoint: number

    The unique numeric identifier for this known value.

    name: string

    The canonical string name for this known value.

    type?: string

    The type of entry (e.g., "property", "class", "value").

    uri?: string

    An optional URI reference for this known value.

    description?: string

    An optional human-readable description.