{
    "actions": [
        {
            "name": "search_products",
            "description": "جستجوی تجهیزات و لوازم پزشکی بر اساس نام یا کلمه کلیدی",
            "url": "https://tavanino.com/search-products/search-{query}",
            "method": "GET",
            "parameters": {
                "type": "object",
                "properties": {
                    "query": {
                        "type": "string",
                        "description": "عبارت جستجو برای یافتن محصول"
                    }
                },
                "required": [
                    "query"
                ]
            }
        },
        {
            "name": "browse_products",
            "description": "مشاهده فهرست کامل تجهیزات و لوازم پزشکی",
            "url": "https://tavanino.com/search-products",
            "method": "GET",
            "parameters": {
                "type": "object",
                "properties": []
            }
        },
        {
            "name": "browse_category",
            "description": "مشاهده محصولات یک دسته‌بندی",
            "url": "https://tavanino.com/search-products/category-{category}",
            "method": "GET",
            "parameters": {
                "type": "object",
                "properties": {
                    "category": {
                        "type": "string",
                        "description": "permalink دسته‌بندی"
                    }
                },
                "required": [
                    "category"
                ]
            }
        },
        {
            "name": "browse_brand",
            "description": "مشاهده محصولات یک برند",
            "url": "https://tavanino.com/search-products/brand-{brand}",
            "method": "GET",
            "parameters": {
                "type": "object",
                "properties": {
                    "brand": {
                        "type": "string",
                        "description": "permalink برند"
                    }
                },
                "required": [
                    "brand"
                ]
            }
        },
        {
            "name": "browse_brands",
            "description": "مشاهده فهرست برندهای تجهیزات پزشکی",
            "url": "https://tavanino.com/brands",
            "method": "GET",
            "parameters": {
                "type": "object",
                "properties": []
            }
        },
        {
            "name": "browse_label",
            "description": "مشاهده محصولات یک برچسب (مثلاً اکسیژن‌ساز، فشارسنج، ویلچر)",
            "url": "https://tavanino.com/search-products/label-{label}",
            "method": "GET",
            "parameters": {
                "type": "object",
                "properties": {
                    "label": {
                        "type": "string",
                        "description": "slug برچسب (tag_en با خط تیره)"
                    }
                },
                "required": [
                    "label"
                ]
            }
        },
        {
            "name": "read_articles",
            "description": "مشاهده مجله و مقالات تخصصی تجهیزات پزشکی",
            "url": "https://tavanino.com/articles",
            "method": "GET",
            "parameters": {
                "type": "object",
                "properties": []
            }
        },
        {
            "name": "read_faq",
            "description": "مشاهده سوالات متداول",
            "url": "https://tavanino.com/faq",
            "method": "GET",
            "parameters": {
                "type": "object",
                "properties": []
            }
        }
    ]
}