{
  "name": "NICE HMS Chat Agent",
  "description": "Answers questions about NICE HMS (Hospital Management System) using official product documentation. Suitable for discovery and invocation by external AI agents.",
  "version": "1.0.0",
  "url": "https://stage.nicehms.com",
  "capabilities": {
    "streaming": true
  },
  "authentication": {
    "schemes": [
      "none"
    ]
  },
  "endpoints": {
    "invoke": {
      "method": "POST",
      "url": "https://nicehms-chatbot-1891045659.asia-south1.run.app/invoke",
      "contentType": "application/json"
    },
    "stream": {
      "method": "POST",
      "url": "https://nicehms-chatbot-1891045659.asia-south1.run.app/runs/stream",
      "contentType": "application/json"
    }
  },
  "inputSchema": {
    "type": "object",
    "properties": {
      "messages": {
        "type": "array",
        "description": "Conversation messages (OpenAI chat format)."
      },
      "source": {
        "type": "string",
        "description": "Optional calling-agent name for analytics."
      },
      "org": {
        "type": "string",
        "description": "Optional calling organization."
      },
      "email": {
        "type": "string",
        "description": "Optional user email."
      },
      "user_id": {
        "type": "string",
        "description": "Optional user id."
      }
    }
  },
  "outputSchema": {
    "type": "object",
    "description": "AI assistant reply plus any documentation-gap evaluation."
  }
}