@cpod/sdk - v0.2.7
    Preparing search index...

    Interface Entity

    Named entity extracted from documents

    interface Entity {
        id: string;
        name: string;
        type?: string;
        count: number;
        sources?: string[] | null;
    }
    Index

    Properties

    id: string

    Entity identifier

    name: string

    Entity name/value

    type?: string

    Entity type (e.g., "PERSON", "ORG", "LOCATION") - optional now

    count: number

    Number of occurrences

    sources?: string[] | null

    Sources containing this entity