ChemPare Documentation - v0.0.0
    Preparing search index...

    Interface ContentFolder

    Represents a content folder structure in the Carolina system. Contains folder path information and optional child rules for content organization.

    interface ContentFolder {
        templateType: string;
        metadata?: Record<string, unknown>;
        contentId: string;
        containerContentId?: string;
        attributes: Record<string, unknown>;
        executionStartTime: number;
        previewMode: boolean;
        folderPath: string;
        childRules?: ContentRule[];
        "@type": "ContentRuleFolder";
    }

    Hierarchy (View Summary)

    Index

    Properties

    templateType: string

    The type of template being used

    metadata?: Record<string, unknown>

    Optional metadata key-value pairs associated with the object

    contentId: string

    Unique identifier for the content

    containerContentId?: string

    Optional identifier for the parent container

    attributes: Record<string, unknown>

    Additional attributes stored as key-value pairs

    executionStartTime: number

    Timestamp when execution started

    previewMode: boolean

    Flag indicating if the content is in preview mode

    folderPath: string

    Path to the content folder

    childRules?: ContentRule[]

    Optional array of content rules that apply to this folder

    "@type": "ContentRuleFolder"

    Type identifier for content rule folders