exiftool-vendored
    Preparing search index...

    Interface KeywordStruct

    Individual keyword node in a hierarchical keyword tree.

    The MWG standard supports unlimited nesting depth, but ExifTool limits extraction to 6 levels to prevent infinite recursion. Example: "Nature > Animals > Mammals > Dogs".

    interface KeywordStruct {
        Applied?: boolean;
        Children?: KeywordStruct[];
        Keyword: string;
    }
    Index

    Properties

    Applied?: boolean

    Indicates whether this keyword has been applied/activated in the image metadata.

    Children?: KeywordStruct[]

    Array of nested keyword structures representing child keywords in the hierarchy.

    Enables multi-level keyword organization by recursively containing additional KeywordStruct entries.

    Keyword: string

    The keyword text value for this node in the hierarchy.

    This is the actual keyword string that appears at this level.