{
    "name": "ZO International AI Assistant",
    "description": "AI assistant for ZO International service platform",
    "version": "1.0.0",
    "provider": {
        "name": "ZO International",
        "url": "https://www.zointernational.in",
        "privacy_policy": "https://www.zointernational.in/privacy.php"
    },
    "capabilities": {
        "navigation": true,
        "form_submission": true,
        "authentication": false,
        "payments": false
    },
    "endpoints": {
        "services": {
            "url": "https://www.zointernational.in/api/services",
            "method": "GET",
            "description": "List all available services"
        },
        "submit_ticket": {
            "url": "https://www.zointernational.in/api/ticket",
            "method": "POST",
            "description": "Submit a support ticket",
            "requires_auth": false
        },
        "check_status": {
            "url": "https://www.zointernational.in/api/status/{id}",
            "method": "GET",
            "description": "Check application status"
        }
    },
    "authentication": {
        "type": "none",
        "description": "Public endpoints only"
    },
    "links": [
        {
            "rel": "service-doc",
            "href": "https://www.zointernational.in/api-docs/",
            "type": "text/html"
        },
        {
            "rel": "privacy-policy",
            "href": "https://www.zointernational.in/privacy.php",
            "type": "text/html"
        },
        {
            "rel": "terms-of-service",
            "href": "https://www.zointernational.in/terms.php",
            "type": "text/html"
        }
    ],
    "tools": [
        {
            "name": "get_services",
            "description": "Get list of available services",
            "input_schema": {
                "type": "object",
                "properties": {
                    "category": {
                        "type": "string",
                        "description": "Filter by category"
                    }
                }
            }
        },
        {
            "name": "get_service_info",
            "description": "Get detailed information about a service",
            "input_schema": {
                "type": "object",
                "properties": {
                    "service_id": {
                        "type": "string",
                        "description": "Service identifier"
                    }
                },
                "required": [
                    "service_id"
                ]
            }
        },
        {
            "name": "submit_ticket",
            "description": "Submit a support ticket",
            "input_schema": {
                "type": "object",
                "properties": {
                    "name": {
                        "type": "string"
                    },
                    "email": {
                        "type": "string",
                        "format": "email"
                    },
                    "subject": {
                        "type": "string"
                    },
                    "message": {
                        "type": "string"
                    },
                    "category": {
                        "type": "string"
                    }
                },
                "required": [
                    "name",
                    "email",
                    "subject",
                    "message"
                ]
            }
        },
        {
            "name": "check_status",
            "description": "Check application or ticket status",
            "input_schema": {
                "type": "object",
                "properties": {
                    "id": {
                        "type": "string",
                        "description": "Application or ticket ID"
                    }
                },
                "required": [
                    "id"
                ]
            }
        },
        {
            "name": "calculate_fee",
            "description": "Calculate service fee",
            "input_schema": {
                "type": "object",
                "properties": {
                    "service_id": {
                        "type": "string"
                    },
                    "variations": {
                        "type": "array",
                        "items": {
                            "type": "string"
                        }
                    }
                },
                "required": [
                    "service_id"
                ]
            }
        }
    ],
    "metadata": {
        "documentation_url": "https://www.zointernational.in/docs/",
        "support_url": "https://www.zointernational.in/contact.php",
        "api_version": "v1",
        "supported_protocols": [
            "https"
        ]
    }
}