"""
sebi_fpi_validator — Validates Foreign Portfolio Investor (FPI) compliance under SEBI (Foreign Portfolio Investors) Regulations, 2019
PREMIUM SKILL — full implementation available to subscribers.
Subscribe: https://snowdrop.ai (launching soon)
AUTO-GENERATED STUB — do not edit manually.
Source of truth: snowdrop-core/skills/premium/compliance/sebi_fpi_validator.py
Regenerate: python scripts/build_public_stubs.py
"""
from __future__ import annotations # defers annotation evaluation (PEP 563)
from typing import Any, Optional, Union # FastMCP resolves annotations via get_type_hints()
from skills._paywall import paywall_response
TOOL_META = {
"name": "sebi_fpi_validator",
"tier": "premium",
"description": "Validates Foreign Portfolio Investor (FPI) compliance under SEBI (Foreign Portfolio Investors) Regulations, 2019. Determines FPI Category I, II, or III; checks the 10% single-company investment limit, 24%/49% sectoral caps, and grandfathering provisions. (Premium — subscribe at https://snowdrop.ai)",
}
def sebi_fpi_validator(entity_data: dict[str, Any]) -> dict[str, Any]:
"""Premium skill — subscribe to access full implementation."""
return paywall_response("sebi_fpi_validator")