Colibrio Reader Framework API - Cloud license
    Preparing search index...

    Interface used for describing serialized FragmentSelectors.

    interface IFragmentSelectorData {
        conformsTo?: string;
        refinedBy?: ISelectorData | ISelectorData[];
        type: string;
        value: string;
    }

    Hierarchy (View Summary)

    Properties

    conformsTo?: string

    A link to the specification that defines the syntax of the fragment. This must be a value as described in https://www.w3.org/TR/annotation-model/#fragment-selector

    A Selector can optionally have a list of selectors that further refine the intended target location. Multiple Selectors should select the same content, however some Selectors will not have the same precision as others. The first selector in the array has the highest precision.

    See https://www.w3.org/TR/annotation-model/#refinement-of-selection

    type: string

    The type of Selector as specified in https://www.w3.org/TR/annotation-model/#selectors

    value: string

    The fragment selector value as a string.