ChemPal Documentation - v0.0.13-beta.5
    Preparing search index...

    Interface ItemCategory

    Represents a category in the Searchanise store. Categories are used to organize products into logical groups.

    const category: ItemCategory = {
    category_id: "123",
    title: "Laboratory Chemicals",
    link: "/collections/lab-chemicals",
    image_link: "/images/lab-chemicals.jpg",
    description: "High purity chemicals for laboratory use"
    };
    interface ItemCategory {
        category_id: string;
        title: string;
        link: string;
        image_link: string;
        description: string;
    }
    Index

    Properties

    category_id: string

    Unique identifier for the category. Used to reference this category in collections and filtering.

    "123456789"
    
    title: string

    Display title of the category. Used in navigation and category listings.

    "Laboratory Chemicals"
    
    link: string

    URL path to the category's listing page. Can be relative to the store's base URL.

    "/collections/lab-chemicals"
    
    image_link: string

    URL to the category's featured image. Used in category listings and navigation.

    "/images/categories/lab-chemicals-banner.jpg"
    
    description: string

    Detailed description of the category. Used on category landing pages and SEO.

    "Browse our selection of high-purity laboratory chemicals"