{
  "schema_version": "1.0",
  "name": "Omni Hub Bangladesh",
  "description": "Bangladesh e-commerce store for Islamic and home decor products with cash on delivery.",
  "url": "https://omnihubbd.com",
  "actions": [
    {
      "name": "search_products",
      "description": "Search the product catalog by keyword.",
      "url": "https://omnihubbd.com/api/search/products",
      "method": "GET",
      "parameters": {
        "type": "object",
        "properties": {
          "q": {
            "type": "string",
            "description": "Search keyword for product name or description"
          }
        },
        "required": ["q"]
      }
    },
    {
      "name": "browse_products",
      "description": "Browse all products with optional category and price filters.",
      "url": "https://omnihubbd.com/products",
      "method": "GET",
      "parameters": {
        "type": "object",
        "properties": {
          "q": {
            "type": "string",
            "description": "Optional search query"
          },
          "category": {
            "type": "string",
            "description": "Optional product category filter"
          },
          "minPrice": {
            "type": "number",
            "description": "Minimum price in BDT"
          },
          "maxPrice": {
            "type": "number",
            "description": "Maximum price in BDT"
          }
        },
        "required": []
      }
    },
    {
      "name": "view_product",
      "description": "Open a product detail page by slug.",
      "url": "https://omnihubbd.com/products/{slug}",
      "method": "GET",
      "parameters": {
        "type": "object",
        "properties": {
          "slug": {
            "type": "string",
            "description": "Product URL slug"
          }
        },
        "required": ["slug"]
      }
    },
    {
      "name": "track_order",
      "description": "Track an order using order number and customer phone.",
      "url": "https://omnihubbd.com/api/track-order",
      "method": "POST",
      "parameters": {
        "type": "object",
        "properties": {
          "order_number": {
            "type": "string",
            "description": "Customer order number"
          },
          "phone": {
            "type": "string",
            "description": "Phone number used when placing the order"
          }
        },
        "required": ["order_number", "phone"]
      }
    },
    {
      "name": "contact_support",
      "description": "View customer support contact options and FAQs.",
      "url": "https://omnihubbd.com/contact",
      "method": "GET",
      "parameters": {
        "type": "object",
        "properties": {},
        "required": []
      }
    }
  ]
}
