{
  "version": "1.0",
  "name": "Ravindra Kher Group",
  "description": "Agent action map for ravindrakhergroup.com — pro audio, acoustics, and AV integration.",
  "url": "https://ravindrakhergroup.com",
  "actions": [
    {
      "name": "browse_products",
      "description": "Browse the multi-brand pro audio and AV product catalog.",
      "url": "https://ravindrakhergroup.com/products",
      "method": "GET",
      "parameters": {
        "type": "object",
        "properties": {
          "brand": {
            "type": "string",
            "description": "Optional brand slug filter (for example toa, qsc, ahuja)."
          },
          "category": {
            "type": "string",
            "description": "Optional category slug within the selected brand."
          }
        },
        "required": []
      }
    },
    {
      "name": "view_product_brand",
      "description": "Open a specific brand hub in the product catalog.",
      "url": "https://ravindrakhergroup.com/products/{brand}",
      "method": "GET",
      "parameters": {
        "type": "object",
        "properties": {
          "brand": {
            "type": "string",
            "description": "Brand slug from the catalog (for example toa)."
          }
        },
        "required": ["brand"]
      }
    },
    {
      "name": "view_projects",
      "description": "List completed auditorium, natyagruha, and commercial AV installations.",
      "url": "https://ravindrakhergroup.com/projects",
      "method": "GET",
      "parameters": {
        "type": "object",
        "properties": {},
        "required": []
      }
    },
    {
      "name": "view_services",
      "description": "Read acoustical consultancy, pro audio integration, and treatment services.",
      "url": "https://ravindrakhergroup.com/products-services",
      "method": "GET",
      "parameters": {
        "type": "object",
        "properties": {},
        "required": []
      }
    },
    {
      "name": "submit_contact_inquiry",
      "description": "Submit a business inquiry to Ravindra Kher Group via the contact API.",
      "url": "https://ravindrakhergroup.com/api/contact",
      "method": "POST",
      "parameters": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string",
            "description": "Sender full name (minimum 2 characters)."
          },
          "email": {
            "type": "string",
            "format": "email",
            "description": "Sender email address."
          },
          "phone": {
            "type": "string",
            "description": "Optional phone number with country code."
          },
          "company": {
            "type": "string",
            "description": "Optional company or organization name."
          },
          "subject": {
            "type": "string",
            "description": "Optional subject line for the inquiry."
          },
          "message": {
            "type": "string",
            "description": "Inquiry body (minimum 10 characters)."
          },
          "source": {
            "type": "string",
            "description": "Optional lead source tag (defaults to website-contact)."
          }
        },
        "required": ["name", "email", "message"]
      }
    }
  ]
}
