@faubulous/mentor-rdf
    Preparing search index...

    Interface PredicateUsageInfo

    Information about the usage of a single predicate in a document.

    interface PredicateUsageInfo {
        languageTags: { [key: string]: number };
        predicateIri: string;
        subjects: Set<string>;
        usageFrequency: number;
    }
    Index

    Properties

    languageTags: { [key: string]: number }

    Information about the language tags used in the object of triples with the predicate.

    predicateIri: string

    The predicate IRI.

    subjects: Set<string>

    The set of subjects that use the predicate.

    usageFrequency: number

    The number of occurrences of the predicate in a document.