Expression Language Reference
    Preparing search index...

    Metadata about an extraction input

    interface ExtractInputMetadata {
        attributes: Record<string, any>;
        documentUuid: string;
        fullname: string;
        isFragment: boolean;
        name: string;
        page?: number;
        parentName: string;
        parentUuid: string;
        tags: string[];
    }
    Index

    Properties

    attributes: Record<string, any>

    Attributes of the input For fragments these are attributes attached to the fragment document For pages these are the attributes attached to the origin document

    documentUuid: string

    uiid of the document This will be the uuid of the fragment document for fragments and the parent for pages.

    fullname: string
    isFragment: boolean

    Is this input a fragment of a document

    name: string

    Name of document For a fragment this is the fragment name and not the name of the origin document

    page?: number

    Page number input is found on

    parentName: string

    Name of parent document

    parentUuid: string

    UUID of parent document

    tags: string[]

    List of user tags attached to document.