get_sendig_variable_details
Retrieve detailed metadata for a SEND variable, including label, datatype, and core status. Optionally include the controlled terminology codelist by specifying domain or SENDIG version.
Instructions
Get detailed metadata for a SEND variable with optional codelist integration
Args: variable (str): Variable name (e.g., "USUBJID", "LBTESTCD", "MISPEC") domain (str): SEND domain name. If not specified, will attempt to auto-detect. sendig_version (str): SENDIG version (e.g., "3-1-1"). If not specified, uses latest version. include_codelist (bool): If True and variable has controlled terminology, retrieve the codelist headers_: Optional custom headers
Returns: dict: Variable details including label, datatype, core status, and optional codelist
Example: get_sendig_variable_details("USUBJID") get_sendig_variable_details("LBTESTCD", "LB", include_codelist=True)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| domain | No | ||
| headers_ | No | ||
| variable | Yes | ||
| sendig_version | No | ||
| include_codelist | No |