diff --git a/README.md b/README.md index 948654624..3223d7c3b 100644 --- a/README.md +++ b/README.md @@ -534,3 +534,17 @@ Then run normally: `core.exe validate -rest -of -config -commands --- **Note:** Setting `DATASET_SIZE_THRESHOLD=0` tells the engine to use Dask processing for all datasets regardless of size, size threshold defaults to 1/4 of available RAM so datasets larger than this will use Dask. See env.example to see what the CLI .env file should look like + +## Updating USDM JSON Schema + +Currently, the engine supports USDM JSON Schema validation against versions 3.0 and 4.0. The schema definition files are located at: + +- `resources/cache/usdm-3-0-schema.pkl` +- `resources/cache/usdm-4-0-schema.pkl` + +These schema definitions were derived from the OpenAPI specs located in the `https://github.com/cdisc-org/DDF-RA` repo, so in order to update the existing schemas or create a new one, run: + +1. `git --no-pager --git-dir DDF-RA.git show --format=format:"%B" {required tag (example: v3.0.0)}:Deliverables/API/USDM_API.json > USDM_API_{required version}.json` +2. Use `scripts/openapi-to-json.py` script to convert the OpenAPI spec to JSON schema definition +3. Use `scripts/json_pkl_converter.py` script to convert the JSON file to `.pkl` +4. Place the `.pkl` file to `resources/cache` diff --git a/cdisc_rules_engine/dataset_builders/dataset_builder_factory.py b/cdisc_rules_engine/dataset_builders/dataset_builder_factory.py index 84bea6f9b..7bcdfd3eb 100644 --- a/cdisc_rules_engine/dataset_builders/dataset_builder_factory.py +++ b/cdisc_rules_engine/dataset_builders/dataset_builder_factory.py @@ -1,6 +1,9 @@ # flake8: noqa from typing import Type +from cdisc_rules_engine.dataset_builders.json_schema_check_dataset_builder import ( + JsonSchemaCheckDatasetBuilder, +) from cdisc_rules_engine.dataset_builders.jsonata_dataset_builder import ( JSONataDatasetBuilder, ) @@ -77,6 +80,7 @@ class DatasetBuilderFactory(FactoryInterface): RuleTypes.VALUE_CHECK_WITH_DATASET_METADATA.value: ValueCheckDatasetMetadataDatasetBuilder, RuleTypes.VALUE_CHECK_WITH_VARIABLE_METADATA.value: ValueCheckVariableMetadataDatasetBuilder, RuleTypes.JSONATA.value: JSONataDatasetBuilder, + RuleTypes.JSON_SCHEMA_CHECK.value: JsonSchemaCheckDatasetBuilder, } @classmethod diff --git a/cdisc_rules_engine/dataset_builders/json_schema_check_dataset_builder.py b/cdisc_rules_engine/dataset_builders/json_schema_check_dataset_builder.py new file mode 100644 index 000000000..a2d2b3df4 --- /dev/null +++ b/cdisc_rules_engine/dataset_builders/json_schema_check_dataset_builder.py @@ -0,0 +1,172 @@ +import copy +import json +from copy import deepcopy +import re + +from jsonschema import validators, exceptions +from cdisc_rules_engine.dataset_builders.base_dataset_builder import BaseDatasetBuilder +from cdisc_rules_engine.models.dataset import DatasetInterface +from cdisc_rules_engine.utilities.utils import tag_source + + +class JsonSchemaCheckDatasetBuilder(BaseDatasetBuilder): + dataset_template = { + "json_path": [], + "error_attribute": [], + "error_value": [], + "validator": [], + "validator_value": [], + "message": [], + "dataset": [], + "id": [], + "_path": [], + } + + def build(self, **kwargs) -> DatasetInterface: + return self.get_dataset() + + def _get_cached_dataset(self) -> dict[str, list[str]]: + cache_key: str = ( + f"json_schema_validation_result_{self.data_service.dataset_path}" + ) + if cached := self.cache.get(cache_key): + return cached + + schema = self.library_metadata.standard_schema_definition + cls = validators.validator_for(schema) + cls.check_schema(schema) + validator = cls(schema) + + errtree = exceptions.ErrorTree(validator.iter_errors(self.data_service.json)) + + errlist = copy.deepcopy(self.dataset_template) + self.list_errors(errtree, errlist) + + self.cache.add(cache_key, errlist) + + return errlist + + def get_dataset(self, **kwargs) -> DatasetInterface: + dataset = self._get_cached_dataset() + records = [ + {key: dataset[key][i] for key in dataset} + for i in range(len(next(iter(dataset.values())))) + ] + filtered = [ + row for row in records if row["dataset"] == self.dataset_metadata.name + ] + return tag_source( + ( + self.dataset_implementation.from_records(filtered, **kwargs) + if filtered + else self.dataset_implementation.from_dict( + self.dataset_template, **kwargs + ) + ), + self.dataset_metadata, + ) + + def list_errors(self, tree: exceptions.ErrorTree, errlist: dict[str, list]): + if tree.errors: + for ve in tree.errors.values(): + self.process_error(error=ve, errlist=errlist) + + if len(tree._contents) > 0: + for k, v in tree._contents.items(): + self.list_errors( + tree=v, + errlist=errlist, + ) + + def get_instance_by_path(self, instance: dict, path_list: list) -> dict: + _inst = deepcopy(instance) + for p in path_list: + _inst = _inst[p] + return _inst + + def get_parent_path(self, path_list: list): + return list(path_list)[0 : (-1 - int(isinstance(path_list[-1], int)))] + + def parse_error( + self, + error: exceptions.ValidationError, + errlist: dict[str, list], + errpath: list, + ): + errctx = self.get_instance_by_path(self.data_service.json, errpath) + errattr = ( + self.get_attributes_from_message(error.message) + if error.validator in ["required", "additionalProperties"] + else ( + "{}[{}]".format(error.absolute_path[-2], error.absolute_path[-1]) + if isinstance(error.absolute_path[-1], int) + else error.absolute_path[-1] + ) + ) + errlist["json_path"].append(error.json_path) + errlist["error_attribute"].append(errattr) + errlist["error_value"].append(json.dumps(error.instance)) + errlist["validator"].append(error.validator) + errlist["validator_value"].append(str(error.validator_value)) + errlist["message"].append( + error.message.replace(str(error.instance), f"[Value of {errattr}]") + if len(str(error.instance)) > len(errattr) + 11 + and str(error.instance) in error.message + else error.message + ) + errlist["dataset"].append(errctx.get("instanceType", "") if errctx else "") + errlist["id"].append(errctx.get("id", "") if errctx else "") + errlist["_path"].append("/" + "/".join(map(str, errpath))) + + def list_context_errors( + self, + error: exceptions.ValidationError, + errlist: dict[str, list], + skip_subschemas: list = [], + ): + if error.context: + for vec in error.context: + if ( + skip_subschemas == [] + or list(vec.schema_path)[0] not in skip_subschemas + ): + self.process_error(error=vec, errlist=errlist) + + def process_error( + self, error: exceptions.ValidationError, errlist: dict[str, list] + ): + if error.validator == "anyOf": + skip_ssi = [] + refs = [ + ss["$ref"].split("/")[-1] + for ss in error.schema["anyOf"] + if "$ref" in ss + ] + for vec in error.context: + if ( + list(vec.relative_path) == ["instanceType"] + and vec.validator == "const" + and vec.instance in refs + ) or ( + list(vec.relative_path) == [] + and vec.validator == "type" + and vec.validator_value == "null" + ): + skip_ssi.append(list(vec.schema_path)[0]) + self.list_context_errors( + error=error, errlist=errlist, skip_subschemas=skip_ssi + ) + else: + self.parse_error( + error=error, + errlist=errlist, + errpath=( + error.absolute_path + if error.validator in ["required", "additionalProperties"] + else self.get_parent_path(error.absolute_path) + ), + ) + self.list_context_errors(error=error, errlist=errlist) + + def get_attributes_from_message(self, message: str) -> list[str]: + return re.findall(r"'([^, ]+)'", message) diff --git a/cdisc_rules_engine/enums/rule_types.py b/cdisc_rules_engine/enums/rule_types.py index 0680659d5..6fdc25767 100644 --- a/cdisc_rules_engine/enums/rule_types.py +++ b/cdisc_rules_engine/enums/rule_types.py @@ -32,3 +32,4 @@ class RuleTypes(BaseEnum): ) VALUE_CHECK_WITH_DATASET_METADATA = "Value Check with Dataset Metadata" VALUE_CHECK_WITH_VARIABLE_METADATA = "Value Check with Variable Metadata" + JSON_SCHEMA_CHECK = "JSON Schema Check" diff --git a/cdisc_rules_engine/models/library_metadata_container.py b/cdisc_rules_engine/models/library_metadata_container.py index 52a85ed63..7f4a131e8 100644 --- a/cdisc_rules_engine/models/library_metadata_container.py +++ b/cdisc_rules_engine/models/library_metadata_container.py @@ -7,6 +7,7 @@ class LibraryMetadataContainer: def __init__( self, standard_metadata={}, + standard_schema_definition={}, model_metadata={}, ct_package_metadata={}, variable_codelist_map={}, @@ -15,6 +16,7 @@ def __init__( cache_path: str = "", ): self._standard_metadata = standard_metadata + self._standard_schema_definition = standard_schema_definition self._model_metadata = model_metadata self._ct_package_metadata = ct_package_metadata self._variable_codelist_map = variable_codelist_map @@ -30,6 +32,14 @@ def standard_metadata(self): def standard_metadata(self, value): self._standard_metadata = value + @property + def standard_schema_definition(self): + return self._standard_schema_definition + + @standard_schema_definition.setter + def standard_schema_definition(self, value): + self._standard_schema_definition = value + @property def variable_codelist_map(self): return self._variable_codelist_map diff --git a/resources/cache/usdm-3-0-schema.pkl b/resources/cache/usdm-3-0-schema.pkl new file mode 100644 index 000000000..e9b00e15e Binary files /dev/null and b/resources/cache/usdm-3-0-schema.pkl differ diff --git a/resources/cache/usdm-4-0-schema.pkl b/resources/cache/usdm-4-0-schema.pkl new file mode 100644 index 000000000..3668d749b Binary files /dev/null and b/resources/cache/usdm-4-0-schema.pkl differ diff --git a/resources/schema/Rule_Type.md b/resources/schema/Rule_Type.md index 609fd3c1f..0733d67b3 100644 --- a/resources/schema/Rule_Type.md +++ b/resources/schema/Rule_Type.md @@ -556,3 +556,17 @@ Attach define xml metadata at variable level - `library_variable_data_type` - `library_variable_ccode` - `variable_has_empty_values` + +## JSON Schema Check + +#### Columns: + +- `json_path` +- `error_attribute` +- `error_value` +- `validator` +- `validator_value` +- `message` +- `dataset` +- `id` +- `_path` diff --git a/scripts/json_pkl_converter.py b/scripts/json_pkl_converter.py new file mode 100644 index 000000000..d41f9f142 --- /dev/null +++ b/scripts/json_pkl_converter.py @@ -0,0 +1,47 @@ +import argparse +import os +import json +import pickle + + +def parse_arguments(): + parser = argparse.ArgumentParser(description="Convert between JSON and PKL files.") + parser.add_argument( + "-i", "--input_file", required=True, help="Input file (.json or .pkl)" + ) + args = parser.parse_args() + return args + + +def json_to_pkl(json_path, pkl_path): + with open(json_path, "r", encoding="utf-8") as f: + data = json.load(f) + with open(pkl_path, "wb") as f: + pickle.dump(data, f) + print(f"Converted {json_path} to {pkl_path}") + + +def pkl_to_json(pkl_path, json_path): + with open(pkl_path, "rb") as f: + data = pickle.load(f) + with open(json_path, "w", encoding="utf-8") as f: + json.dump(data, f, ensure_ascii=False, indent=2) + print(f"Converted {pkl_path} to {json_path}") + + +def main(): + args = parse_arguments() + input_file = args.input_file + base, ext = os.path.splitext(input_file) + if ext.lower() == ".json": + out_file = base + ".pkl" + json_to_pkl(input_file, out_file) + elif ext.lower() == ".pkl": + out_file = base + ".json" + pkl_to_json(input_file, out_file) + else: + print("Unsupported file extension. Please provide a .json or .pkl file.") + + +if __name__ == "__main__": + main() diff --git a/scripts/openapi-to-json.py b/scripts/openapi-to-json.py new file mode 100644 index 000000000..a61e7b5f8 --- /dev/null +++ b/scripts/openapi-to-json.py @@ -0,0 +1,59 @@ +import os +import argparse +import json + + +def parse_arguments(): + parser = argparse.ArgumentParser() + parser.add_argument("-i", "--input_file", help="USDM OpenAPI JSON file") + args = parser.parse_args() + return args + + +args = parse_arguments() + +filename = os.path.split(args.input_file)[-1] + +outfname = "".join(filename.split(".")[0]) + "_schemas" + +with open(args.input_file) as f: + openapi = json.load(f) + +jschema = {"$defs": {}} + + +def replace_deep(data, a, b): + if isinstance(data, str): + return data.replace(a, b) + elif isinstance(data, dict): + return {k: replace_deep(v, a, b) for k, v in data.items()} + elif isinstance(data, list): + return [replace_deep(v, a, b) for v in data] + else: + # nothing to do? + return data + + +for sn, sd in openapi["components"]["schemas"].items(): + if sn == "Wrapper-Input": + for k, v in sd.items(): + jschema[k] = replace_deep( + replace_deep(v, "components/schemas", "$defs"), "-Input", "" + ) + elif not sn.endswith("-Output"): + jschema["$defs"][sn.replace("-Input", "")] = replace_deep( + replace_deep(sd, "components/schemas", "$defs"), "-Input", "" + ) + +for v in jschema["$defs"].values(): + v.update({"additionalProperties": False}) + for pn, pd in v.get("properties", {}).items(): + if pn in v.get("required", []) and pd.get("type", "") == "array": + pd.update({"minItems": 1}) + +with open( + os.path.join("".join(os.path.split(args.input_file)[0:-1]), outfname + ".json"), + "w", + encoding="utf-8", +) as f: + json.dump(jschema, f, ensure_ascii=False, indent=4) diff --git a/scripts/script_utils.py b/scripts/script_utils.py index d58c4a8e0..c5a96731c 100644 --- a/scripts/script_utils.py +++ b/scripts/script_utils.py @@ -62,6 +62,9 @@ def get_library_metadata_from_cache(args) -> LibraryMetadataContainer: # noqa ) raise SystemError(2) standards_file = os.path.join(args.cache, "standards_details.pkl") + standard_schema_file = os.path.join( + args.cache, f"{args.standard}-{args.version}-schema.pkl" + ) models_file = os.path.join(args.cache, "standards_models.pkl") variables_codelist_file = os.path.join(args.cache, "variable_codelist_maps.pkl") variables_metadata_file = os.path.join(args.cache, "variables_metadata.pkl") @@ -80,6 +83,12 @@ def get_library_metadata_from_cache(args) -> LibraryMetadataContainer: # noqa else: model_details = {} + if os.path.exists(standard_schema_file): + with open(standard_schema_file, "rb") as f: + standard_schema_definition = pickle.load(f) + else: + standard_schema_definition = {} + with open(variables_codelist_file, "rb") as f: data = pickle.load(f) cache_key = get_standard_codelist_cache_key( @@ -134,6 +143,7 @@ def get_library_metadata_from_cache(args) -> LibraryMetadataContainer: # noqa ct_package_data["extensible"] = extensible_terms return LibraryMetadataContainer( standard_metadata=standard_metadata, + standard_schema_definition=standard_schema_definition, model_metadata=model_details, variable_codelist_map=variable_codelist_maps, variables_metadata=variables_metadata, diff --git a/tests/QARegressionTests/test_Issues/test_CoreIssue715.py b/tests/QARegressionTests/test_Issues/test_CoreIssue715.py new file mode 100644 index 000000000..5459a6b74 --- /dev/null +++ b/tests/QARegressionTests/test_Issues/test_CoreIssue715.py @@ -0,0 +1,139 @@ +import os +import subprocess +import unittest +import openpyxl +import pytest +from conftest import get_python_executable +from QARegressionTests.globals import ( + issue_datails_sheet, + rules_report_sheet, + issue_sheet_record_column, + issue_sheet_variable_column, + issue_sheet_values_column, +) + + +@pytest.mark.regression +class TestCoreIssue715(unittest.TestCase): + def test_positive_dataset(self): + # Run the command in the terminal + command = [ + f"{get_python_executable()}", + "-m", + "core", + "validate", + "-s", + "usdm", + "-v", + "4-0", + "-dp", + os.path.join( + "tests", "resources", "CoreIssue715", "CDISC_Pilot_Study.json" + ), + "-lr", + os.path.join("tests", "resources", "CoreIssue715", "rule.yml"), + ] + subprocess.run(command, check=True) + + # Get the latest created Excel file + files = os.listdir() + excel_files = [ + file + for file in files + if file.startswith("CORE-Report-") and file.endswith(".xlsx") + ] + excel_file_path = sorted(excel_files)[-1] + # # Open the Excel file + workbook = openpyxl.load_workbook(excel_file_path) + + # Go to the "Issue Details" sheet + sheet = workbook[issue_datails_sheet] + + record_column = sheet[issue_sheet_record_column] + variables_column = sheet[issue_sheet_variable_column] + values_column = sheet[issue_sheet_values_column] + + record_values = [cell.value for cell in record_column[1:]] + variables_values = [cell.value for cell in variables_column[1:]] + values_column_values = [cell.value for cell in values_column[1:]] + + # Remove None values using list comprehension + record_values = [value for value in record_values if value is not None] + variables_values = [value for value in variables_values if value is not None] + values_column_values = [ + value for value in values_column_values if value is not None + ] + rules_values = [ + row for row in workbook[rules_report_sheet].iter_rows(values_only=True) + ][1:] + rules_values = [row for row in rules_values if any(row)] + # Perform the assertion + assert rules_values[0][0] == "DDF00081" + assert "SUCCESS" in rules_values[0] + assert len(record_values) == 0 + assert len(variables_values) == 0 + assert len(values_column_values) == 0 + if os.path.exists(excel_file_path): + os.remove(excel_file_path) + + def test_negative_dataset(self): + # Run validation for invalid JSON + command = [ + f"{get_python_executable()}", + "-m", + "core", + "validate", + "-s", + "usdm", + "-v", + "4-0", + "-dp", + os.path.join( + "tests", "resources", "CoreIssue715", "CDISC_Pilot_Study_Invalid.json" + ), + "-lr", + os.path.join("tests", "resources", "CoreIssue715", "rule.yml"), + ] + subprocess.run(command, check=True) + + files = os.listdir() + excel_files = [ + f for f in files if f.startswith("CORE-Report-") and f.endswith(".xlsx") + ] + excel_file_path = sorted(excel_files)[-1] + workbook = openpyxl.load_workbook(excel_file_path) + + # Issue Summary basic checks + issue_summary_sheet = workbook["Issue Summary"] + summary_values = [r for r in issue_summary_sheet.iter_rows(values_only=True)][ + 1: + ] + summary_values = [r for r in summary_values if any(r)] + assert summary_values and summary_values[0][1] == "DDF00081" + assert summary_values[0][3] == 1 + + # Issue Details strict checks: now expect one row per error + issue_details_sheet = workbook[issue_datails_sheet] + details_rows = [r for r in issue_details_sheet.iter_rows(values_only=True)][1:] + details_rows = [r for r in details_rows if any(r)] + # Expect exactly 15 rows + assert len(details_rows) == 15 + + # Expected exact strings + for row in details_rows: + assert row[0] == "DDF00081" + assert ( + row[2] + == "The class relationship does not conform with the USDM schema." + ) + assert row[7] == ("json_path, message") + + # Rules Report + rules_rows = [ + r for r in workbook[rules_report_sheet].iter_rows(values_only=True) + ][1:] + rules_rows = [r for r in rules_rows if any(r)] + assert rules_rows and rules_rows[0][0] == "DDF00081" + assert "SUCCESS" in rules_rows[0] + if os.path.exists(excel_file_path): + os.remove(excel_file_path) diff --git a/tests/resources/CoreIssue715/CDISC_Pilot_Study.json b/tests/resources/CoreIssue715/CDISC_Pilot_Study.json new file mode 100644 index 000000000..861fce818 --- /dev/null +++ b/tests/resources/CoreIssue715/CDISC_Pilot_Study.json @@ -0,0 +1,19809 @@ +{ + "study": { + "id": null, + "name": "CDISC PILOT - LZZT", + "description": null, + "label": null, + "versions": [ + { + "id": "StudyVersion_1", + "extensionAttributes": [], + "versionIdentifier": "2", + "rationale": "The discontinuation rate associated with this oral dosing regimen was 58.6% in previous studies, and alternative clinical strategies have been sought to improve tolerance for the compound. To that end, development of a Transdermal Therapeutic System (TTS) has been initiated.", + "documentVersionIds": [ + "StudyDefinitionDocumentVersion_1", + "StudyDefinitionDocumentVersion_2" + ], + "dateValues": [ + { + "id": "GovernanceDate_1", + "extensionAttributes": [], + "name": "D_APPROVE", + "label": "Design Approval", + "description": "Design approval date", + "type": { + "id": "Code_13", + "extensionAttributes": [], + "code": "C132352", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Sponsor Approval Date", + "instanceType": "Code" + }, + "dateValue": "2006-06-01", + "geographicScopes": [ + { + "id": "GeographicScope_1", + "extensionAttributes": [], + "type": { + "id": "Code_14", + "extensionAttributes": [], + "code": "C68846", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Global", + "instanceType": "Code" + }, + "code": null, + "instanceType": "GeographicScope" + } + ], + "instanceType": "GovernanceDate" + } + ], + "amendments": [ + { + "id": "StudyAmendment_1", + "extensionAttributes": [], + "name": "AMEND_1", + "label": "Amendment 1", + "description": "The first amendment", + "number": "1", + "summary": "Updated inclusion criteria", + "primaryReason": { + "id": "StudyAmendmentReason_1", + "extensionAttributes": [], + "code": { + "id": "Code_88", + "extensionAttributes": [], + "code": "C99904x3", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "IRB/IEC Feedback", + "instanceType": "Code" + }, + "otherReason": null, + "instanceType": "StudyAmendmentReason" + }, + "secondaryReasons": [ + { + "id": "StudyAmendmentReason_2", + "extensionAttributes": [], + "code": { + "id": "Code_89", + "extensionAttributes": [], + "code": "C17649", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Other", + "instanceType": "Code" + }, + "otherReason": "Fix typographical errors", + "instanceType": "StudyAmendmentReason" + } + ], + "changes": [ + { + "id": "StudyChange_1", + "extensionAttributes": [], + "name": "AMEND_CHG_1", + "label": "", + "description": "", + "summary": "Fixed F", + "rationale": "Disaster!", + "changedSections": [ + { + "id": "DocumentContentReference_1", + "extensionAttributes": [], + "sectionNumber": "1.5", + "sectionTitle": "Header 1.5", + "appliesToId": "StudyDefinitionDocument_1", + "instanceType": "DocumentContentReference" + } + ], + "instanceType": "StudyChange" + } + ], + "impacts": [ + { + "id": "StudyAmendmentImpact_1", + "extensionAttributes": [], + "type": { + "id": "Code_93", + "extensionAttributes": [], + "code": "C99912x1", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Study Subject Safety", + "instanceType": "Code" + }, + "text": "Amendment 1", + "isSubstantial": false, + "notes": [], + "instanceType": "StudyAmendmentImpact" + } + ], + "geographicScopes": [ + { + "id": "GeographicScope_5", + "extensionAttributes": [], + "type": { + "id": "Code_92", + "extensionAttributes": [], + "code": "C68846", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Global", + "instanceType": "Code" + }, + "code": null, + "instanceType": "GeographicScope" + } + ], + "enrollments": [ + { + "id": "SubjectEnrollment_1", + "extensionAttributes": [], + "name": "XXX", + "label": null, + "description": null, + "quantity": { + "id": "Quantity_1", + "extensionAttributes": [], + "value": 15.0, + "unit": null, + "instanceType": "Quantity" + }, + "forGeographicScope": { + "id": "GeographicScope_4", + "extensionAttributes": [], + "type": { + "id": "Code_91", + "extensionAttributes": [], + "code": "C41129", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Region", + "instanceType": "Code" + }, + "code": { + "id": "AliasCode_22", + "extensionAttributes": [], + "standardCode": { + "id": "Code_90", + "extensionAttributes": [], + "code": "150", + "codeSystem": "ISO 3166 1 alpha3", + "codeSystemVersion": "2020-08", + "decode": "Europe", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "instanceType": "GeographicScope" + }, + "forStudyCohortId": null, + "forStudySiteId": null, + "instanceType": "SubjectEnrollment" + } + ], + "dateValues": [ + { + "id": "GovernanceDate_3", + "extensionAttributes": [], + "name": "AMEND_DATE_1", + "label": "Protocol Approval", + "description": "Amendment approval date", + "type": { + "id": "Code_18", + "extensionAttributes": [], + "code": "C99903x1", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Protocol Effective Date", + "instanceType": "Code" + }, + "dateValue": "2006-06-01", + "geographicScopes": [ + { + "id": "GeographicScope_3", + "extensionAttributes": [], + "type": { + "id": "Code_19", + "extensionAttributes": [], + "code": "C68846", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Global", + "instanceType": "Code" + }, + "code": null, + "instanceType": "GeographicScope" + } + ], + "instanceType": "GovernanceDate" + } + ], + "previousId": null, + "notes": [], + "instanceType": "StudyAmendment" + } + ], + "businessTherapeuticAreas": [ + { + "id": "Code_8", + "extensionAttributes": [], + "code": "PHARMA", + "codeSystem": "SPONSOR", + "codeSystemVersion": "12", + "decode": "Eli Lilly", + "instanceType": "Code" + } + ], + "studyIdentifiers": [ + { + "id": "StudyIdentifier_1", + "extensionAttributes": [], + "text": "H2Q-MC-LZZT", + "scopeId": "Organization_1", + "instanceType": "StudyIdentifier" + }, + { + "id": "StudyIdentifier_2", + "extensionAttributes": [], + "text": "NCT12345678", + "scopeId": "Organization_2", + "instanceType": "StudyIdentifier" + } + ], + "referenceIdentifiers": [ + { + "id": "ReferenceIdentifier_1", + "extensionAttributes": [], + "text": "LZZT CD Plan 1", + "scopeId": "Organization_1", + "instanceType": "ReferenceIdentifier", + "type": { + "id": "Code_94", + "extensionAttributes": [], + "code": "C142424", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Clinical Development Plan", + "instanceType": "Code" + } + } + ], + "studyDesigns": [ + { + "id": "InterventionalStudyDesign_1", + "extensionAttributes": [], + "name": "Study Design 1", + "label": "USDM Example Study Design", + "description": "The main design for the study", + "studyType": { + "id": "Code_159", + "extensionAttributes": [], + "code": "C98388", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Interventional Study", + "instanceType": "Code" + }, + "studyPhase": { + "id": "AliasCode_24", + "extensionAttributes": [], + "standardCode": { + "id": "Code_160", + "extensionAttributes": [], + "code": "C15601", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Phase II Trial", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "therapeuticAreas": [ + { + "id": "Code_149", + "extensionAttributes": [], + "code": "MILD_MOD_ALZ", + "codeSystem": "SPONSOR", + "codeSystemVersion": "12", + "decode": "Mild to Moderate Alzheimer's Disease", + "instanceType": "Code" + }, + { + "id": "Code_150", + "extensionAttributes": [], + "code": "26929004", + "codeSystem": "SNOMED", + "codeSystemVersion": "January 31, 2018", + "decode": "Alzheimer's disease", + "instanceType": "Code" + } + ], + "characteristics": [ + { + "id": "Code_157", + "extensionAttributes": [], + "code": "C99907x1", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "EXTENSION", + "instanceType": "Code" + }, + { + "id": "Code_158", + "extensionAttributes": [], + "code": "C98704", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "ADAPTIVE", + "instanceType": "Code" + } + ], + "encounters": [ + { + "id": "Encounter_1", + "extensionAttributes": [], + "name": "E1", + "label": "Screening 1", + "description": "Screening encounter", + "type": { + "id": "Code_98", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": null, + "nextId": "Encounter_2", + "scheduledAtId": null, + "environmentalSettings": [ + { + "id": "Code_99", + "extensionAttributes": [], + "code": "C51282", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Clinic", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_100", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "In Person", + "instanceType": "Code" + } + ], + "transitionStartRule": { + "id": "TransitionRule_1", + "extensionAttributes": [], + "name": "ENCOUNTER_START_RULE_1", + "label": null, + "description": null, + "text": "Subject identifier", + "instanceType": "TransitionRule" + }, + "transitionEndRule": { + "id": "TransitionRule_2", + "extensionAttributes": [], + "name": "ENCOUNTER_START_RULE_1", + "label": null, + "description": null, + "text": "completion of screening activities", + "instanceType": "TransitionRule" + }, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_2", + "extensionAttributes": [], + "name": "E2", + "label": "Screening 2", + "description": "Screening encounter - Ambulatory ECG Placement", + "type": { + "id": "Code_101", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_1", + "nextId": "Encounter_3", + "scheduledAtId": "Timing_2", + "environmentalSettings": [ + { + "id": "Code_102", + "extensionAttributes": [], + "code": "C51282", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Clinic", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_103", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "In Person", + "instanceType": "Code" + } + ], + "transitionStartRule": null, + "transitionEndRule": { + "id": "TransitionRule_3", + "extensionAttributes": [], + "name": "ENCOUNTER_START_RULE_2", + "label": null, + "description": null, + "text": "subject leaves clinic after connection of ambulatory ECG machine", + "instanceType": "TransitionRule" + }, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_3", + "extensionAttributes": [], + "name": "E3", + "label": "Baseline", + "description": "Baseline encounter - Ambulatory ECG Removal", + "type": { + "id": "Code_104", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_2", + "nextId": "Encounter_4", + "scheduledAtId": null, + "environmentalSettings": [ + { + "id": "Code_105", + "extensionAttributes": [], + "code": "C51282", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Clinic", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_106", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "In Person", + "instanceType": "Code" + } + ], + "transitionStartRule": { + "id": "TransitionRule_4", + "extensionAttributes": [], + "name": "ENCOUNTER_START_RULE_3", + "label": null, + "description": null, + "text": "subject has connection of ambulatory ECG machine removed", + "instanceType": "TransitionRule" + }, + "transitionEndRule": { + "id": "TransitionRule_5", + "extensionAttributes": [], + "name": "ENCOUNTER_START_RULE_3", + "label": null, + "description": null, + "text": "Radomized", + "instanceType": "TransitionRule" + }, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_4", + "extensionAttributes": [], + "name": "E4", + "label": "Week 2", + "description": "Day 14", + "type": { + "id": "Code_107", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_3", + "nextId": "Encounter_5", + "scheduledAtId": "Timing_4", + "environmentalSettings": [ + { + "id": "Code_108", + "extensionAttributes": [], + "code": "C51282", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Clinic", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_109", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "In Person", + "instanceType": "Code" + } + ], + "transitionStartRule": null, + "transitionEndRule": null, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_5", + "extensionAttributes": [], + "name": "E5", + "label": "Week 4", + "description": "Day 28", + "type": { + "id": "Code_110", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_4", + "nextId": "Encounter_6", + "scheduledAtId": "Timing_5", + "environmentalSettings": [ + { + "id": "Code_111", + "extensionAttributes": [], + "code": "C51282", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Clinic", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_112", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "In Person", + "instanceType": "Code" + } + ], + "transitionStartRule": null, + "transitionEndRule": null, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_6", + "extensionAttributes": [], + "name": "E7", + "label": "Week 6", + "description": "Day 42", + "type": { + "id": "Code_113", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_5", + "nextId": "Encounter_7", + "scheduledAtId": "Timing_6", + "environmentalSettings": [ + { + "id": "Code_114", + "extensionAttributes": [], + "code": "C51282", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Clinic", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_115", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "In Person", + "instanceType": "Code" + } + ], + "transitionStartRule": null, + "transitionEndRule": null, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_7", + "extensionAttributes": [], + "name": "E8", + "label": "Week 8", + "description": "Day 56", + "type": { + "id": "Code_116", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_6", + "nextId": "Encounter_8", + "scheduledAtId": "Timing_7", + "environmentalSettings": [ + { + "id": "Code_117", + "extensionAttributes": [], + "code": "C51282", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Clinic", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_118", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "In Person", + "instanceType": "Code" + }, + { + "id": "Code_119", + "extensionAttributes": [], + "code": "C171537", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Telephone Call", + "instanceType": "Code" + } + ], + "transitionStartRule": null, + "transitionEndRule": null, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_8", + "extensionAttributes": [], + "name": "E9", + "label": "Week 12", + "description": "Day 84", + "type": { + "id": "Code_120", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_7", + "nextId": "Encounter_9", + "scheduledAtId": "Timing_9", + "environmentalSettings": [ + { + "id": "Code_121", + "extensionAttributes": [], + "code": "C51282", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Clinic", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_122", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "In Person", + "instanceType": "Code" + }, + { + "id": "Code_123", + "extensionAttributes": [], + "code": "C171537", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Telephone Call", + "instanceType": "Code" + } + ], + "transitionStartRule": null, + "transitionEndRule": null, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_9", + "extensionAttributes": [], + "name": "E10", + "label": "Week 16", + "description": "Day 112", + "type": { + "id": "Code_124", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_8", + "nextId": "Encounter_10", + "scheduledAtId": "Timing_11", + "environmentalSettings": [ + { + "id": "Code_125", + "extensionAttributes": [], + "code": "C51282", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Clinic", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_126", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "In Person", + "instanceType": "Code" + }, + { + "id": "Code_127", + "extensionAttributes": [], + "code": "C171537", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Telephone Call", + "instanceType": "Code" + } + ], + "transitionStartRule": null, + "transitionEndRule": null, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_10", + "extensionAttributes": [], + "name": "E11", + "label": "Week 20", + "description": "Day 140", + "type": { + "id": "Code_128", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_9", + "nextId": "Encounter_11", + "scheduledAtId": "Timing_13", + "environmentalSettings": [ + { + "id": "Code_129", + "extensionAttributes": [], + "code": "C51282", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Clinic", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_130", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "In Person", + "instanceType": "Code" + }, + { + "id": "Code_131", + "extensionAttributes": [], + "code": "C171537", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Telephone Call", + "instanceType": "Code" + } + ], + "transitionStartRule": null, + "transitionEndRule": null, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_11", + "extensionAttributes": [], + "name": "E12", + "label": "Week 24", + "description": "Day 168", + "type": { + "id": "Code_132", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_10", + "nextId": "Encounter_12", + "scheduledAtId": "Timing_15", + "environmentalSettings": [ + { + "id": "Code_133", + "extensionAttributes": [], + "code": "C51282", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Clinic", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_134", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "In Person", + "instanceType": "Code" + } + ], + "transitionStartRule": null, + "transitionEndRule": null, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_12", + "extensionAttributes": [], + "name": "E13", + "label": "Week 26", + "description": "Day 182", + "type": { + "id": "Code_135", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_11", + "nextId": null, + "scheduledAtId": "Timing_16", + "environmentalSettings": [ + { + "id": "Code_136", + "extensionAttributes": [], + "code": "C51282", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Clinic", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_137", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "In Person", + "instanceType": "Code" + } + ], + "transitionStartRule": null, + "transitionEndRule": { + "id": "TransitionRule_6", + "extensionAttributes": [], + "name": "ENCOUNTER_START_RULE_12", + "label": null, + "description": null, + "text": "End of treatment", + "instanceType": "TransitionRule" + }, + "notes": [], + "instanceType": "Encounter" + } + ], + "activities": [ + { + "id": "Activity_1", + "extensionAttributes": [], + "name": "Informed consent", + "label": "Informed consent", + "description": "", + "previousId": null, + "nextId": "Activity_2", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_2", + "extensionAttributes": [], + "name": "Inclusion/exclusion criteria", + "label": "Inclusion and exclusion criteria", + "description": "", + "previousId": "Activity_1", + "nextId": "Activity_3", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_3", + "extensionAttributes": [], + "name": "Patient number assigned", + "label": "Patient number assigned", + "description": "", + "previousId": "Activity_2", + "nextId": "Activity_4", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_4", + "extensionAttributes": [], + "name": "Demographics", + "label": "Demographics", + "description": "", + "previousId": "Activity_3", + "nextId": "Activity_5", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_20", + "BiomedicalConcept_21" + ], + "bcCategoryIds": [], + "bcSurrogateIds": ["BiomedicalConceptSurrogate_1"], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_5", + "extensionAttributes": [], + "name": "Hachinski", + "label": "Hachinski Ischemic Scale", + "description": "", + "previousId": "Activity_4", + "nextId": "Activity_6", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_6", + "extensionAttributes": [], + "name": "MMSE", + "label": "MMSE", + "description": "", + "previousId": "Activity_5", + "nextId": "Activity_7", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_7", + "extensionAttributes": [], + "name": "Physical examination", + "label": "Physical examination", + "description": "", + "previousId": "Activity_6", + "nextId": "Activity_8", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_8", + "extensionAttributes": [], + "name": "Medical history", + "label": "Medical history", + "description": "", + "previousId": "Activity_7", + "nextId": "Activity_9", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_9", + "extensionAttributes": [], + "name": "Habits", + "label": "Habits", + "description": "", + "previousId": "Activity_8", + "nextId": "Activity_10", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_10", + "extensionAttributes": [], + "name": "Chest X-ray", + "label": "Chest X-ray", + "description": "", + "previousId": "Activity_9", + "nextId": "Activity_11", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_11", + "extensionAttributes": [], + "name": "Apo E genotyping", + "label": "Apo E genotyping", + "description": "", + "previousId": "Activity_10", + "nextId": "Activity_12", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_12", + "extensionAttributes": [], + "name": "Patient randomised", + "label": "Patient randomised", + "description": "", + "previousId": "Activity_11", + "nextId": "Activity_13", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_13", + "extensionAttributes": [], + "name": "Vital signs / Temperature", + "label": "Vital Signs and Temperature", + "description": "", + "previousId": "Activity_12", + "nextId": "Activity_14", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_22", + "BiomedicalConcept_23", + "BiomedicalConcept_24" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": "ScheduleTimeline_3", + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_14", + "extensionAttributes": [], + "name": "Ambulatory ECG placed", + "label": "Ambulatory ECG placed", + "description": "", + "previousId": "Activity_13", + "nextId": "Activity_15", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_15", + "extensionAttributes": [], + "name": "Ambulatory ECG removed", + "label": "Ambulatory ECG removed", + "description": "", + "previousId": "Activity_14", + "nextId": "Activity_16", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_16", + "extensionAttributes": [], + "name": "ECG", + "label": "ECG", + "description": "", + "previousId": "Activity_15", + "nextId": "Activity_17", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_17", + "extensionAttributes": [], + "name": "Placebo TTS test", + "label": "Placebo TTS test", + "description": "", + "previousId": "Activity_16", + "nextId": "Activity_18", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_18", + "extensionAttributes": [], + "name": "CT scan", + "label": "CT scan", + "description": "", + "previousId": "Activity_17", + "nextId": "Activity_19", + "childIds": [], + "definedProcedures": [ + { + "id": "Procedure_1", + "extensionAttributes": [], + "name": "PR1", + "label": "CT Scan", + "description": "CT Scan", + "procedureType": "CT Scan", + "code": { + "id": "Code_95", + "extensionAttributes": [], + "code": "383371000119108", + "codeSystem": "SNOMED", + "codeSystemVersion": "January 31, 2018", + "decode": "CT of head without contrast", + "instanceType": "Code" + }, + "studyInterventionId": null, + "notes": [], + "instanceType": "Procedure" + } + ], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_19", + "extensionAttributes": [], + "name": "Concomitant medications", + "label": "Concomitant medications", + "description": "", + "previousId": "Activity_18", + "nextId": "Activity_20", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_20", + "extensionAttributes": [], + "name": "Hematology", + "label": "Hematology", + "description": "", + "previousId": "Activity_19", + "nextId": "Activity_21", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_21", + "extensionAttributes": [], + "name": "Chemistry", + "label": "Chemistry", + "description": "", + "previousId": "Activity_20", + "nextId": "Activity_22", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_25", + "BiomedicalConcept_26", + "BiomedicalConcept_27", + "BiomedicalConcept_28", + "BiomedicalConcept_29", + "BiomedicalConcept_30", + "BiomedicalConcept_31" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_22", + "extensionAttributes": [], + "name": "Uninalysis", + "label": "Uninalysis", + "description": "", + "previousId": "Activity_21", + "nextId": "Activity_23", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_23", + "extensionAttributes": [], + "name": "Plasma Specimen (Xanomeline)", + "label": "Plasma Specimen (Xanomeline)", + "description": "", + "previousId": "Activity_22", + "nextId": "Activity_24", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_24", + "extensionAttributes": [], + "name": "Hemoglobin A1C", + "label": "Hemoglobin A1C", + "description": "", + "previousId": "Activity_23", + "nextId": "Activity_25", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": ["BiomedicalConcept_32"], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_25", + "extensionAttributes": [], + "name": "Study drug", + "label": "Study drug record , Medications dispensed, Medications returned", + "description": "", + "previousId": "Activity_24", + "nextId": "Activity_26", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_26", + "extensionAttributes": [], + "name": "TTS Acceptability Survey", + "label": "TTS Acceptability Survey", + "description": "", + "previousId": "Activity_25", + "nextId": "Activity_27", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_27", + "extensionAttributes": [], + "name": "ADAS-Cog", + "label": "ADAS-Cog", + "description": "", + "previousId": "Activity_26", + "nextId": "Activity_28", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_28", + "extensionAttributes": [], + "name": "CIBIC+", + "label": "CIBIC+", + "description": "", + "previousId": "Activity_27", + "nextId": "Activity_29", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_29", + "extensionAttributes": [], + "name": "DAD", + "label": "DAD", + "description": "", + "previousId": "Activity_28", + "nextId": "Activity_30", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_30", + "extensionAttributes": [], + "name": "NPI-X", + "label": "NPI-X", + "description": "", + "previousId": "Activity_29", + "nextId": "Activity_31", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_31", + "extensionAttributes": [], + "name": "Adverse events", + "label": "Adverse events", + "description": "", + "previousId": "Activity_30", + "nextId": "Activity_32", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": ["BiomedicalConcept_1"], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_32", + "extensionAttributes": [], + "name": "Check adverse events", + "label": "Check adverse events", + "description": "", + "previousId": "Activity_31", + "nextId": "Activity_33", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": "ScheduleTimeline_1", + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_33", + "extensionAttributes": [], + "name": "Supine", + "label": "Subject supine", + "description": "", + "previousId": "Activity_32", + "nextId": "Activity_34", + "childIds": [], + "definedProcedures": [ + { + "id": "Procedure_2", + "extensionAttributes": [], + "name": "PR_SUPINE", + "label": "", + "description": "Subject Supine", + "procedureType": "", + "code": { + "id": "Code_96", + "extensionAttributes": [], + "code": "123", + "codeSystem": "SPONSOR", + "codeSystemVersion": "12", + "decode": "Subject Supine", + "instanceType": "Code" + }, + "studyInterventionId": null, + "notes": [], + "instanceType": "Procedure" + } + ], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_34", + "extensionAttributes": [], + "name": "Vital Signs Supine", + "label": "Vital signs while supine", + "description": "", + "previousId": "Activity_33", + "nextId": "Activity_35", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_14", + "BiomedicalConcept_15", + "BiomedicalConcept_16" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_35", + "extensionAttributes": [], + "name": "Stand", + "label": "Subject Standing", + "description": "", + "previousId": "Activity_34", + "nextId": "Activity_36", + "childIds": [], + "definedProcedures": [ + { + "id": "Procedure_3", + "extensionAttributes": [], + "name": "PR_STAND", + "label": "", + "description": "Subject Standing", + "procedureType": "", + "code": { + "id": "Code_97", + "extensionAttributes": [], + "code": "124", + "codeSystem": "SPONSOR", + "codeSystemVersion": "12", + "decode": "Subject Standing", + "instanceType": "Code" + }, + "studyInterventionId": null, + "notes": [], + "instanceType": "Procedure" + } + ], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_36", + "extensionAttributes": [], + "name": "Vital Signs Standing", + "label": "Vital signs while standing", + "description": "", + "previousId": "Activity_35", + "nextId": null, + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_17", + "BiomedicalConcept_18", + "BiomedicalConcept_19" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + } + ], + "arms": [ + { + "id": "StudyArm_1", + "extensionAttributes": [], + "name": "Placebo", + "label": "Placebo", + "description": "Placebo", + "type": { + "id": "Code_138", + "extensionAttributes": [], + "code": "C174268", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Placebo Control Arm", + "instanceType": "Code" + }, + "dataOriginDescription": "Data collected from subjects", + "dataOriginType": { + "id": "Code_139", + "extensionAttributes": [], + "code": "C188866", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Data Generated Within Study", + "instanceType": "Code" + }, + "populationIds": [], + "notes": [], + "instanceType": "StudyArm" + }, + { + "id": "StudyArm_2", + "extensionAttributes": [], + "name": "Xanomeline Low Dose", + "label": "Xanomeline Low Dose", + "description": "Active Substance", + "type": { + "id": "Code_140", + "extensionAttributes": [], + "code": "C174267", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Active Comparator Arm", + "instanceType": "Code" + }, + "dataOriginDescription": "Data collected from subjects", + "dataOriginType": { + "id": "Code_141", + "extensionAttributes": [], + "code": "C188866", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Data Generated Within Study", + "instanceType": "Code" + }, + "populationIds": [], + "notes": [], + "instanceType": "StudyArm" + }, + { + "id": "StudyArm_3", + "extensionAttributes": [], + "name": "Xanomeline High Dose", + "label": "Xanomeline High Dose", + "description": "Active Substance", + "type": { + "id": "Code_142", + "extensionAttributes": [], + "code": "C174267", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Active Comparator Arm", + "instanceType": "Code" + }, + "dataOriginDescription": "Data collected from subjects", + "dataOriginType": { + "id": "Code_143", + "extensionAttributes": [], + "code": "C188866", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Data Generated Within Study", + "instanceType": "Code" + }, + "populationIds": [], + "notes": [], + "instanceType": "StudyArm" + } + ], + "studyCells": [ + { + "id": "StudyCell_1", + "extensionAttributes": [], + "armId": "StudyArm_1", + "epochId": "StudyEpoch_1", + "elementIds": ["StudyElement_1"], + "instanceType": "StudyCell" + }, + { + "id": "StudyCell_2", + "extensionAttributes": [], + "armId": "StudyArm_1", + "epochId": "StudyEpoch_2", + "elementIds": ["StudyElement_2"], + "instanceType": "StudyCell" + }, + { + "id": "StudyCell_3", + "extensionAttributes": [], + "armId": "StudyArm_1", + "epochId": "StudyEpoch_3", + "elementIds": ["StudyElement_2"], + "instanceType": "StudyCell" + }, + { + "id": "StudyCell_4", + "extensionAttributes": [], + "armId": "StudyArm_1", + "epochId": "StudyEpoch_4", + "elementIds": ["StudyElement_2"], + "instanceType": "StudyCell" + }, + { + "id": "StudyCell_5", + "extensionAttributes": [], + "armId": "StudyArm_1", + "epochId": "StudyEpoch_5", + "elementIds": ["StudyElement_7"], + "instanceType": "StudyCell" + }, + { + "id": "StudyCell_6", + "extensionAttributes": [], + "armId": "StudyArm_2", + "epochId": "StudyEpoch_1", + "elementIds": ["StudyElement_1"], + "instanceType": "StudyCell" + }, + { + "id": "StudyCell_7", + "extensionAttributes": [], + "armId": "StudyArm_2", + "epochId": "StudyEpoch_2", + "elementIds": ["StudyElement_3"], + "instanceType": "StudyCell" + }, + { + "id": "StudyCell_8", + "extensionAttributes": [], + "armId": "StudyArm_2", + "epochId": "StudyEpoch_3", + "elementIds": ["StudyElement_3"], + "instanceType": "StudyCell" + }, + { + "id": "StudyCell_9", + "extensionAttributes": [], + "armId": "StudyArm_2", + "epochId": "StudyEpoch_4", + "elementIds": ["StudyElement_3"], + "instanceType": "StudyCell" + }, + { + "id": "StudyCell_10", + "extensionAttributes": [], + "armId": "StudyArm_2", + "epochId": "StudyEpoch_5", + "elementIds": ["StudyElement_7"], + "instanceType": "StudyCell" + }, + { + "id": "StudyCell_11", + "extensionAttributes": [], + "armId": "StudyArm_3", + "epochId": "StudyEpoch_1", + "elementIds": ["StudyElement_1"], + "instanceType": "StudyCell" + }, + { + "id": "StudyCell_12", + "extensionAttributes": [], + "armId": "StudyArm_3", + "epochId": "StudyEpoch_2", + "elementIds": ["StudyElement_4"], + "instanceType": "StudyCell" + }, + { + "id": "StudyCell_13", + "extensionAttributes": [], + "armId": "StudyArm_3", + "epochId": "StudyEpoch_3", + "elementIds": ["StudyElement_5"], + "instanceType": "StudyCell" + }, + { + "id": "StudyCell_14", + "extensionAttributes": [], + "armId": "StudyArm_3", + "epochId": "StudyEpoch_4", + "elementIds": ["StudyElement_6"], + "instanceType": "StudyCell" + }, + { + "id": "StudyCell_15", + "extensionAttributes": [], + "armId": "StudyArm_3", + "epochId": "StudyEpoch_5", + "elementIds": ["StudyElement_7"], + "instanceType": "StudyCell" + } + ], + "rationale": "The discontinuation rate associated with this oral dosing regimen was 58.6% in previous studies, and alternative clinical strategies have been sought to improve tolerance for the compound. To that end, development of a Transdermal Therapeutic System (TTS) has been initiated.", + "epochs": [ + { + "id": "StudyEpoch_1", + "extensionAttributes": [], + "name": "Screening", + "label": "Screening", + "description": "Screening Epoch", + "type": { + "id": "Code_144", + "extensionAttributes": [], + "code": "C202487", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Screening Epoch", + "instanceType": "Code" + }, + "previousId": null, + "nextId": "StudyEpoch_2", + "notes": [], + "instanceType": "StudyEpoch" + }, + { + "id": "StudyEpoch_2", + "extensionAttributes": [], + "name": "Treatment 1", + "label": "Treatment One", + "description": "Treatment Epoch", + "type": { + "id": "Code_145", + "extensionAttributes": [], + "code": "C101526", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Treatment Epoch", + "instanceType": "Code" + }, + "previousId": "StudyEpoch_1", + "nextId": "StudyEpoch_3", + "notes": [], + "instanceType": "StudyEpoch" + }, + { + "id": "StudyEpoch_3", + "extensionAttributes": [], + "name": "Treatment 2", + "label": "Treatment Two", + "description": "Treatment Epoch", + "type": { + "id": "Code_146", + "extensionAttributes": [], + "code": "C101526", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Treatment Epoch", + "instanceType": "Code" + }, + "previousId": "StudyEpoch_2", + "nextId": "StudyEpoch_4", + "notes": [], + "instanceType": "StudyEpoch" + }, + { + "id": "StudyEpoch_4", + "extensionAttributes": [], + "name": "Treatment 3", + "label": "Treatment Three", + "description": "Treatment Epoch", + "type": { + "id": "Code_147", + "extensionAttributes": [], + "code": "C101526", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Treatment Epoch", + "instanceType": "Code" + }, + "previousId": "StudyEpoch_3", + "nextId": "StudyEpoch_5", + "notes": [], + "instanceType": "StudyEpoch" + }, + { + "id": "StudyEpoch_5", + "extensionAttributes": [], + "name": "Follow-Up", + "label": "Follow Up", + "description": "Follow-up Epoch", + "type": { + "id": "Code_148", + "extensionAttributes": [], + "code": "C202578", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Follow-Up Epoch", + "instanceType": "Code" + }, + "previousId": "StudyEpoch_4", + "nextId": null, + "notes": [], + "instanceType": "StudyEpoch" + } + ], + "elements": [ + { + "id": "StudyElement_1", + "extensionAttributes": [], + "name": "EL1", + "label": "Screening", + "description": "Screening Element", + "transitionStartRule": { + "id": "TransitionRule_7", + "extensionAttributes": [], + "name": "ELEMENT_START_RULE_1", + "label": null, + "description": null, + "text": "Informed consent", + "instanceType": "TransitionRule" + }, + "transitionEndRule": { + "id": "TransitionRule_8", + "extensionAttributes": [], + "name": "ELEMENT_END_RULE_1", + "label": null, + "description": null, + "text": "Completion of all screening activities and no more than 2 weeks from informed consent", + "instanceType": "TransitionRule" + }, + "studyInterventionIds": [], + "notes": [], + "instanceType": "StudyElement" + }, + { + "id": "StudyElement_2", + "extensionAttributes": [], + "name": "EL2", + "label": "Placebo", + "description": "Placebo TTS (adhesive patches)", + "transitionStartRule": { + "id": "TransitionRule_9", + "extensionAttributes": [], + "name": "ELEMENT_START_RULE_2", + "label": null, + "description": null, + "text": "Administration\u00a0of\u00a0first\u00a0dose", + "instanceType": "TransitionRule" + }, + "transitionEndRule": null, + "studyInterventionIds": [], + "notes": [], + "instanceType": "StudyElement" + }, + { + "id": "StudyElement_7", + "extensionAttributes": [], + "name": "EL7", + "label": "Follow up", + "description": "Follow Up Element", + "transitionStartRule": { + "id": "TransitionRule_14", + "extensionAttributes": [], + "name": "ELEMENT_START_RULE_7", + "label": null, + "description": null, + "text": "End\u00a0of\u00a0last\u00a0scheduled\u00a0visit\u00a0on\u00a0study\u00a0(including\u00a0early\u00a0termination)", + "instanceType": "TransitionRule" + }, + "transitionEndRule": { + "id": "TransitionRule_15", + "extensionAttributes": [], + "name": "ELEMENT_END_RULE_7", + "label": null, + "description": null, + "text": "Completion\u00a0of\u00a0all\u00a0specified\u00a0followup\u00a0activities\u00a0(which\u00a0vary\u00a0on\u00a0a\u00a0patient-by-patient\u00a0basis)", + "instanceType": "TransitionRule" + }, + "studyInterventionIds": [], + "notes": [], + "instanceType": "StudyElement" + }, + { + "id": "StudyElement_3", + "extensionAttributes": [], + "name": "EL3", + "label": "Low", + "description": "Xanomeline TTS (adhesive patches) 50 cm2, 54 mg", + "transitionStartRule": { + "id": "TransitionRule_10", + "extensionAttributes": [], + "name": "ELEMENT_START_RULE_3", + "label": null, + "description": null, + "text": "Administration\u00a0of\u00a0first\u00a0dose", + "instanceType": "TransitionRule" + }, + "transitionEndRule": null, + "studyInterventionIds": [], + "notes": [], + "instanceType": "StudyElement" + }, + { + "id": "StudyElement_4", + "extensionAttributes": [], + "name": "EL4", + "label": "High - Start", + "description": "Xanomeline TTS (adhesive patches) 50 cm2, 54 mg", + "transitionStartRule": { + "id": "TransitionRule_11", + "extensionAttributes": [], + "name": "ELEMENT_START_RULE_4", + "label": null, + "description": null, + "text": "Randomized", + "instanceType": "TransitionRule" + }, + "transitionEndRule": null, + "studyInterventionIds": [], + "notes": [], + "instanceType": "StudyElement" + }, + { + "id": "StudyElement_5", + "extensionAttributes": [], + "name": "EL5", + "label": "High - Middle", + "description": "Xanomeline TTS (adhesive patches) 50 cm2, 54 mg + 25 cm2, 27 mg", + "transitionStartRule": { + "id": "TransitionRule_12", + "extensionAttributes": [], + "name": "ELEMENT_START_RULE_5", + "label": null, + "description": null, + "text": "Administration\u00a0of\u00a0first\u00a0dose\u00a0(from\u00a0patches\u00a0supplied\u00a0at\u00a0Visit\u00a04)", + "instanceType": "TransitionRule" + }, + "transitionEndRule": null, + "studyInterventionIds": [], + "notes": [], + "instanceType": "StudyElement" + }, + { + "id": "StudyElement_6", + "extensionAttributes": [], + "name": "EL6", + "label": "High - End", + "description": "Xanomeline TTS (adhesive patches) 50 cm2, 54 mg", + "transitionStartRule": { + "id": "TransitionRule_13", + "extensionAttributes": [], + "name": "ELEMENT_START_RULE_6", + "label": null, + "description": null, + "text": "Administration\u00a0of\u00a0first\u00a0dose\u00a0(from\u00a0patches\u00a0supplied\u00a0at\u00a0Visit\u00a012)", + "instanceType": "TransitionRule" + }, + "transitionEndRule": null, + "studyInterventionIds": [], + "notes": [], + "instanceType": "StudyElement" + } + ], + "estimands": [ + { + "id": "Estimand_1", + "extensionAttributes": [], + "name": "EST1", + "label": "EST1", + "description": "", + "populationSummary": "Group mean changes from baseline in the primary efficacy parameters", + "analysisPopulationId": "AnalysisPopulation_1", + "interventionIds": ["StudyIntervention_1"], + "variableOfInterestId": "Endpoint_1", + "intercurrentEvents": [ + { + "id": "IntercurrentEvent_1", + "extensionAttributes": [], + "name": "DISTRUPTION", + "label": "", + "description": "The disruption of treatment to the subject", + "text": "Temporary Treatment Interruption", + "dictionaryId": null, + "notes": [], + "instanceType": "IntercurrentEvent", + "strategy": "Treatment Policy \u2013 Continue to measure effect of treatment assignment regardless of interruption." + } + ], + "notes": [], + "instanceType": "Estimand" + } + ], + "indications": [ + { + "id": "Indication_1", + "extensionAttributes": [], + "name": "IND1", + "label": "Alzheimer's disease", + "description": "Alzheimer's disease", + "codes": [ + { + "id": "Code_604", + "extensionAttributes": [], + "code": "G30.9", + "codeSystem": "ICD-10-CM", + "codeSystemVersion": "1", + "decode": "Alzheimer's disease; unspecified", + "instanceType": "Code" + } + ], + "isRareDisease": false, + "notes": [], + "instanceType": "Indication" + }, + { + "id": "Indication_2", + "extensionAttributes": [], + "name": "IND2", + "label": "Alzheimer's disease", + "description": "Alzheimer's disease", + "codes": [ + { + "id": "Code_605", + "extensionAttributes": [], + "code": "26929004", + "codeSystem": "SNOMED", + "codeSystemVersion": "January 31, 2018", + "decode": "Alzheimer's disease", + "instanceType": "Code" + } + ], + "isRareDisease": false, + "notes": [], + "instanceType": "Indication" + } + ], + "studyInterventionIds": ["StudyIntervention_1"], + "objectives": [ + { + "id": "Objective_1", + "extensionAttributes": [], + "name": "OBJ1", + "label": "", + "description": "Main objective", + "text": "To determine if there is a statistically significant relationship (overall Type 1 erroralpha=0.05) between the change in both the ADAS-Cog (11) and CIBIC+ scores, and drug dose (0, 50 cm2 [54 mg], and 75 cm2 [81 mg]).", + "dictionaryId": null, + "notes": [], + "instanceType": "Objective", + "level": { + "id": "Code_622", + "extensionAttributes": [], + "code": "C85826", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Primary Objective", + "instanceType": "Code" + }, + "endpoints": [ + { + "id": "Endpoint_1", + "extensionAttributes": [], + "name": "END1", + "label": "", + "description": "", + "text": "Alzheimer's Disease Assessment Scale - Cognitive Subscale, total of 11 items [ADAS-Cog (11)] at Week 24", + "dictionaryId": null, + "notes": [], + "instanceType": "Endpoint", + "purpose": "", + "level": { + "id": "Code_621", + "extensionAttributes": [], + "code": "C94496", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Primary Endpoint", + "instanceType": "Code" + } + }, + { + "id": "Endpoint_2", + "extensionAttributes": [], + "name": "END2", + "label": "", + "description": "", + "text": "Video-referenced Clinician\u2019s Interview-based Impression of Change (CIBIC+) at Week 24", + "dictionaryId": null, + "notes": [], + "instanceType": "Endpoint", + "purpose": "", + "level": { + "id": "Code_623", + "extensionAttributes": [], + "code": "C94496", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Primary Endpoint", + "instanceType": "Code" + } + } + ] + }, + { + "id": "Objective_2", + "extensionAttributes": [], + "name": "OBJ2", + "label": "", + "description": "Safety", + "text": "To document the safety profile of the xanomeline TTS.", + "dictionaryId": null, + "notes": [], + "instanceType": "Objective", + "level": { + "id": "Code_625", + "extensionAttributes": [], + "code": "C85826", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Primary Objective", + "instanceType": "Code" + }, + "endpoints": [ + { + "id": "Endpoint_3", + "extensionAttributes": [], + "name": "END3", + "label": "", + "description": "", + "text": "Adverse events", + "dictionaryId": null, + "notes": [], + "instanceType": "Endpoint", + "purpose": "", + "level": { + "id": "Code_624", + "extensionAttributes": [], + "code": "C94496", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Primary Endpoint", + "instanceType": "Code" + } + }, + { + "id": "Endpoint_4", + "extensionAttributes": [], + "name": "END4", + "label": "", + "description": "", + "text": "Vital signs (weight, standing and supine blood pressure, heart rate)", + "dictionaryId": null, + "notes": [], + "instanceType": "Endpoint", + "purpose": "", + "level": { + "id": "Code_626", + "extensionAttributes": [], + "code": "C94496", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Primary Endpoint", + "instanceType": "Code" + } + }, + { + "id": "Endpoint_5", + "extensionAttributes": [], + "name": "END5", + "label": "", + "description": "The change from baseline laboratory value will be calculated as the difference between the baseline lab value and the endpoint value (i.e., the value at the specified visit) or the end of treatment observation", + "text": "Laboratory evaluations (Change from Baseline)", + "dictionaryId": null, + "notes": [], + "instanceType": "Endpoint", + "purpose": "", + "level": { + "id": "Code_627", + "extensionAttributes": [], + "code": "C94496", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Primary Endpoint", + "instanceType": "Code" + } + } + ] + }, + { + "id": "Objective_3", + "extensionAttributes": [], + "name": "OBJ3", + "label": "", + "description": "Behaviour", + "text": "To assess the dose-dependent improvement in behavior. Improved scores on the Revised Neuropsychiatric Inventory (NPI-X) will indicate improvement in these\nareas.", + "dictionaryId": null, + "notes": [], + "instanceType": "Objective", + "level": { + "id": "Code_629", + "extensionAttributes": [], + "code": "C85827", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Secondary Objective", + "instanceType": "Code" + }, + "endpoints": [ + { + "id": "Endpoint_6", + "extensionAttributes": [], + "name": "END6", + "label": "", + "description": "", + "text": "Alzheimer's Disease Assessment Scale - Cognitive Subscale, total of 11 items [ADAS-Cog (11)] at Weeks 8 and 16", + "dictionaryId": null, + "notes": [], + "instanceType": "Endpoint", + "purpose": "", + "level": { + "id": "Code_628", + "extensionAttributes": [], + "code": "C139173", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Secondary Endpoint", + "instanceType": "Code" + } + }, + { + "id": "Endpoint_7", + "extensionAttributes": [], + "name": "END7", + "label": "", + "description": "", + "text": "Video-referenced Clinician\u2019s Interview-based Impression of Change (CIBIC+) at Weeks 8 and 16", + "dictionaryId": null, + "notes": [], + "instanceType": "Endpoint", + "purpose": "", + "level": { + "id": "Code_630", + "extensionAttributes": [], + "code": "C139173", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Secondary Endpoint", + "instanceType": "Code" + } + }, + { + "id": "Endpoint_8", + "extensionAttributes": [], + "name": "END8", + "label": "", + "description": "", + "text": "Mean Revised Neuropsychiatric Inventory (NPI-X) from Week 4 to Week 24", + "dictionaryId": null, + "notes": [], + "instanceType": "Endpoint", + "purpose": "", + "level": { + "id": "Code_631", + "extensionAttributes": [], + "code": "C139173", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Secondary Endpoint", + "instanceType": "Code" + } + } + ] + }, + { + "id": "Objective_4", + "extensionAttributes": [], + "name": "OBJ4", + "label": "", + "description": "", + "text": "To assess the dose-dependent improvements in activities of daily living. Improved scores on the Disability Assessment for Dementia (DAD) will indicate improvement in these areas (see Attachment LZZT.5).", + "dictionaryId": null, + "notes": [], + "instanceType": "Objective", + "level": { + "id": "Code_633", + "extensionAttributes": [], + "code": "C85827", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Secondary Objective", + "instanceType": "Code" + }, + "endpoints": [ + { + "id": "Endpoint_9", + "extensionAttributes": [], + "name": "END9", + "label": "", + "description": "", + "text": "*** To be determined from protocol ***", + "dictionaryId": null, + "notes": [], + "instanceType": "Endpoint", + "purpose": "", + "level": { + "id": "Code_632", + "extensionAttributes": [], + "code": "C139173", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Secondary Endpoint", + "instanceType": "Code" + } + } + ] + }, + { + "id": "Objective_5", + "extensionAttributes": [], + "name": "OBJ5", + "label": "", + "description": "", + "text": "To assess the dose-dependent improvements in an extended assessment of cognition that integrates attention/concentration tasks. The Alzheimer's Disease Assessment Scale-14 item Cognitive Subscale, hereafter referred to as ADAS-Cog (14), will be used for this assessment (see Attachment LZZT.2).", + "dictionaryId": null, + "notes": [], + "instanceType": "Objective", + "level": { + "id": "Code_635", + "extensionAttributes": [], + "code": "C85827", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Secondary Objective", + "instanceType": "Code" + }, + "endpoints": [ + { + "id": "Endpoint_10", + "extensionAttributes": [], + "name": "END10", + "label": "", + "description": "", + "text": "*** To be determined from protocol ***", + "dictionaryId": null, + "notes": [], + "instanceType": "Endpoint", + "purpose": "", + "level": { + "id": "Code_634", + "extensionAttributes": [], + "code": "C139173", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Secondary Endpoint", + "instanceType": "Code" + } + } + ] + }, + { + "id": "Objective_6", + "extensionAttributes": [], + "name": "OBJ6", + "label": "", + "description": "", + "text": "To assess the treatment response as a function of Apo E genotype.", + "dictionaryId": null, + "notes": [], + "instanceType": "Objective", + "level": { + "id": "Code_637", + "extensionAttributes": [], + "code": "C85827", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Secondary Objective", + "instanceType": "Code" + }, + "endpoints": [ + { + "id": "Endpoint_11", + "extensionAttributes": [], + "name": "END11", + "label": "", + "description": "", + "text": "*** To be determined from protocol ***", + "dictionaryId": null, + "notes": [], + "instanceType": "Endpoint", + "purpose": "", + "level": { + "id": "Code_636", + "extensionAttributes": [], + "code": "C139173", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Secondary Endpoint", + "instanceType": "Code" + } + } + ] + } + ], + "population": { + "id": "StudyDesignPopulation_1", + "extensionAttributes": [], + "name": "POP1", + "label": "", + "description": "Patients with Probable Mild to Moderate Alzheimer's Disease", + "includesHealthySubjects": false, + "plannedEnrollmentNumber": { + "id": "Quantity_8", + "extensionAttributes": [], + "value": 300.0, + "unit": null, + "instanceType": "Quantity" + }, + "plannedCompletionNumber": { + "id": "Quantity_7", + "extensionAttributes": [], + "value": 300.0, + "unit": null, + "instanceType": "Quantity" + }, + "plannedSex": [ + { + "id": "Code_620", + "extensionAttributes": [], + "code": "C49636", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Both", + "instanceType": "Code" + } + ], + "criterionIds": [ + "EligibilityCriterion_1", + "EligibilityCriterion_2", + "EligibilityCriterion_3", + "EligibilityCriterion_4", + "EligibilityCriterion_5", + "EligibilityCriterion_6", + "EligibilityCriterion_7", + "EligibilityCriterion_8", + "EligibilityCriterion_9", + "EligibilityCriterion_10", + "EligibilityCriterion_11", + "EligibilityCriterion_12", + "EligibilityCriterion_13", + "EligibilityCriterion_14", + "EligibilityCriterion_15", + "EligibilityCriterion_16", + "EligibilityCriterion_17", + "EligibilityCriterion_18", + "EligibilityCriterion_19", + "EligibilityCriterion_20", + "EligibilityCriterion_21", + "EligibilityCriterion_22", + "EligibilityCriterion_23", + "EligibilityCriterion_24", + "EligibilityCriterion_25", + "EligibilityCriterion_26", + "EligibilityCriterion_27", + "EligibilityCriterion_28", + "EligibilityCriterion_29", + "EligibilityCriterion_30", + "EligibilityCriterion_31" + ], + "plannedAge": { + "id": "Range_1", + "extensionAttributes": [], + "minValue": { + "id": "Quantity_9", + "extensionAttributes": [], + "value": 50.0, + "unit": { + "id": "AliasCode_251", + "extensionAttributes": [], + "standardCode": { + "id": "Code_618", + "extensionAttributes": [], + "code": "C29848", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Year", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "instanceType": "Quantity" + }, + "maxValue": { + "id": "Quantity_10", + "extensionAttributes": [], + "value": 100.0, + "unit": { + "id": "AliasCode_252", + "extensionAttributes": [], + "standardCode": { + "id": "Code_619", + "extensionAttributes": [], + "code": "C29848", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Year", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "instanceType": "Quantity" + }, + "isApproximate": false, + "instanceType": "Range" + }, + "notes": [], + "instanceType": "StudyDesignPopulation", + "cohorts": [] + }, + "scheduleTimelines": [ + { + "id": "ScheduleTimeline_4", + "extensionAttributes": [], + "name": "Main Timeline", + "label": "Main Timeline", + "description": "This is the main timeline for the study design.", + "mainTimeline": true, + "entryCondition": "Potential subject identified", + "entryId": "ScheduledActivityInstance_9", + "exits": [ + { + "id": "ScheduleTimelineExit_4", + "extensionAttributes": [], + "instanceType": "ScheduleTimelineExit" + } + ], + "timings": [ + { + "id": "Timing_1", + "extensionAttributes": [], + "name": "TIM1", + "label": "Screening", + "description": "Screening timing", + "type": { + "id": "Code_20", + "extensionAttributes": [], + "code": "C201357", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Before", + "instanceType": "Code" + }, + "value": "P2W", + "valueLabel": "2 weeks", + "relativeToFrom": { + "id": "Code_21", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_9", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_11", + "windowLower": null, + "windowUpper": null, + "windowLabel": "", + "instanceType": "Timing" + }, + { + "id": "Timing_2", + "extensionAttributes": [], + "name": "TIM2", + "label": "Pre dose", + "description": "Pre dose timing", + "type": { + "id": "Code_22", + "extensionAttributes": [], + "code": "C201357", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Before", + "instanceType": "Code" + }, + "value": "P2D", + "valueLabel": "2 days", + "relativeToFrom": { + "id": "Code_23", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_10", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_11", + "windowLower": "PT4H", + "windowUpper": "PT0H", + "windowLabel": "-4..0 hours", + "instanceType": "Timing" + }, + { + "id": "Timing_3", + "extensionAttributes": [], + "name": "TIM3", + "label": "Dosing", + "description": "Dosing anchor", + "type": { + "id": "Code_26", + "extensionAttributes": [], + "code": "C201358", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Fixed Reference", + "instanceType": "Code" + }, + "value": "P1D", + "valueLabel": "1 Day", + "relativeToFrom": { + "id": "Code_27", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_11", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_11", + "windowLower": null, + "windowUpper": null, + "windowLabel": "", + "instanceType": "Timing" + }, + { + "id": "Timing_4", + "extensionAttributes": [], + "name": "TIM4", + "label": "Week 2", + "description": "Week 2 timing", + "type": { + "id": "Code_28", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "P2W", + "valueLabel": "2 Weeks", + "relativeToFrom": { + "id": "Code_29", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_12", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_11", + "windowLower": "P3D", + "windowUpper": "P3D", + "windowLabel": "-3..3 days", + "instanceType": "Timing" + }, + { + "id": "Timing_5", + "extensionAttributes": [], + "name": "TIM5", + "label": "Week 4", + "description": "Week 4 timing", + "type": { + "id": "Code_32", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "P4W", + "valueLabel": "4 Weeks", + "relativeToFrom": { + "id": "Code_33", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_13", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_11", + "windowLower": "P3D", + "windowUpper": "P3D", + "windowLabel": "-3..3 days", + "instanceType": "Timing" + }, + { + "id": "Timing_6", + "extensionAttributes": [], + "name": "TIM6", + "label": "Week 6", + "description": "Week 6 timing", + "type": { + "id": "Code_36", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "P6W", + "valueLabel": "6 Weeks", + "relativeToFrom": { + "id": "Code_37", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_14", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_11", + "windowLower": "P3D", + "windowUpper": "P3D", + "windowLabel": "-3..3 days", + "instanceType": "Timing" + }, + { + "id": "Timing_7", + "extensionAttributes": [], + "name": "TIM7", + "label": "Week 8", + "description": "Week 8 timing", + "type": { + "id": "Code_40", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "P8W", + "valueLabel": "8 Weeks", + "relativeToFrom": { + "id": "Code_41", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_15", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_11", + "windowLower": "P3D", + "windowUpper": "P3D", + "windowLabel": "-3..3 days", + "instanceType": "Timing" + }, + { + "id": "Timing_9", + "extensionAttributes": [], + "name": "TIM9", + "label": "Week 12", + "description": "Week 12 timing", + "type": { + "id": "Code_46", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "P12W", + "valueLabel": "12 Weeks", + "relativeToFrom": { + "id": "Code_47", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_17", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_11", + "windowLower": "P4D", + "windowUpper": "P4D", + "windowLabel": "-4..4 days", + "instanceType": "Timing" + }, + { + "id": "Timing_11", + "extensionAttributes": [], + "name": "TIM11", + "label": "Week 16", + "description": "Week 16 timing", + "type": { + "id": "Code_52", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "P16W", + "valueLabel": "16 Weeks", + "relativeToFrom": { + "id": "Code_53", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_19", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_11", + "windowLower": "P4D", + "windowUpper": "P4D", + "windowLabel": "-4..4 days", + "instanceType": "Timing" + }, + { + "id": "Timing_13", + "extensionAttributes": [], + "name": "TIM13", + "label": "Week 20", + "description": "Week 20 timing", + "type": { + "id": "Code_58", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "P20W", + "valueLabel": "20 Weeks", + "relativeToFrom": { + "id": "Code_59", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_21", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_11", + "windowLower": "P4D", + "windowUpper": "P4D", + "windowLabel": "-4..4 days", + "instanceType": "Timing" + }, + { + "id": "Timing_15", + "extensionAttributes": [], + "name": "TIM15", + "label": "Week 24", + "description": "Week 24 timing", + "type": { + "id": "Code_64", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "P24W", + "valueLabel": "24 Weeks", + "relativeToFrom": { + "id": "Code_65", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_23", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_11", + "windowLower": "P4D", + "windowUpper": "P4D", + "windowLabel": "-4..4 days", + "instanceType": "Timing" + }, + { + "id": "Timing_16", + "extensionAttributes": [], + "name": "TIM16", + "label": "Week 26", + "description": "Week 26 timing", + "type": { + "id": "Code_68", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "P26W", + "valueLabel": "26 Weeks", + "relativeToFrom": { + "id": "Code_69", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_24", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_11", + "windowLower": "P3D", + "windowUpper": "P3D", + "windowLabel": "-3..3 days", + "instanceType": "Timing" + }, + { + "id": "Timing_8", + "extensionAttributes": [], + "name": "TIM8", + "label": "Week 8 Home", + "description": "Week 8 at home timing", + "type": { + "id": "Code_44", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "P2W", + "valueLabel": "2 Weeks", + "relativeToFrom": { + "id": "Code_45", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_16", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_15", + "windowLower": null, + "windowUpper": null, + "windowLabel": "", + "instanceType": "Timing" + }, + { + "id": "Timing_10", + "extensionAttributes": [], + "name": "TIM10", + "label": "Week 12 Home", + "description": "Week 12 at home timing", + "type": { + "id": "Code_50", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "P2W", + "valueLabel": "2 Weeks", + "relativeToFrom": { + "id": "Code_51", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_18", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_17", + "windowLower": null, + "windowUpper": null, + "windowLabel": "", + "instanceType": "Timing" + }, + { + "id": "Timing_12", + "extensionAttributes": [], + "name": "TIM12", + "label": "Week 16 Home", + "description": "Week 16 at home timing", + "type": { + "id": "Code_56", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "P2W", + "valueLabel": "2 Weeks", + "relativeToFrom": { + "id": "Code_57", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_20", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_19", + "windowLower": null, + "windowUpper": null, + "windowLabel": "", + "instanceType": "Timing" + }, + { + "id": "Timing_14", + "extensionAttributes": [], + "name": "TIM14", + "label": "Week 20 Home", + "description": "Week 20 at home timing", + "type": { + "id": "Code_62", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "P2W", + "valueLabel": "2 Weeks", + "relativeToFrom": { + "id": "Code_63", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_22", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_21", + "windowLower": null, + "windowUpper": null, + "windowLabel": "", + "instanceType": "Timing" + } + ], + "instances": [ + { + "id": "ScheduledActivityInstance_9", + "extensionAttributes": [], + "name": "SCREEN1", + "label": "Screen One", + "description": "-", + "defaultConditionId": "ScheduledActivityInstance_10", + "epochId": "StudyEpoch_1", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [ + "Activity_1", + "Activity_2", + "Activity_3", + "Activity_4", + "Activity_5", + "Activity_6", + "Activity_7", + "Activity_8", + "Activity_9", + "Activity_10", + "Activity_13", + "Activity_16", + "Activity_17", + "Activity_18", + "Activity_19", + "Activity_20", + "Activity_21", + "Activity_22", + "Activity_24", + "Activity_27", + "Activity_28", + "Activity_29", + "Activity_30" + ], + "encounterId": "Encounter_1" + }, + { + "id": "ScheduledActivityInstance_10", + "extensionAttributes": [], + "name": "SCREEN2", + "label": "Screen Two", + "description": "-", + "defaultConditionId": "ScheduledActivityInstance_11", + "epochId": "StudyEpoch_1", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": ["Activity_13", "Activity_14"], + "encounterId": "Encounter_2" + }, + { + "id": "ScheduledActivityInstance_11", + "extensionAttributes": [], + "name": "DOSE", + "label": "Dose", + "description": "-", + "defaultConditionId": "ScheduledActivityInstance_12", + "epochId": "StudyEpoch_2", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [ + "Activity_12", + "Activity_13", + "Activity_15", + "Activity_19", + "Activity_23", + "Activity_25", + "Activity_27", + "Activity_28", + "Activity_29", + "Activity_30" + ], + "encounterId": "Encounter_3" + }, + { + "id": "ScheduledActivityInstance_12", + "extensionAttributes": [], + "name": "WK2", + "label": "Week 2", + "description": "-", + "defaultConditionId": "ScheduledActivityInstance_13", + "epochId": "StudyEpoch_2", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [ + "Activity_11", + "Activity_13", + "Activity_16", + "Activity_19", + "Activity_20", + "Activity_21", + "Activity_22", + "Activity_23", + "Activity_25", + "Activity_30" + ], + "encounterId": "Encounter_4" + }, + { + "id": "ScheduledActivityInstance_13", + "extensionAttributes": [], + "name": "WK4", + "label": "Week 4", + "description": "-", + "defaultConditionId": "ScheduledActivityInstance_14", + "epochId": "StudyEpoch_3", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [ + "Activity_13", + "Activity_16", + "Activity_19", + "Activity_20", + "Activity_21", + "Activity_23", + "Activity_25", + "Activity_30" + ], + "encounterId": "Encounter_5" + }, + { + "id": "ScheduledActivityInstance_14", + "extensionAttributes": [], + "name": "WK6", + "label": "Week 6", + "description": "-", + "defaultConditionId": "ScheduledActivityInstance_15", + "epochId": "StudyEpoch_3", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [ + "Activity_13", + "Activity_16", + "Activity_19", + "Activity_20", + "Activity_21", + "Activity_23", + "Activity_25", + "Activity_30" + ], + "encounterId": "Encounter_6" + }, + { + "id": "ScheduledActivityInstance_15", + "extensionAttributes": [], + "name": "WK8", + "label": "Week 8", + "description": "-", + "defaultConditionId": "ScheduledActivityInstance_16", + "epochId": "StudyEpoch_3", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [ + "Activity_13", + "Activity_16", + "Activity_19", + "Activity_20", + "Activity_21", + "Activity_25", + "Activity_27", + "Activity_28", + "Activity_29", + "Activity_30" + ], + "encounterId": "Encounter_7" + }, + { + "id": "ScheduledActivityInstance_16", + "extensionAttributes": [], + "name": "WK8N", + "label": "Week NPI", + "description": "-", + "defaultConditionId": "ScheduledActivityInstance_17", + "epochId": "StudyEpoch_3", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": ["Activity_30"], + "encounterId": "Encounter_7" + }, + { + "id": "ScheduledActivityInstance_17", + "extensionAttributes": [], + "name": "WK12", + "label": "Week 12", + "description": "-", + "defaultConditionId": "ScheduledActivityInstance_18", + "epochId": "StudyEpoch_3", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [ + "Activity_13", + "Activity_16", + "Activity_19", + "Activity_20", + "Activity_21", + "Activity_22", + "Activity_23", + "Activity_25", + "Activity_30" + ], + "encounterId": "Encounter_8" + }, + { + "id": "ScheduledActivityInstance_18", + "extensionAttributes": [], + "name": "WK12N", + "label": "Week 12 NPI", + "description": "-", + "defaultConditionId": "ScheduledActivityInstance_19", + "epochId": "StudyEpoch_3", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": ["Activity_30"], + "encounterId": "Encounter_8" + }, + { + "id": "ScheduledActivityInstance_19", + "extensionAttributes": [], + "name": "WK16", + "label": "Week 16", + "description": "-", + "defaultConditionId": "ScheduledActivityInstance_20", + "epochId": "StudyEpoch_3", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [ + "Activity_13", + "Activity_16", + "Activity_19", + "Activity_20", + "Activity_21", + "Activity_25", + "Activity_27", + "Activity_28", + "Activity_29", + "Activity_30" + ], + "encounterId": "Encounter_9" + }, + { + "id": "ScheduledActivityInstance_20", + "extensionAttributes": [], + "name": "WK16N", + "label": "Week 16 NPI", + "description": "-", + "defaultConditionId": "ScheduledActivityInstance_21", + "epochId": "StudyEpoch_3", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": ["Activity_30"], + "encounterId": "Encounter_9" + }, + { + "id": "ScheduledActivityInstance_21", + "extensionAttributes": [], + "name": "WK20", + "label": "Week 20", + "description": "-", + "defaultConditionId": "ScheduledActivityInstance_22", + "epochId": "StudyEpoch_3", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [ + "Activity_13", + "Activity_16", + "Activity_19", + "Activity_20", + "Activity_21", + "Activity_23", + "Activity_25", + "Activity_30" + ], + "encounterId": "Encounter_10" + }, + { + "id": "ScheduledActivityInstance_22", + "extensionAttributes": [], + "name": "WK20N", + "label": "Week 20 NPI", + "description": "-", + "defaultConditionId": "ScheduledActivityInstance_23", + "epochId": "StudyEpoch_3", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": ["Activity_30"], + "encounterId": "Encounter_10" + }, + { + "id": "ScheduledActivityInstance_23", + "extensionAttributes": [], + "name": "WK24", + "label": "Week 24", + "description": "-", + "defaultConditionId": "ScheduledActivityInstance_24", + "epochId": "StudyEpoch_4", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [ + "Activity_13", + "Activity_16", + "Activity_19", + "Activity_20", + "Activity_21", + "Activity_22", + "Activity_25", + "Activity_27", + "Activity_28", + "Activity_29", + "Activity_30" + ], + "encounterId": "Encounter_11" + }, + { + "id": "ScheduledActivityInstance_24", + "extensionAttributes": [], + "name": "WK26", + "label": "Week 26", + "description": "-", + "defaultConditionId": null, + "epochId": "StudyEpoch_5", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": "ScheduleTimelineExit_4", + "activityIds": [ + "Activity_7", + "Activity_13", + "Activity_16", + "Activity_19", + "Activity_20", + "Activity_21", + "Activity_25", + "Activity_26", + "Activity_30" + ], + "encounterId": "Encounter_12" + } + ], + "plannedDuration": null, + "instanceType": "ScheduleTimeline" + }, + { + "id": "ScheduleTimeline_1", + "extensionAttributes": [], + "name": "Adverse Event Timeline", + "label": "Adverse Event Timeline", + "description": "This is the adverse event timeline", + "mainTimeline": false, + "entryCondition": "Subject suffers an adverse event", + "entryId": "ScheduledActivityInstance_1", + "exits": [ + { + "id": "ScheduleTimelineExit_1", + "extensionAttributes": [], + "instanceType": "ScheduleTimelineExit" + } + ], + "timings": [ + { + "id": "Timing_17", + "extensionAttributes": [], + "name": "TIM17", + "label": "Adverse Event", + "description": "Adverse Event", + "type": { + "id": "Code_72", + "extensionAttributes": [], + "code": "C201358", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Fixed Reference", + "instanceType": "Code" + }, + "value": "P1D", + "valueLabel": "1 Day", + "relativeToFrom": { + "id": "Code_73", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_1", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_1", + "windowLower": null, + "windowUpper": null, + "windowLabel": "", + "instanceType": "Timing" + } + ], + "instances": [ + { + "id": "ScheduledActivityInstance_1", + "extensionAttributes": [], + "name": "AE", + "label": "Adevers Event", + "description": "-", + "defaultConditionId": null, + "epochId": null, + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": "ScheduleTimelineExit_1", + "activityIds": ["Activity_31"], + "encounterId": null + } + ], + "plannedDuration": null, + "instanceType": "ScheduleTimeline" + }, + { + "id": "ScheduleTimeline_2", + "extensionAttributes": [], + "name": "Early Termination Timeline", + "label": "Early Termination Timeline", + "description": "This is the early termination processing", + "mainTimeline": false, + "entryCondition": "Subject terminates the study early", + "entryId": "ScheduledActivityInstance_2", + "exits": [ + { + "id": "ScheduleTimelineExit_2", + "extensionAttributes": [], + "instanceType": "ScheduleTimelineExit" + } + ], + "timings": [ + { + "id": "Timing_18", + "extensionAttributes": [], + "name": "TIM18", + "label": "Early Termination", + "description": "Early Termination", + "type": { + "id": "Code_74", + "extensionAttributes": [], + "code": "C201358", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Fixed Reference", + "instanceType": "Code" + }, + "value": "P1D", + "valueLabel": "1 Day", + "relativeToFrom": { + "id": "Code_75", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_2", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_2", + "windowLower": null, + "windowUpper": null, + "windowLabel": "", + "instanceType": "Timing" + } + ], + "instances": [ + { + "id": "ScheduledActivityInstance_2", + "extensionAttributes": [], + "name": "ET", + "label": "Early Termination", + "description": "-", + "defaultConditionId": null, + "epochId": null, + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": "ScheduleTimelineExit_2", + "activityIds": [ + "Activity_7", + "Activity_13", + "Activity_16", + "Activity_19", + "Activity_20", + "Activity_21", + "Activity_22", + "Activity_23", + "Activity_25", + "Activity_26", + "Activity_27", + "Activity_28", + "Activity_29", + "Activity_30", + "Activity_32" + ], + "encounterId": null + } + ], + "plannedDuration": null, + "instanceType": "ScheduleTimeline" + }, + { + "id": "ScheduleTimeline_3", + "extensionAttributes": [], + "name": "Vital Sign Blood Pressure Timeline", + "label": "Vital Sign Blood Pressure Timeline", + "description": "BP Profile", + "mainTimeline": false, + "entryCondition": "Automatic execution", + "entryId": "ScheduledActivityInstance_3", + "exits": [ + { + "id": "ScheduleTimelineExit_3", + "extensionAttributes": [], + "instanceType": "ScheduleTimelineExit" + } + ], + "timings": [ + { + "id": "Timing_19", + "extensionAttributes": [], + "name": "TIM19", + "label": "Supine", + "description": "Supine", + "type": { + "id": "Code_76", + "extensionAttributes": [], + "code": "C201358", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Fixed Reference", + "instanceType": "Code" + }, + "value": "PT0M", + "valueLabel": "0 mins", + "relativeToFrom": { + "id": "Code_77", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_3", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_3", + "windowLower": null, + "windowUpper": null, + "windowLabel": "", + "instanceType": "Timing" + }, + { + "id": "Timing_20", + "extensionAttributes": [], + "name": "TIM20", + "label": "VS while supine", + "description": "VS while supine", + "type": { + "id": "Code_78", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "PT5M", + "valueLabel": "5 mins", + "relativeToFrom": { + "id": "Code_79", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_4", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_3", + "windowLower": null, + "windowUpper": null, + "windowLabel": "", + "instanceType": "Timing" + }, + { + "id": "Timing_21", + "extensionAttributes": [], + "name": "TIM21", + "label": "Standing", + "description": "Standing", + "type": { + "id": "Code_80", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "PT0M", + "valueLabel": "0 min", + "relativeToFrom": { + "id": "Code_81", + "extensionAttributes": [], + "code": "C201353", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "End to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_5", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_4", + "windowLower": null, + "windowUpper": null, + "windowLabel": "", + "instanceType": "Timing" + }, + { + "id": "Timing_22", + "extensionAttributes": [], + "name": "TIM22", + "label": "VS while standing", + "description": "VS while standing", + "type": { + "id": "Code_82", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "PT1M", + "valueLabel": "1 min", + "relativeToFrom": { + "id": "Code_83", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_6", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_5", + "windowLower": null, + "windowUpper": null, + "windowLabel": "", + "instanceType": "Timing" + }, + { + "id": "Timing_23", + "extensionAttributes": [], + "name": "TIM23", + "label": "Standing", + "description": "Standing", + "type": { + "id": "Code_84", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "PT0M", + "valueLabel": "0 min", + "relativeToFrom": { + "id": "Code_85", + "extensionAttributes": [], + "code": "C201353", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "End to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_7", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_6", + "windowLower": null, + "windowUpper": null, + "windowLabel": "", + "instanceType": "Timing" + }, + { + "id": "Timing_24", + "extensionAttributes": [], + "name": "TIM24", + "label": "VS while standing", + "description": "VS while standing", + "type": { + "id": "Code_86", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "PT2M", + "valueLabel": "2 min", + "relativeToFrom": { + "id": "Code_87", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_8", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_7", + "windowLower": null, + "windowUpper": null, + "windowLabel": "", + "instanceType": "Timing" + } + ], + "instances": [ + { + "id": "ScheduledActivityInstance_3", + "extensionAttributes": [], + "name": "VS_5MIN", + "label": "5 minute supine", + "description": "", + "defaultConditionId": "ScheduledActivityInstance_4", + "epochId": null, + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": ["Activity_33"], + "encounterId": null + }, + { + "id": "ScheduledActivityInstance_4", + "extensionAttributes": [], + "name": "VS_SUPINE", + "label": "Vital signs supine", + "description": "", + "defaultConditionId": "ScheduledActivityInstance_5", + "epochId": null, + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": ["Activity_34"], + "encounterId": null + }, + { + "id": "ScheduledActivityInstance_5", + "extensionAttributes": [], + "name": "VS_1MIN", + "label": "1 minute standing", + "description": "", + "defaultConditionId": "ScheduledActivityInstance_6", + "epochId": null, + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": ["Activity_35"], + "encounterId": null + }, + { + "id": "ScheduledActivityInstance_6", + "extensionAttributes": [], + "name": "VS_STAND1", + "label": "Vital signs after 1 min standing", + "description": "", + "defaultConditionId": "ScheduledActivityInstance_7", + "epochId": null, + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": ["Activity_36"], + "encounterId": null + }, + { + "id": "ScheduledActivityInstance_7", + "extensionAttributes": [], + "name": "VS_2MIN", + "label": "2 minute standing", + "description": "", + "defaultConditionId": "ScheduledActivityInstance_8", + "epochId": null, + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": ["Activity_35"], + "encounterId": null + }, + { + "id": "ScheduledActivityInstance_8", + "extensionAttributes": [], + "name": "VS_STAND3", + "label": "Vital signs after 3 min standing", + "description": "", + "defaultConditionId": null, + "epochId": null, + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": "ScheduleTimelineExit_3", + "activityIds": ["Activity_36"], + "encounterId": null + } + ], + "plannedDuration": null, + "instanceType": "ScheduleTimeline" + } + ], + "biospecimenRetentions": [], + "documentVersionIds": [], + "eligibilityCriteria": [ + { + "id": "EligibilityCriterion_1", + "extensionAttributes": [], + "name": "IN01", + "label": "Age greater than 50", + "description": "", + "category": { + "id": "Code_638", + "extensionAttributes": [], + "code": "C25532", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Inclusion Criteria", + "instanceType": "Code" + }, + "identifier": "01", + "criterionItemId": "EligibilityCriterionItem_1", + "nextId": null, + "previousId": null, + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_2", + "extensionAttributes": [], + "name": "IN02", + "label": "Diagnosis of Alzheimer's", + "description": "", + "category": { + "id": "Code_639", + "extensionAttributes": [], + "code": "C25532", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Inclusion Criteria", + "instanceType": "Code" + }, + "identifier": "02", + "criterionItemId": "EligibilityCriterionItem_2", + "nextId": null, + "previousId": null, + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_3", + "extensionAttributes": [], + "name": "IN03", + "label": "MMSE Score", + "description": "", + "category": { + "id": "Code_640", + "extensionAttributes": [], + "code": "C25532", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Inclusion Criteria", + "instanceType": "Code" + }, + "identifier": "03", + "criterionItemId": "EligibilityCriterionItem_3", + "nextId": null, + "previousId": null, + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_4", + "extensionAttributes": [], + "name": "IN04", + "label": "Hachinski Ischemic Score", + "description": "", + "category": { + "id": "Code_641", + "extensionAttributes": [], + "code": "C25532", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Inclusion Criteria", + "instanceType": "Code" + }, + "identifier": "04", + "criterionItemId": "EligibilityCriterionItem_4", + "nextId": null, + "previousId": null, + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_5", + "extensionAttributes": [], + "name": "IN05", + "label": "CNS imaging comptaible with Alzheimer's", + "description": "", + "category": { + "id": "Code_642", + "extensionAttributes": [], + "code": "C25532", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Inclusion Criteria", + "instanceType": "Code" + }, + "identifier": "05", + "criterionItemId": "EligibilityCriterionItem_5", + "nextId": null, + "previousId": null, + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_6", + "extensionAttributes": [], + "name": "IN06", + "label": "Informed consent criteria", + "description": "", + "category": { + "id": "Code_643", + "extensionAttributes": [], + "code": "C25532", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Inclusion Criteria", + "instanceType": "Code" + }, + "identifier": "06", + "criterionItemId": "EligibilityCriterionItem_6", + "nextId": null, + "previousId": null, + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_7", + "extensionAttributes": [], + "name": "IN07", + "label": "Geographic proximity criteria", + "description": "", + "category": { + "id": "Code_644", + "extensionAttributes": [], + "code": "C25532", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Inclusion Criteria", + "instanceType": "Code" + }, + "identifier": "07", + "criterionItemId": "EligibilityCriterionItem_7", + "nextId": null, + "previousId": null, + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_8", + "extensionAttributes": [], + "name": "IN08", + "label": "Reliable caregiver criteria", + "description": "", + "category": { + "id": "Code_645", + "extensionAttributes": [], + "code": "C25532", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Inclusion Criteria", + "instanceType": "Code" + }, + "identifier": "08", + "criterionItemId": "EligibilityCriterionItem_8", + "nextId": null, + "previousId": null, + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_9", + "extensionAttributes": [], + "name": "EX01", + "label": "Previous study criteria", + "description": "", + "category": { + "id": "Code_646", + "extensionAttributes": [], + "code": "C25370", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Exclusion Criteria", + "instanceType": "Code" + }, + "identifier": "09", + "criterionItemId": "EligibilityCriterionItem_9", + "nextId": null, + "previousId": null, + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_10", + "extensionAttributes": [], + "name": "EX02", + "label": "Other Alzheimer's therapy criteria", + "description": "", + "category": { + "id": "Code_647", + "extensionAttributes": [], + "code": "C25370", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Exclusion Criteria", + "instanceType": "Code" + }, + "identifier": "10", + "criterionItemId": "EligibilityCriterionItem_10", + "nextId": null, + "previousId": null, + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_11", + "extensionAttributes": [], + "name": "EX03", + "label": "Serious illness criteria", + "description": "", + "category": { + "id": "Code_648", + "extensionAttributes": [], + "code": "C25370", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Exclusion Criteria", + "instanceType": "Code" + }, + "identifier": "11", + "criterionItemId": "EligibilityCriterionItem_11", + "nextId": null, + "previousId": null, + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_12", + "extensionAttributes": [], + "name": "EX04", + "label": "Serious neurolocal conditions criteria", + "description": "", + "category": { + "id": "Code_649", + "extensionAttributes": [], + "code": "C25370", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Exclusion Criteria", + "instanceType": "Code" + }, + "identifier": "12", + "criterionItemId": "EligibilityCriterionItem_12", + "nextId": null, + "previousId": null, + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_13", + "extensionAttributes": [], + "name": "EX05", + "label": "Depression criteria", + "description": "", + "category": { + "id": "Code_650", + "extensionAttributes": [], + "code": "C25370", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Exclusion Criteria", + "instanceType": "Code" + }, + "identifier": "13", + "criterionItemId": "EligibilityCriterionItem_13", + "nextId": null, + "previousId": null, + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_14", + "extensionAttributes": [], + "name": "EX06", + "label": "Schizophrenia, Bipolar, Ethanol or psychoactive abuse criteria", + "description": "", + "category": { + "id": "Code_651", + "extensionAttributes": [], + "code": "C25370", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Exclusion Criteria", + "instanceType": "Code" + }, + "identifier": "14", + "criterionItemId": "EligibilityCriterionItem_14", + "nextId": null, + "previousId": null, + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_15", + "extensionAttributes": [], + "name": "EX07", + "label": "Syncope criteria", + "description": "", + "category": { + "id": "Code_652", + "extensionAttributes": [], + "code": "C25370", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Exclusion Criteria", + "instanceType": "Code" + }, + "identifier": "15", + "criterionItemId": "EligibilityCriterionItem_15", + "nextId": null, + "previousId": null, + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_16", + "extensionAttributes": [], + "name": "EX08", + "label": "ECG Criteria", + "description": "", + "category": { + "id": "Code_653", + "extensionAttributes": [], + "code": "C25370", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Exclusion Criteria", + "instanceType": "Code" + }, + "identifier": "16b", + "criterionItemId": "EligibilityCriterionItem_16", + "nextId": null, + "previousId": null, + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_17", + "extensionAttributes": [], + "name": "EX09", + "label": "Cardiovascular criteria", + "description": "", + "category": { + "id": "Code_654", + "extensionAttributes": [], + "code": "C25370", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Exclusion Criteria", + "instanceType": "Code" + }, + "identifier": "17", + "criterionItemId": "EligibilityCriterionItem_17", + "nextId": null, + "previousId": null, + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_18", + "extensionAttributes": [], + "name": "EX10", + "label": "Gastrointensinal criteria", + "description": "", + "category": { + "id": "Code_655", + "extensionAttributes": [], + "code": "C25370", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Exclusion Criteria", + "instanceType": "Code" + }, + "identifier": "18", + "criterionItemId": "EligibilityCriterionItem_18", + "nextId": null, + "previousId": null, + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_19", + "extensionAttributes": [], + "name": "EX11", + "label": "Endocrine criteria", + "description": "", + "category": { + "id": "Code_656", + "extensionAttributes": [], + "code": "C25370", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Exclusion Criteria", + "instanceType": "Code" + }, + "identifier": "19", + "criterionItemId": "EligibilityCriterionItem_19", + "nextId": null, + "previousId": null, + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_20", + "extensionAttributes": [], + "name": "EX12", + "label": "Resporatory criteria", + "description": "", + "category": { + "id": "Code_657", + "extensionAttributes": [], + "code": "C25370", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Exclusion Criteria", + "instanceType": "Code" + }, + "identifier": "20", + "criterionItemId": "EligibilityCriterionItem_20", + "nextId": null, + "previousId": null, + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_21", + "extensionAttributes": [], + "name": "EX13", + "label": "Genitourinary criteria", + "description": "", + "category": { + "id": "Code_658", + "extensionAttributes": [], + "code": "C25370", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Exclusion Criteria", + "instanceType": "Code" + }, + "identifier": "21", + "criterionItemId": "EligibilityCriterionItem_21", + "nextId": null, + "previousId": null, + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_22", + "extensionAttributes": [], + "name": "EX14", + "label": "Rheumatologic criteria", + "description": "", + "category": { + "id": "Code_659", + "extensionAttributes": [], + "code": "C25370", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Exclusion Criteria", + "instanceType": "Code" + }, + "identifier": "22", + "criterionItemId": "EligibilityCriterionItem_22", + "nextId": null, + "previousId": null, + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_23", + "extensionAttributes": [], + "name": "EX15", + "label": "HIV criteria", + "description": "", + "category": { + "id": "Code_660", + "extensionAttributes": [], + "code": "C25370", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Exclusion Criteria", + "instanceType": "Code" + }, + "identifier": "23", + "criterionItemId": "EligibilityCriterionItem_23", + "nextId": null, + "previousId": null, + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_24", + "extensionAttributes": [], + "name": "EX16", + "label": "Neurosyphilis, Meningitis,Encephalitis criteria", + "description": "", + "category": { + "id": "Code_661", + "extensionAttributes": [], + "code": "C25370", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Exclusion Criteria", + "instanceType": "Code" + }, + "identifier": "24", + "criterionItemId": "EligibilityCriterionItem_24", + "nextId": null, + "previousId": null, + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_25", + "extensionAttributes": [], + "name": "EX17", + "label": "Malignant disease criteria", + "description": "", + "category": { + "id": "Code_662", + "extensionAttributes": [], + "code": "C25370", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Exclusion Criteria", + "instanceType": "Code" + }, + "identifier": "25", + "criterionItemId": "EligibilityCriterionItem_25", + "nextId": null, + "previousId": null, + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_26", + "extensionAttributes": [], + "name": "EX18", + "label": "Ability to participate in study criteria", + "description": "", + "category": { + "id": "Code_663", + "extensionAttributes": [], + "code": "C25370", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Exclusion Criteria", + "instanceType": "Code" + }, + "identifier": "26", + "criterionItemId": "EligibilityCriterionItem_26", + "nextId": null, + "previousId": null, + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_27", + "extensionAttributes": [], + "name": "EX19", + "label": "Laboratory values criteria", + "description": "", + "category": { + "id": "Code_664", + "extensionAttributes": [], + "code": "C25370", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Exclusion Criteria", + "instanceType": "Code" + }, + "identifier": "27b", + "criterionItemId": "EligibilityCriterionItem_27", + "nextId": null, + "previousId": null, + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_28", + "extensionAttributes": [], + "name": "EX20", + "label": "Central laboratory values criteria", + "description": "", + "category": { + "id": "Code_665", + "extensionAttributes": [], + "code": "C25370", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Exclusion Criteria", + "instanceType": "Code" + }, + "identifier": "28b", + "criterionItemId": "EligibilityCriterionItem_28", + "nextId": null, + "previousId": null, + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_29", + "extensionAttributes": [], + "name": "EX21", + "label": "Syphilia criteria", + "description": "", + "category": { + "id": "Code_666", + "extensionAttributes": [], + "code": "C25370", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Exclusion Criteria", + "instanceType": "Code" + }, + "identifier": "29b", + "criterionItemId": "EligibilityCriterionItem_29", + "nextId": null, + "previousId": null, + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_30", + "extensionAttributes": [], + "name": "EX22", + "label": "Hemoglobin criteria", + "description": "", + "category": { + "id": "Code_667", + "extensionAttributes": [], + "code": "C25370", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Exclusion Criteria", + "instanceType": "Code" + }, + "identifier": "30b", + "criterionItemId": "EligibilityCriterionItem_30", + "nextId": null, + "previousId": null, + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_31", + "extensionAttributes": [], + "name": "EX23", + "label": "Medications Criteria", + "description": "", + "category": { + "id": "Code_668", + "extensionAttributes": [], + "code": "C25370", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Exclusion Criteria", + "instanceType": "Code" + }, + "identifier": "31b", + "criterionItemId": "EligibilityCriterionItem_31", + "nextId": null, + "previousId": null, + "notes": [], + "instanceType": "EligibilityCriterion" + } + ], + "analysisPopulations": [ + { + "id": "AnalysisPopulation_1", + "extensionAttributes": [], + "name": "AP_1", + "label": null, + "description": null, + "text": "Patients with Mild to Moderate Alzheimer\u2019s Disease.", + "subsetOfIds": ["StudyDesignPopulation_1"], + "notes": [], + "instanceType": "AnalysisPopulation" + } + ], + "notes": [], + "instanceType": "InterventionalStudyDesign", + "subTypes": [ + { + "id": "Code_153", + "extensionAttributes": [], + "code": "C49666", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Efficacy Study", + "instanceType": "Code" + }, + { + "id": "Code_154", + "extensionAttributes": [], + "code": "C49667", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Safety Study", + "instanceType": "Code" + }, + { + "id": "Code_155", + "extensionAttributes": [], + "code": "C49663", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Pharmacokinetic Study", + "instanceType": "Code" + } + ], + "model": { + "id": "Code_156", + "extensionAttributes": [], + "code": "C82639", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Parallel Study", + "instanceType": "Code" + }, + "intentTypes": [ + { + "id": "Code_152", + "extensionAttributes": [], + "code": "C49656", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Treatment Study", + "instanceType": "Code" + } + ], + "blindingSchema": { + "id": "AliasCode_23", + "extensionAttributes": [], + "standardCode": { + "id": "Code_151", + "extensionAttributes": [], + "code": "C15228", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Double Blind Study", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + } + } + ], + "titles": [ + { + "id": "StudyTitle_1", + "extensionAttributes": [], + "text": "LZZT", + "type": { + "id": "Code_7", + "extensionAttributes": [], + "code": "C94108", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Study Acronym", + "instanceType": "Code" + }, + "instanceType": "StudyTitle" + }, + { + "id": "StudyTitle_2", + "extensionAttributes": [], + "text": "Xanomeline (LY246708)", + "type": { + "id": "Code_9", + "extensionAttributes": [], + "code": "C99905x1", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Brief Study Title", + "instanceType": "Code" + }, + "instanceType": "StudyTitle" + }, + { + "id": "StudyTitle_3", + "extensionAttributes": [], + "text": "Safety and Efficacy of the Xanomeline Transdermal Therapeutic System (TTS) in Patients with Mild to Moderate Alzheimer's Disease", + "type": { + "id": "Code_10", + "extensionAttributes": [], + "code": "C99905x2", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Official Study Title", + "instanceType": "Code" + }, + "instanceType": "StudyTitle" + }, + { + "id": "StudyTitle_4", + "extensionAttributes": [], + "text": "Safety and Efficacy of the Xanomeline Transdermal Therapeutic System (TTS) in Patients with Mild to Moderate Alzheimer's Disease", + "type": { + "id": "Code_11", + "extensionAttributes": [], + "code": "C99905x3", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Public Study Title", + "instanceType": "Code" + }, + "instanceType": "StudyTitle" + } + ], + "eligibilityCriterionItems": [ + { + "id": "EligibilityCriterionItem_1", + "extensionAttributes": [], + "name": "IN01", + "label": null, + "description": null, + "text": "

Males and postmenopausal females at least years of age.

", + "dictionaryId": "SyntaxTemplateDictionary_1", + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_2", + "extensionAttributes": [], + "name": "IN02", + "label": null, + "description": null, + "text": "

as defined by National Institute of Neurological and Communicative Disorders and Stroke (NINCDS) and the Alzheimer's Disease and Related Disorders Association (ADRDA) guidelines (Attachment LZZT.7).

", + "dictionaryId": "SyntaxTemplateDictionary_1", + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_3", + "extensionAttributes": [], + "name": "IN03", + "label": null, + "description": null, + "text": "

score of 10 to 23.

", + "dictionaryId": "SyntaxTemplateDictionary_2", + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_4", + "extensionAttributes": [], + "name": "IN04", + "label": null, + "description": null, + "text": "

score of \u22644 (Attachment LZZT.8).

", + "dictionaryId": "SyntaxTemplateDictionary_2", + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_5", + "extensionAttributes": [], + "name": "IN05", + "label": null, + "description": null, + "text": "

CNS imaging (CT scan or MRI of brain) compatible with AD within past 1 year.

\n

The following findings are incompatible with AD:

\n
    \n
  1. \n

    Large vessel strokes

    \n
      \n
    1. \n

      Any definite area of encephalomalacia consistent with ischemic necrosis in any cerebral artery territory.

      \n
    2. \n
    3. \n

      Large, confluent areas of encephalomalacia in parieto-occipital or frontal regions consistent with watershed\n infarcts.

      \n

      The above are exclusionary. Exceptions are made for small areas of cortical asymmetry which may represent a\n small cortical stroke or a focal area of atrophy provided there is no abnormal signal intensity in the\n immediately underlying parenchyma. Only one such questionable area allowed per scan, and size is restricted to\n \u22641cm in frontal/parietal/temporal cortices and \u22642 cm in occipital cortex.

      \n
    4. \n
    \n
  2. \n
  3. \n

    Small vessel ischemia

    \n
      \n
    1. \n

      Lacunar infarct is defined as an area of abnormal intensity seen on CT scan or on both T1 and T2 weighted MRI\n images in the basal ganglia, thalamus or deep white matter which is \u22641 cm in maximal diameter. A maximum of\n one\n lacune is allowed per scan.

      \n
    2. \n
    3. \n

      Leukoariosis or leukoencephalopathy is regarded as an abnormality seen on T2 but not T1 weighted MRIs, or on\n CT. This is accepted if mild or moderate in extent, meaning involvement of less than 25% of cortical white\n matter.\n

    4. \n
    \n
  4. \n
  5. \n

    Miscellaneous

    \n
      \n
    1. \n

      Benign small extra-axial tumors (ie, meningiomas) are accepted if they do not contact or indent the brain\n parenchyma.

      \n
    2. \n
    3. \n

      Small extra-axial arachnoid cysts are accepted if they do not indent or deform the brain parenchyma.

      \n
    4. \n
    \n
  6. \n
", + "dictionaryId": null, + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_6", + "extensionAttributes": [], + "name": "IN06", + "label": null, + "description": null, + "text": "

Investigator has obtained informed consent signed by the patient (and/or legal representative) and by the caregiver.

", + "dictionaryId": null, + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_7", + "extensionAttributes": [], + "name": "IN07", + "label": null, + "description": null, + "text": "

Geographic proximity to investigator's site that allows adequate follow-up.

", + "dictionaryId": null, + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_8", + "extensionAttributes": [], + "name": "IN08", + "label": null, + "description": null, + "text": "

A reliable caregiver who is in frequent or daily contact with the patient and who will accompany the patient to the office and/or be available by telephone at designated times, will monitor administration of prescribed medications, and will be responsible for the overall care of the patient at home. The caregiver and the patient must be able to communicate in English and willing to comply with 26 weeks of transdermal therapy.

", + "dictionaryId": null, + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_9", + "extensionAttributes": [], + "name": "EX01", + "label": null, + "description": null, + "text": "

Persons who have previously completed or withdrawn from this study or any other study investigating xanomeline TTS or the oral formulation of xanomeline.

", + "dictionaryId": null, + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_10", + "extensionAttributes": [], + "name": "EX02", + "label": null, + "description": null, + "text": "

Use of any investigational agent or approved Alzheimer's therapeutic medication within 30 days prior to enrollment into the study.

", + "dictionaryId": null, + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_11", + "extensionAttributes": [], + "name": "EX03", + "label": null, + "description": null, + "text": "

Serious illness which required hospitalization within 3 months of screening.

", + "dictionaryId": null, + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_12", + "extensionAttributes": [], + "name": "EX04", + "label": null, + "description": null, + "text": "

Diagnosis of serious neurological conditions, including

\n
    \n
  1. Stroke or vascular dementia documented by clinical history and/or radiographic findings interpretable by the investigator as indicative of these disorders

  2. \n
  3. Seizure disorder other than simple childhood febrile seizures

  4. \n
  5. Severe head trauma resulting in protracted loss of consciousness within the last 5 years, or multiple episodes of head trauma

  6. \n
  7. Parkinson's disease

  8. \n
  9. Multiple sclerosis

  10. \n
  11. Amyotrophic lateral sclerosis

  12. \n
  13. Myasthenia gravis.

  14. \n
", + "dictionaryId": null, + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_13", + "extensionAttributes": [], + "name": "EX05", + "label": null, + "description": null, + "text": "

Episode of depression meeting DSM-IV criteria within 3 months of screening.

", + "dictionaryId": null, + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_14", + "extensionAttributes": [], + "name": "EX06", + "label": null, + "description": null, + "text": "

A history within the last 5 years of the following:

\n
    \n
  1. Schizophrenia

  2. \n
  3. Bipolar Disease

  4. \n
  5. Ethanol or psychoactive drug abuse or dependence.

  6. \n
", + "dictionaryId": null, + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_15", + "extensionAttributes": [], + "name": "EX07", + "label": null, + "description": null, + "text": "

A history of syncope within the last 5 years.

", + "dictionaryId": null, + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_16", + "extensionAttributes": [], + "name": "EX08", + "label": null, + "description": null, + "text": "

Evidence from ECG recording at screening of any of the following conditions :

\n
    \n
  1. Left bundle branch block

  2. \n
  3. Bradycardia \u226450 beats per minute

  4. \n
  5. Sinus pauses >2 seconds

  6. \n
  7. Second or third degree heart block unless treated with a pacemaker

  8. \n
  9. Wolff-Parkinson-White syndrome

  10. \n
  11. Sustained supraventricular tachyarrhythmia including SVT\u226510 sec, atrial fibrillation, atrial flutter.

  12. \n
  13. Ventricular tachycardia at a rate of \u2265120 beats per minute lasting\u226510 seconds.

  14. \n
", + "dictionaryId": null, + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_17", + "extensionAttributes": [], + "name": "EX09", + "label": null, + "description": null, + "text": "

A history within the last 5 years of a serious cardiovascular disorder, including

\n
    \n
  1. Clinically significant arrhythmia

  2. \n
  3. Symptomatic sick sinus syndrome not treated with a pacemaker

  4. \n
  5. Congestive heart failure refractory to treatment

  6. \n
  7. Angina except angina controlled with PRN nitroglycerin

  8. \n
  9. Resting heart rate <50 or >100 beats per minute, on physical exam

  10. \n
  11. Uncontrolled hypertension.

  12. \n
", + "dictionaryId": null, + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_18", + "extensionAttributes": [], + "name": "EX10", + "label": null, + "description": null, + "text": "

A history within the last 5 years of a serious gastrointestinal disorder, including

\n
    \n
  1. Chronic peptic/duodenal/gastric/esophageal ulcer that are untreated or refractory to treatment

  2. \n
  3. Symptomatic diverticular disease

  4. \n
  5. Inflammatory bowel disease

  6. \n
  7. Pancreatitis

  8. \n
  9. Hepatitis

  10. \n
  11. Cirrhosis of the liver.

  12. \n
", + "dictionaryId": null, + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_19", + "extensionAttributes": [], + "name": "EX11", + "label": null, + "description": null, + "text": "

A history within the last 5 years of a serious endocrine disorder, including

\n
    \n
  1. Uncontrolled Insulin Dependent Diabetes Mellitus (IDDM)

  2. \n
  3. Diabetic ketoacidosis

  4. \n
  5. Untreated hyperthyroidism

  6. \n
  7. Untreated hypothyroidism

  8. \n
  9. Other untreated endocrinological disorder

  10. \n
", + "dictionaryId": null, + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_20", + "extensionAttributes": [], + "name": "EX12", + "label": null, + "description": null, + "text": "

A history within the last 5 years of a serious respiratory disorder, including

\n
    \n
  1. Asthma with bronchospasm refractory to treatment

  2. \n
  3. Decompensated chronic obstructive pulmonary disease.

  4. \n
", + "dictionaryId": null, + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_21", + "extensionAttributes": [], + "name": "EX13", + "label": null, + "description": null, + "text": "

A history within the last 5 years of a serious genitourinary disorder, including

\n
    \n
  1. Renal failure

  2. \n
  3. Uncontrolled urinary retention.

  4. \n
", + "dictionaryId": null, + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_22", + "extensionAttributes": [], + "name": "EX14", + "label": null, + "description": null, + "text": "

A history within the last 5 years of a serious rheumatologic disorder, including

\n
    \n
  1. Lupus

  2. \n
  3. Temporal arteritis

  4. \n
  5. Severe rheumatoid arthritis.

  6. \n
", + "dictionaryId": null, + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_23", + "extensionAttributes": [], + "name": "EX15", + "label": null, + "description": null, + "text": "

A known history of human immunodeficiency virus (HIV) within the last 5 years.

", + "dictionaryId": null, + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_24", + "extensionAttributes": [], + "name": "EX16", + "label": null, + "description": null, + "text": "

A history within the last 5 years of a serious infectious disease including

\n
    \n
  1. a) Neurosyphilis

  2. \n
  3. b) Meningitis

  4. \n
  5. c) Encephalitis.

  6. \n
", + "dictionaryId": null, + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_25", + "extensionAttributes": [], + "name": "EX17", + "label": null, + "description": null, + "text": "

A history within the last 5 years of a primary or recurrent malignant disease with the exception of resected cutaneous squamous cell carcinoma in situ, basal cell carcinoma, cervical carcinoma in situ, or in situ prostate cancer with a normal PSA postresection.

", + "dictionaryId": null, + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_26", + "extensionAttributes": [], + "name": "EX18", + "label": null, + "description": null, + "text": "

Visual, hearing, or communication disabilities impairing the ability to participate in the study; (for example, inability to speak or understand English, illiteracy).

", + "dictionaryId": null, + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_27", + "extensionAttributes": [], + "name": "EX19", + "label": null, + "description": null, + "text": "

Laboratory test values exceeding the Lilly Reference Range III for the patient's age in any of the following analytes: \u2191 creatinine, \u2191 total bilirubin, \u2191 SGOT, \u2191 SGPT, \u2191 alkaline phosphatase, \u2191 GGT, \u2191\u2193 hemoglobin, \u2191\u2193 white blood cell count, \u2191\u2193 platelet count, \u2191\u2193 serum sodium, potassium, or calcium.

\n

If values exceed these laboratory reference ranges, clinical significance will be judged by the monitoring physicians. If the monitoring physician determines that the deviation from the reference range is not clinically significant, the patient may be included in the study. This decision will be documented.

", + "dictionaryId": null, + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_28", + "extensionAttributes": [], + "name": "EX20", + "label": null, + "description": null, + "text": "

Central laboratory test values below reference range for folate, and Vitamin B 12 , and outside reference range for thyroid function tests.

\n
    \n
  1. \n

    Folate reference range 2.0 to 25.0 ng/mL. Patients will be allowed to enroll if their folate levels are above the upper end of the range if patients are taking vitamin supplements.

    \n
  2. \n
  3. \n

    Vitamin B 12 reference range 130 to 900 pg/mL. Patients will be allowed to enroll if their B 12 levels are above the upper reference range if patients are taking oral vitamin supplements.

    \n
  4. \n
  5. \n

    Thyroid functions

    \n
      \n
    1. \n

      Thyroid Uptake reference range 25 to 38%. Patients will be allowed to enroll with results of 23 to 51% provided the remainder of the thyroid profile is normal and there are no clinical signs or symptoms of thyroid abnormality.

      \n
    2. \n
    3. \n

      TSH reference range 0.32 to 5.0. Patients will be allowed to enroll with results of 0.03 to 6.2 if patients are taking stable doses of exogenous thyroid supplements, with normal free thyroid index, and show no clinical signs or symptoms of thyroid abnormality.

      \n
    4. \n
    5. \n

      Total T4 reference range 4.5 to 12.5. Patients will be allowed to enroll with results of 4.1 to 13.4 if patients are taking stable doses of exogenous thyroid hormone, with normal free thyroid index, and show no clinical signs or symptoms of thyroid abnormality.

      \n
    6. \n
    7. \n

      Free Thyroid Index reference range 1.1 to 4.6.

      \n
    8. \n
    \n
  6. \n
", + "dictionaryId": null, + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_29", + "extensionAttributes": [], + "name": "EX21", + "label": null, + "description": null, + "text": "

Positive syphilis screening.

\n

Positive syphilis screening. As determined by positive RPR followed up by confirmatory FTA-Abs. Confirmed patients are excluded unless there is a documented medical history of an alternative disease (for example, yaws) which caused the lab abnormality.

", + "dictionaryId": null, + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_30", + "extensionAttributes": [], + "name": "EX22", + "label": null, + "description": null, + "text": "

Glycosylated hemoglobin (A1C). Required only on patients with known diabetes mellitus or random blood sugar >200 on screening labs. Patients will be excluded if levels are >9.5%

", + "dictionaryId": null, + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_31", + "extensionAttributes": [], + "name": "EX23", + "label": null, + "description": null, + "text": "

Treatment with the following medications within the specified washout periods prior to enrollment and during the\n study:

\n
    \n
  1. \n

    Anticonvulsants including but not limited to

    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    Depakote® (valproic acid) 2 weeks
    Dilantin® (phenytoin)2 weeks
    Felbatol®\n (felbamate)1 month
    Klonopin® (clonazepam)2\n weeks
    Lamictal® (lamotrigine)2 weeks
    Mysoline® (primidone)1 month
    Neurontin®\n (gabapentin)2 weeks
    Phenobarbitol1 month
    Tegretol® (carbamazepine)2 weeks
    \n
  2. \n
  3. \n

    Alpha receptor blockers including but not limited to

    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    Aldomet® (methyldopa) 2 weeks
    Cardura®\n (doxazosin) 2 weeks
    Catapres® (clonidine)\n 2 weeks
    Hytrin® (terazosin) 2 weeks
    Minipress® (prazosin)2 weeks
    Tenex® (guanfacine)2 weeks
    Wytensin®\n (guanabenz) 2 weeks
    \n

    The use of low doses\n (2 mg daily) of either Hytrin® or Cardura® for relief of\n urinary retention for patients with prostatic hypertrophy will be considered\n on a case-by-case basis provided blood pressure is stable and the medication\n has not had demonstrable effect on dementia symptoms in the opinion of the treating\n physician. Contact CRO medical monitor.

    \n
  4. \n
  5. \n

    Calcium channel blockers\n that are CNS active including but not limited to

    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    Calan® , Isoptin® , Verelan® (verapamil) 2 weeks
    Cardizem® (diltiazem) 2 weeks
    Nimotop®\n (nimodipine) 2 weeks
    Adalat® , Procardia XL®\n (nifedipine) 2 weeks
    \n

    Cardene® (nicardipine),\n Norvasc® , (amlodipine), and DynaCirc® (isradipine) will\n be allowed during the study. If a patient is taking an excluded calcium channel\n blocker and is changed to an equivalent dose of an allowed calcium channel blocker,\n enrollment may proceed in as little as 24 hours though 1 week is preferred when\n possible.

    \n
  6. \n
  7. \n

    Beta blockers including but not limited to

    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    Betapace® (sotalol) 2 weeks
    Inderal® (propranolol) 2 weeks
    Lopressor®\n , Toprol XL® (metoprolol) 2 weeks
    Corgard® (nadolol) 2 weeks
    Sectral® (acebutolol)2 weeks
    Tenormin® (atenolol) 2 weeks
    Visken® (pindolol)2 weeks
    \n

    Beta\n blocker eye drops for glaucoma will be considered on a case-by-case basis. Call\n medical monitor.

    \n
  8. \n
  9. \n

    Beta sympathomimetics (unless inhaled) including\n but not limited to

    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    Alupent® tablets\n (metaproterenol) 2 weeks
    Brethine® tablets\n (terbutaline) 2 weeks
    Dopamine 2 weeks
    Proventil Repetabs® , Ventolin® tablets (albuterol tablets)\n 2 weeks
    \n
  10. \n
  11. Parasympathomimetics (cholinergics) (unless opthalmic) including but not limited to\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    Antilirium® (physostigmine) 1 month
    Aricept® (donepezil) 1 month
    Cognex® (tacrine) 1\n month
    Mestinon® (pyridostigmine) 1 week
    Reglan® (metoclopramide)2 weeks
    Urecholine®\n , Duvoid (bethanechol) 2 weeks
    \n

    Cholinergic eye drops for treatment of glaucoma will be allowed during the study on a case-by-case basis.\n Please contact the CRO medical monitor.

    \n
  12. \n
  13. \n

    Muscle relaxants-centrally active including but not limited to

    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    Equanil® (meprobamate) 2 weeks
    Flexeril® (cyclobenzaprine)2 weeks
    Lioresal® (baclofen) 2 weeks
    Norflex® (orphenadrine) 2 weeks
    Parafon Forte® (chlorzoxazone)2 weeks
    Robaxin® (methocarbamol) 2 weeks
    Skelaxin® (metaxalone)\n 2 weeks
    Soma® (carisoprodol) 2 weeks
    \n
  14. \n
  15. \n

    Monamine oxidase inhibitors (MAOI) including but not limited to

    \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    Eldepryl® (selegiline)1 month
    Nardil® (phenelzine) 1 month
    Parnate® (tranylcypromine) 1 month
    \n
  16. \n
  17. \n

    Parasympatholytics including but not limited to

    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    Antivert® , Bonine® , Dramamine II® (meclizine)3 days
    Artane® (trihexyphenidyl)2 weeks
    Bellergal-S® (alkaloids of belladonna and ergotamine) 2 weeks
    Bentyl® (dicyclomine) 3 days
    Cogentin® (benztropine) 2 weeks
    Cystospaz®, Levsin® , Levsinex® (hyoscyamine)2 weeks
    Ditropan®\n (oxybutynin) 2 weeks
    Donnatal® , Hyosophen®\n (atropine, scopolamine, hyoscyamine and phenobarbitol) 1 month
    Dramamine® (dimenhydrinate)3 days
    Lomotil®, Lonox® (atropine, diphenoxylate) 2 weeks
    Pro-Banthine®(propantheline) 2 weeks
    Robinul® (glycopyrrolate)3 days
    Tigan® (trimethobenzamide) 3 days
    Transderm-Scop® (scopolamine) 2 weeks
    Urispas® (flavoxate)2 weeks
    \n
  18. \n
  19. \n

    Antidepressants including but not limited to

    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    Anafranil® (clomipramine) 1 month
    Asendin®\n (amoxapine) 1 month
    Desyrel® (trazodone)\n 1 month
    Effexor® (venlafaxine) 1 month
    Elavil® (amitriptyline) 1 month
    Ludiomil®\n (maprotiline) 1 month
    Norpramin® (desipramine)\n 1 month
    Pamelor® , Aventyl® (nortriptyline) 1\n month
    Paxil® (paroxetine) 1 month
    Prozac®\n (fluoxetine 1 month
    Remeron® (mirtazapine)\n 1 month
    Serzone® (nefazodone) 1 month
    Sinequan®\n (doxepin) 1 month
    Tofranil® (imipramine)\n 1 month
    Vivactil® (protriptyline) 1 month
    Wellbutrin® (bupropion) 1 month
    Zoloft®\n (sertraline) 1 month
    \n
  20. \n
  21. \n

    Systemic corticosteroids including but not limited to

    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    Cortisone2 weeks
    Decadron® (dexamethasone)2 weeks
    Depo-Medrol® (methylprednisolone)1 month\n
    Prednisone2 weeks
    \n
  22. \n
  23. \n

    Xanthine derivatives\n including but not limited to

    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    Aminophylline2 weeks\n
    Fioricet® , Esgic® , Phrenilin Forte® (caffeine, butalbital)3 days\n
    Theo-Dur® (theophylline)2 weeks\n
    Wigraine® , Cafergot® (caffeine, ergotamine)3 days\n
    \n
  24. \n
  25. \n

    Histamine (H2 ) antagonists including but not limited to

    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    Axid® (nizatidine)1 week
    Pepcid® (famotidine)1 week
    Tagamet® (cimetidine)1 week
    Zantac® (ranitidine)1 week
    \n

    If an H 2 antagonist is needed by the patient, Axid® will be allowed on a case-by-case\n basis. Please consult CRO medical monitor.

    \n
  26. \n
  27. \n

    Narcotic Analgesics including but not limited to

    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    Darvocet-N\n 100® , (propoxyphene)1 week
    Demerol® (meperidine)1\n week
    Dilaudid® (hydromorphone)1 week
    Duragesic® (fentanyl)1 week
    MS\n Contin® , Roxanol® , Oramorph® (morphine) 1 week
    Percocet® , Roxicet® (oxycodone with acetaminophen)3\n days
    Percodan® , Roxiprin1 week
    Stadol® (butorphanol)1 week
    Talacen®\n (pentazocine)1 week
    Tylenol #2® , #3®\n , #4® (codeine and acetaminophen) 3 days
    Tylox®\n , Roxilox® (oxycodone)3 days
    Vicodin®, Lorcet® (hydrocodone)1 week
    \n

    Percocet\n (oxycodone with acetaminophen) and Tylenol® with codeine #2, #3, #4\n (acetaminophen + codeine) ARE allowed in the month prior to enrollment, but\n are not permitted in the 3 days prior to enrollment.

    \n
  28. \n
  29. \n

    Neuroleptics\n (antipsychotics) including but not limited to

    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    Clozaril®\n (clozapine)2 weeks
    Haldol® (haloperidol)2\n weeks
    Loxitane® (loxapine)2 weeks
    Mellaril® (thioridazine)2 weeks
    Moban®\n (molindone)2 weeks
    Navane® (thiothixene)2\n weeks
    Orap® (pimozide)2 weeks
    Prolixin® (fluphenazine)1 month
    Risperdal®\n (risperidone)2 weeks
    Stelazine® (trifluoperazine)2\n weeks
    Thorazine® (chlorpromazine)2 weeks
    Trilafon® (perphenazine)2 weeks
    Serentil®\n (mesoridazine)2 weeks
    \n

    The use of neuroleptics\n on a daily basis must be discontinued 2 to 4 weeks prior to enrollment. The\n use of neuroleptics on an as-needed basis is allowable during the screening\n period, but the last dose must be at least 7 days prior to enrollment.

    \n
  30. \n
  31. \n

    Antianxiety agents including but not limited to

    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    Atarax® (hydroxyzine)2 weeks
    BuSpar®\n (buspirone)2 weeks
    Librium® (chlordiazepoxide)2 weeks
    Serax® (oxazepam)2 weeks
    Tranxene® (clorazepate)2 weeks
    Valium® (diazepam)2 weeks
    Vistaril® (hydroxyzine pamoate)2 weeks
    Xanax® (alprazolam)2 weeks
    \n

    Ativan® (lorazepam) should be discontinued on a daily\n basis 2 weeks

    \n

    prior to enrollment. It may be used on an as-needed\n basis during the screening period, but is not permitted in the 24 hours prior\n to enrollment.

    \n
  32. \n
  33. \n

    Hypnotics/Sedatives including but not limited to

    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    Ambien® (zolpidem) 3 days\n
    Dalmane® (flurazepam)3 days
    Doral® (quazepam)3 days
    Halcion® (triazolam)3 days
    Nembutal® 2 weeks
    ProSom® (estazolam)3 days
    Restoril®\n (temazepam)3 days
    Seconal®2 weeks
    \n

    Chloral Hydrate is allowed on an as-needed basis during screening, but is not permitted in the 24 hours prior to enrollment.

    \n
  34. \n
  35. \n

    Histamine (H1 ) antagonists including but not limited to

    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    Actifed® , Actifed Plus® (triprolidine) Benadryl®\n , Unisom® , Tylenol P.M.® 3 days
    (diphenhydramine)3 days
    Compazine® (prochlorperazine)3 days
    Contac® , Coricidin D® , Sinutab® , Novahistine® , Alka\n Seltzer Plus® , Naldecon® , Sudafed Plus® , Tylenol Cold® , Tylenol\n Cold and Flu® (chlorpheniramine)3 days
    Dimetapp®\n (brompheniramine)3 days
    Drixoral® (dexbrompheniramine)3 days
    Hismanal® (astemizole)1 week
    Phenergan®\n (promethazine)3 days
    Seldane® (terfenadine)1\n week
    Tavist® (clemastine fumarate)3 days
    Zyrtec® (cetrizine) 1 week
    \n

    Allegra®\n (fexofenadine hydrochloride) or Claritin® (loratadine) may be taken\n on as-needed basis during screening but must be discontinued within 24 hours\n of enrollment.\n

    \n
  36. \n
  37. \n

    Stimulants including but not limited to

    \n \n \n \n \n \n \n \n \n \n
    Cylert® (pemoline) 1 month
    Ritalin® (methylphenidate)1 month
    \n
  38. \n
  39. \n

    Antiarrhythmics including but not limited to the following

    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    Adenocard® (adenosine)
    Cordarone®\n (amiodarone)
    Ethmozine® (moricizine)
    Mexitil® (mexiletine)
    Norpace® (disopyramide)\n
    Procan® (procainamide)
    Quinaglute®\n (quinidine)
    Rythmol® (propafenone)
    Tambocor®\n (flecainide)
    Tonocard® (tocainide)
    \n

    Requirement of these drugs for control of cardiac arrhythmia indicates that\n the patient should be excluded from the study. If discontinuation of an antiarrhythmic\n is considered, please discuss case with CRO medical monitor.

    \n
  40. \n
  41. \n

    Miscellaneous drugs including but not limited to

    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    Coenzyme\n Q2 weeks
    Eskalith® , Lithobid® (lithium)2\n weeks
    Ginkgo biloba1 week
    Lecithin\n 1 week
    Lecithin 1 week
    Lupron2 weeks
    Tamoxifen1 month
    \n
  42. \n
  43. \n

    Estrogen supplements are permitted during the study, but dosage must be stable for at least 3 months prior to\n enrollment.

    \n
  44. \n
", + "dictionaryId": null, + "notes": [], + "instanceType": "EligibilityCriterionItem" + } + ], + "narrativeContentItems": [ + { + "id": "NarrativeContentItem_1", + "extensionAttributes": [], + "name": "NCI_1", + "text": "
\n
\n
\n

The information contained in this clinical study protocol is

Copyright \u00a9 2006 Eli Lilly and Company.

\n
\n
\n
\n
\n

\n
\n
\n
\n
\n

\n
\n
\n
\n
\n

\n
\n
\n
", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_2", + "extensionAttributes": [], + "name": "NCI_2", + "text": "

The M1 muscarinic-cholinergic receptor is 1 of 5 characterized muscarinic-cholinergic receptor subtypes (Fisher and Barak 1994). M1 receptors in the cerebral cortex and hippocampus are, for the most part, preserved in Alzheimer's disease (AD), while the presynaptic neurons projecting to these receptors from the nucleus basalis of Meynert degenerate (Bierer et al. 1995). The presynaptic loss of cholinergic neurons has been correlated to the antimortum cognitive impairment in AD patients, prompting speculation that replacement therapy with cholinomimetics will alleviate the cognitive dysfunction of the disorder (Fisher and Barak 1994).

\n

Xanomeline is a novel M1 agonist which has shown high affinity for the M1 receptor subtype (in transfected cells), and substantially less or no affinity for other muscarinic subtypes. Positron emission tomography (PET) studies of 11C-labeled xanomeline in cynomolgus monkeys have suggested that the compound crosses the blood-brain barrier and preferentially binds the striatum and neocortex.

\n

Clinical development of an oral formulation of xanomeline for the indication of mild and moderate AD was initiated approximately 4 years ago. A large-scale study of safety and efficacy provided evidence that an oral dosing regimen of 75 mg three times daily (TID) may be associated with enhanced cognition and improved clinical global impression, relative to placebo. As well, a dramatic reduction in psychosis, agitation, and other problematic behaviors, which often complicate the course of the disease, was documented. However, the discontinuation rate associated with this oral dosing regimen was 58.6%, and alternative clinical strategies have been sought to improve tolerance for the compound.

\n

To that end, development of a Transdermal Therapeutic System (TTS) has been initiated. Relative to the oral formulation, the transdermal formulation eliminates high concentrations of xanomeline in the gastrointestinal (GI) tract and presystemic (firstpass) metabolism. Three transdermal delivery systems, hereafter referred to as the xanomeline TTS Formulation A, xanomeline TTS Formulation B, and xanomeline TTS formulation E have been manufactured by Lohman Therapy Systems GmbH of Andernach Germany. TTS Formulation A is 27 mg xanomeline freebase in a 25-cm2 matrix. TTS Formulation B is 57.6 mg xanomeline freebase in a 40-cm2 matrix. Formulation E has been produced in 2 patch sizes: 1) 54 mg xanomeline freebase with 0.06 mg Vitamin E USP in a 50-cm2 matrix and 2) 27 mg xanomeline freebase with 0.03 mg Vitamin E USP in a 25-cm2 matrix. For a detailed description of the composition of these formulations please refer to Part II, Section 14 of the Xanomeline (LY246708) Clinical Investigator's Brochure. For characterization of the safety, tolerance, and pharmacokinetics of xanomeline TTS Formulations A, B, and E, please refer to Part II, Sections 7, 8, and 10 of the Xanomeline (LY246708) Clinical Investigator's Brochure. Formulation E will be studied in this protocol, H2Q-MC-LZZT(c).

", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_3", + "extensionAttributes": [], + "name": "NCI_3", + "text": "
", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_4", + "extensionAttributes": [], + "name": "NCI_4", + "text": "

The primary objectives of this study are

\n
", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_5", + "extensionAttributes": [], + "name": "NCI_5", + "text": "

The secondary objectives of this study are

\n
", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_6", + "extensionAttributes": [], + "name": "NCI_6", + "text": "
", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_7", + "extensionAttributes": [], + "name": "NCI_7", + "text": "

Patients with probable mild to moderate AD will be studied in a randomized, double-blind, parallel (3 arm), placebo-controlled trial of 26 weeks duration. The study will be conducted on an outpatient basis. Approximately 300 patients will be enrolled (see Schedule of Events for Protocol H2Q-MC-LZZT(c), Attachment LZZT.1).

\n

Following informed consent, patients will be screened at Visit 1. At screening, patients will undergo complete neuropsychiatric assessment, psychometric testing, and general medical assessment (including medical history, pre-existing conditions, physical examination). In addition, vital signs, temperature, medication history, electrocardiogram (ECG), chest x-ray, and safety laboratories will be obtained. During the screening visit, patients will wear a placebo TTS to determine willingness and ability to comply with transdermal administration procedures. If patients have not had central nervous system (CNS) imaging in the previous 12 months, a computed tomography (CT) or magnetic resonance imaging (MRI) scan will be obtained. If patients are insulin dependent diabetics, a hemoglobin A 1c will be obtained. Screening exams and procedures may be performed after Visit 1; however, their results must be completed and available prior to randomization. The screening process should occur within 2 weeks of randomization (Visit 3 of the study).

\n

Patients who meet enrollment criteria from Visit 1 will proceed to Visit 2 at which time they will undergo a 24-hour Ambulatory ECG. At Visit 3 the Ambulatory ECG will be removed and patients will be randomized to 1 of 3 treatment arms. The treatment arms will include a placebo arm, a low-dose xanomeline arm (50 cm 2 TTS Formulation E, 54 mg xanomeline), and a high-dose xanomeline arm (75 cm 2 TTS Formulation E, 81 mg xanomeline). All patients receiving xanomeline will be started at 50 cm 2 TTS Formulation E. For the first 8 weeks of treatment, patients will be assessed at clinic visits every 2 weeks and, thereafter, at clinic visits every 4 weeks. Patients who discontinue prior to Visit 12 (Week 24) will be brought back for full efficacy assessments at or near to 24 weeks, whenever possible.

\n

A Data Safety Monitoring Board (DSMB), chaired by an external cardiologist, will meet after 75, 150, 225, and 300 patients have completed 1 month of treatment. The DSMB will review cardiovascular findings to decide if discontinuation of the study or any treatment arm is appropriate, if additional cardiovascular monitoring is required, if further cardiovascular monitoring is unnecessary, or if adjustment of dose within a treatment arm (or arms) is appropriate (see Section 3.9.4).

\n

At Visits 3, 8, 10, and 12, efficacy instruments (ADAS-Cog, CIBIC+, and DAD) will be administered. NPI-X will be administered at 2-week intervals either at clinic visits or via a telephone interview. Vital signs, temperature, and an assessment of adverse events will

\n

be obtained at all clinic visits. An electrocardiogram (ECG), and chemistry/hematology safety labs will be obtained at Visits 4, 5, 7, 8, 9, 10, 11, 12, and 13. Urinalysis will be done at Visits 4, 9, and 12. Use of concomitant medications will be collected at Visits 3, 4, 5, 7, 8, 9, 10, 11, 12, and 13. Plasma levels of xanomeline and metabolites will be obtained at Visits 3, 4, 5, 7, 9, and 11. At Visits 3, 4, 5, 7, 8, 9, 10, 11, and 12, medications will be dispensed to the patients.

\n

Visits 1 through 13 should be scheduled relative to Visit 3 (Week 0 - randomization). Visits 4, 5, 7, 8, and 13 should occur within 3 days of their scheduled date. Visits 9, 10, 11, and 12 should occur within 4 days of their scheduled date. At Visit 13 patients will be given the option to enter the open-label extension phase (see Section 3.10.3. Study Extensions).

\n\"Alt\n

Figure LZZT.1. Illustration of study design for Protocol H2Q-MC-LZZT(c).

", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_8", + "extensionAttributes": [], + "name": "NCI_8", + "text": "

Previous studies of the oral formulation have shown that xanomeline tartrate may improve behavior and cognition. Effects on behavior are manifest within 2 to 4 weeks of initiation of treatment. The same studies have shown that 8 to 12 weeks are required to demonstrate effects on cognition and clinical global assessment. This study is intended to determine the acute and chronic effects of the TTS formulation in AD; for that reason, the study is of 26 weeks duration. Dosage specification has been made on the basis of tolerance to the xanomeline TTS in a clinical pharmacology study (H2Q-EW-LKAA), and target plasma levels as determined in studies of the oral formulation of xanomeline (H2Q-MC-LZZA).

\n

The parallel dosing regimen maximizes the ability to make direct comparisons between the treatment groups. The use of placebo allows for a blinded, thus minimally biased, study. The placebo treatment group is a comparator group for efficacy and safety assessment.

\n

Two interim analyses are planned for this study. The first interim analysis will occur when 50% of the patients have completed Visit 8 (8 weeks). If required, the second interim analysis will occur when 50% of the patients have completed Visit 12 (24 weeks). (See Section 4.6, Interim Analyses.)

", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_9", + "extensionAttributes": [], + "name": "NCI_9", + "text": "

The name, title, and institution of the investigator(s) is/are listed on the Investigator/Contacts cover pages provided with this protocol. If the investigator is changed after the study has been approved by an ethical review board, or a regulatory agency, or by Lilly, this addition will not be considered a change to the protocol. However, the Investigator/Contacts cover pages will be updated to provide this information.

", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_10", + "extensionAttributes": [], + "name": "NCI_10", + "text": "

The final report coordinating investigator will sign the final clinical study report for this study, indicating agreement with the analyses, results, and conclusions of the report.

\n

The investigator who will serve as the final report coordinating investigator will be an individual that is involved with the design and analysis of the study. This final report coordinating investigator will be named by the sponsor of the study.

", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_11", + "extensionAttributes": [], + "name": "NCI_11", + "text": "
", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_12", + "extensionAttributes": [], + "name": "NCI_12", + "text": "

An Ethical Review Board (ERB) approved informed consent will be signed by the patient (and/or legal representative) and caregiver after the nature of the study is explained.

", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_13", + "extensionAttributes": [], + "name": "NCI_13", + "text": "

For Lilly studies, the following definitions are used:

\n
\n
Screen
\n
\n

Screening is the act of determining if an individual meets minimum requirements to become part of a pool of potential candidates for participation in a clinical study.

\n

In this study, screening will include asking the candidate preliminary questions (such as age and general health status) and conducting invasive or diagnostic procedures and/or tests (for example, diagnostic psychological tests, x-rays, blood draws). Patients will sign the consent at their screening visit, thereby consenting to undergo the screening procedures and to participate in the study if they qualify.

\n
\n
\n
\n
To enter
\n
\n

Patients entered into the study are those from whom informed consent for the study has been obtained. Adverse events will be reported for each patient who has entered the study, even if the patient is never assigned to a treatment group (enrolled).

\n
\n
\n
\n
To enroll
\n
\n

Patients who are enrolled in the study are those who have been assigned to a treatment group. Patients who are entered into the study but fail to meet criteria specified in the protocol for treatment assignment will not be enrolled in the study.

\n
\n
\n

At Visit 1, patients who meet the enrollment criteria of Mini-Mental State Examination (MMSE) score of 10 to 23 (Attachment LZZT.6), Hachinski Ischemia Score \u22644 (Attachment LZZT.8), a physical exam, safety labs, ECG, and urinalysis, will proceed to Visit 2 and Visit 3. At Visit 3, patients whose CNS imaging and other pending labs from Visit 1 satisfy the inclusion criteria (Section 3.4.2.1) will be enrolled in the study. Approximately 300 patients with a diagnosis of probable mild to moderate AD will be enrolled in the study.

", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_14", + "extensionAttributes": [], + "name": "NCI_14", + "text": "

Patients may be included in the study only if they meet all the following criteria:

\n
01
02
03
04
05
06
07
08
", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_15", + "extensionAttributes": [], + "name": "NCI_15", + "text": "

Patients will be excluded from the study for any of the following reasons:

\n
09
10
11
12
13
14
15
16b
17
18
19
20
21
22
23
24
25
26
27b
28b
29b
30b
31b
", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_16", + "extensionAttributes": [], + "name": "NCI_16", + "text": "

The criteria for enrollment must be followed explicitly. If there is inadvertent enrollment of individuals who do not meet enrollment criteria, these individuals should be discontinued from the study. Such individuals can remain in the study only if there are ethical reasons to have them continue. In these cases, the investigator must obtain approval from the Lilly research physician for the study participant to continue in the study (even if the study is being conducted through a contract research organization).

", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_17", + "extensionAttributes": [], + "name": "NCI_17", + "text": "

Probable AD will be defined clinically by NINCDS/ADRDA guidelines as follows:

\n
", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_18", + "extensionAttributes": [], + "name": "NCI_18", + "text": "

Approximately 100 patients will be randomized to each of the 3 treatment groups. Previous experience with the oral formulation of xanomeline suggests that this sample size has 90% power to detect a 3.0 mean treatment difference in ADAS-Cog (p<.05, two-sided), based on a standard deviation of 6.5. Furthermore, this sample size has 80% power to detect a 0.36 mean treatment difference in CIBIC+ (p<.05, two-sided), based on a standard deviation of 0.9.

", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_19", + "extensionAttributes": [], + "name": "NCI_19", + "text": "

Commencing at Visit 1, all patients will be assigned an identification number. This identification number and the patient's three initials must appear on all patient-related documents submitted to Lilly.

\n

When qualified for enrollment at Visit 3 the patient will be randomized to 1 of 3 treatment arms.

", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_20", + "extensionAttributes": [], + "name": "NCI_20", + "text": "
", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_21", + "extensionAttributes": [], + "name": "NCI_21", + "text": "
\n\n\n\n\n\n\n

Primary Study Material:

Xanomeline

TTS (adhesive patches)

50 cm 2 , 54 mg* 25 cm 2 , 27 mg*

Comparator Material:

Placebo

TTS

Identical in appearance to primary study material

\n

*All doses are measured in terms of the xanomeline base.

\n

Patches should be stored at controlled room temperature, and all used patches must be handled and disposed of as biohazardous waste.

\n

For a detailed description of the composition of these formulations please refer to Part II, Section 14 of the Xanomeline (LY246708) Clinical Investigator's Brochure.

", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_22", + "extensionAttributes": [], + "name": "NCI_22", + "text": "

To test acute tolerance of transdermal formulation, patients will have a TTS (placebo) administered at the start of Visit 1, and removed at the conclusion of Visit 1. The patient's and caregiver's willingness to comply with 26 weeks of transdermal therapy should be elicited, and those patients/caregivers unwilling to comply should be excluded.

\n

Upon enrollment at Visit 3, and on the morning of each subsequent day of therapy , xanomeline or placebo will be administered with the application of 2 adhesive patches, one 50 cm2 in area, the other 25 cm2 in area. Each morning, prior to the application of the patches, hydrocortisone cream (1%) should be applied to the skin at the intended site of administration, rubbed in, and allowed to penetrate for approximately 30 minutes. Thereafter, excess cream should be wiped away and the patches applied.

\n

The patches are to be worn continuously throughout the day, for a period of approximately 12 to 14 hours, and removed in the evening. After removal of the patches, hydrocortisone cream (1%) should be applied locally to the site of administration.

\n

Patches should be applied to a dry, intact, non-hairy area. Applying the patch to a shaved area is not recommended. The application site of the patches should be rotated according to the following schedule:

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n

Day

Patch Location

Sunday

right or left upper arm

Monday

right or left upper back

Tuesday

right or left lower back (above belt line)

Wednesday

right or left buttocks

Thursday

right or left mid-axillary region

Friday

right or left upper thigh

Saturday

right or left upper chest

\n

Patients and caregivers are free to select either the left or right site within the constraints of the rotation schedule noted above. Patches should be applied at approximately the same time each day. For patients who habitually bathe in the morning, the patient should bathe prior to application of new patches. Every effort should be taken to allow for morning administration of the patches. Exceptions allowing administration of TTS patches at night instead of in the morning will be made on a case-by-case basis by the CRO medical monitor. In the event that some adhesive remains on the patient's skin and cannot be removed with normal bathing, a special solution will be provided to remove the adhesive.

\n

Following randomization at Visit 3, patients will be instructed to call the site if they have difficulty with application or wearing of patches. In the event that a patch becomes detached, a new patch of the same size should be applied (at earliest convenience) to an area of the dermis adjacent to the detachment site, and the rotation schedule should be resumed the following morning. If needed, the edges of the patch may be secured with a special adhesive tape that will be provided. If daily doses are reduced, improperly administered, or if a patch becomes detached and requires application of a new patch on three or more days in any 30-day period, the CRO research physician will be notified.

\n

If the daily dose is reduced or improperly administered in the 24 hours prior to any scheduled clinic visit, the visit should be rescheduled (except for early termination and retrieval visits).

\n

Patients must be instructed to return all used and unused study drug to the investigator at each visit for proper disposal and CT reconciliation by the investigator.

", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_23", + "extensionAttributes": [], + "name": "NCI_23", + "text": "

The study will be double-blind. To further preserve the blinding of the study, only a minimum number of Lilly and CRO personnel will see the randomization table and codes before the study is complete.

\n

Emergency codes generated by a computer drug-labeling system will be available to the investigator. These codes, which reveal the patients treatment group, may be opened during the study only if the choice of follow-up treatment depends on the patient's therapy assignment.

\n

The investigator should make every effort to contact the clinical research physician prior to unblinding a patient's therapy assignment. If a patient's therapy assignment is unblinded, Lilly must be notified immediately by telephone. After the study, the investigator must return all sealed and any opened codes.

", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_24", + "extensionAttributes": [], + "name": "NCI_24", + "text": "

Intermittent use of chloral hydrate, zolpidem, or lorazepam is permitted during this clinical trial as indicated for agitation or sleep. If medication is required for agitation for a period exceeding 1 week, a review of the patient's status should be made in consultation with the CRO research physician. Caregivers and patients should be reminded that these medications should not be taken within 24 hours of a clinic visit (including the enrollment visit), and administration of efficacy measures should be deferred if the patient has been treated with these medications within the previous 24 hours.

\n

If an antihistamine is required during the study, Claritin\u00ae (loratadine) or Allegra\u00ae (fexofenadine hydrochloride) are the preferred agents, but should not be taken within 24 hours of a clinic visit. Intermittent use (per package insert) of antitussives (containing antihistamines or codeine) and select narcotic analgesics (acetaminophen with oxycodone, acetaminophen with codeine) are permitted during the trial. Caregivers and patients should be reminded that antihistamines and narcotics should not be taken within 3 days of a clinic efficacy visit (including enrollment visit). If an H 2 blocker is required during the study, Axid\u00ae (nizatidine) will be permitted on a case-by-case basis by the CRO medical monitor. For prostatic hypertrophy, small doses (2 mg per day) of Hytrin\u00ae (terazosin) or Cardura\u00ae (doxazosin) will be permitted on a case-by-case basis. Please consult the medical monitor. The calcium channel blockers Cardene\u00ae (nicardipine),

\n

Norvasc\u00ae (amlodipine), and DynaCirc\u00ae (isradipine) are allowed during the study. If a patient has been treated with any medication within disallowed time periods prior to the clinic visit, efficacy measures should be deferred.

\n

Other classes of medications not stated in Exclusion Criteria, Section 3.4.2.2, will be permitted. Patients who require treatment with an excluded medication (Section 3.4.2.2) will be discontinued from the study following consultation with the CRO research physician.

", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_25", + "extensionAttributes": [], + "name": "NCI_25", + "text": "
", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_26", + "extensionAttributes": [], + "name": "NCI_26", + "text": "

See Schedule of Events, Attachment LZZT.1 for the times of the study at which efficacy data will be collected.

", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_27", + "extensionAttributes": [], + "name": "NCI_27", + "text": "

The following measures will be performed in the course of the study. At Visits 3, 8, 10, and 12, ADAS-Cog, CIBIC+, and DAD will be administered. NPI-X will be administered at 2-week intervals either at clinic visits or via a telephone interview. Efficacy measures will also be collected at early termination visits, and at the retrieval visit. The neuropsychological assessment should be performed first; other protocol requirements, such as labs and the physical, should follow.

\n
    \n
  1. Alzheimer's Disease Assessment Scale - Cognitive Subscale (ADAS-Cog): ADAS-Cog is an established measure of cognitive function in Alzheimer's Disease. This scale has been incorporated into this study by permission of Dr. Richard C. Mohs and the American Journal of Psychiatry and was adapted from an article entitled, \u201cThe Alzheimer's Disease Assessment Scale (ADAS),\u201d which was published in the American Journal of Psychiatry, Volume No.141, pages 1356-1364, November, 1984, Copyright 1984.

    \n

    The ADAS-Cog (11) and the ADAS-Cog (14): The ADAS-Cog (11) is a standard 11-item instrument used to assess word recall, naming objects, commands, constructional praxis, ideational praxis, orientation, word recognition tasks, spoken language ability, comprehension, word finding difficulty, and recall of test instructions. For the purposes of this study, three items (delayed word recall, attention/visual search task, and maze solution) have been added to the ADAS-Cog (11) to assess the patient's attention and concentration. The 14 item instrument will be referred to as the ADAS-Cog (14). At each efficacy visit, all 14 items will be assessed, and in subsequent data analyses, performance on the ADAS-Cog (14) and performance on the subset ADAS-Cog (11) will be considered.

  2. \n
  3. Video-referenced Clinician's Interview-Based Impression of Change (CIBIC+): The CIBIC+ is an assessment of the global clinical status relative to baseline. The CIBIC+ used in this study is derived from the Clinical Global Impression of Change, an instrument in the public domain, developed by the National Institute on Aging Alzheimer's Disease Study Units Program (1 U01 AG10483; Leon Thal, Principal Investigator). The instrument employs semi-structured interviews with the patient and caregiver, to assess mental/cognitive state, behavior, and function. These domains are not individually scored, but rather are aggregated in the assignment of a global numeric score on a 1 to 7 scale (1 = marked improvement; 4 = no change; and 7 = marked worsening).

    \n

    The clinician assessing CIBIC+ will have at least one year of experience with the instrument and will remain blinded to all other efficacy and safety measures.

  4. \n
  5. Revised Neuropsychiatric Inventory (NPI-X): The NPI-X is an assessment of change in psychopathology in patients with dementia. The NPI-X is administered to the designated caregiver. This instrument has been revised from its original version (Cummings et al. 1994) and incorporated into this study with the permission of Dr. Jeffrey L. Cummings.

  6. \n
  7. Disability Assessment for Dementia (DAD): The DAD is used to assess functional abilities of activities of daily living (ADL) in individuals with cognitive impairment. This scale has been revised and incorporated into this study by permission of Louise Gauthier, M.Sc., and Dr. Isabelle Gelinas. The DAD is administered to the designated caregiver.

  8. \n
\n

For each instrument, each assessment is to be performed by the same trained health care professional. If circumstances preclude meeting this requirement, the situation is to be documented on the Clinical Report Form (CRF), and the CRO research physician is to be notified.

\n

In addition to the efficacy measures noted above, a survey form will be used to collect information from the caregiver on TTS acceptability (Attachment LZZT.9).

", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_28", + "extensionAttributes": [], + "name": "NCI_28", + "text": "

Group mean changes from baseline in the primary efficacy parameters will serve as efficacy criteria. The ADAS-Cog (11) and the video-referenced CIBIC+ will serve as the primary efficacy instruments. Secondary efficacy instruments will include the DAD, the NPI-X, and the ADAS-Cog (14). The procedures and types of analyses to be done are outlined in Section 4.

\n

The primary analysis of efficacy will include only the data obtained up to and including the visit of discontinuation of study drug. Furthermore, the primary analysis will not include efficacy data obtained at any visit where the study drug was not administered in the preceding three days. Analyses that include the retrieved dropouts are considered secondary.

", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_29", + "extensionAttributes": [], + "name": "NCI_29", + "text": "

Blood samples (7 mL) for the determination of xanomeline concentrations in plasma will be collected from each patient at Visits 3, 4, 5, 7, 9, and 11. The blood sample drawn at Visit 3 is a baseline sample. The remaining 5 clinic visits should be scheduled so that 1 blood sample is collected at any time during each of the following intervals: early AM visit (hold application of new patch until after blood sample is collected); 9AM to 11AM; 11AM to 1PM; 1PM to 3PM; and 3PM to 5PM. Collection of blood samples during each of these intervals should not occur in any particular order, nor should they occur in the same order for each patient. Every effort should be made to comply with the suggested sampling times. This blood-sampling schedule is based on a sparse sampling strategy where only a few samples will be collected from each patient. The most crucial aspect of the sampling design is to record the date and exact time the sample was drawn and to record the date and time of patch application on the day of the clinic visit and the previous 2 days.

\n

If a patient is discontinued from the study prior to protocol completion, a pharmacokinetic blood sample should be drawn at the early discontinuation visit. The date and exact time the sample was drawn and the date of the last patch application should be recorded.

\n

Immediately after collection, each sample will be centrifuged at approximately 177 \u00d7 G for 15 minutes. The plasma will be transferred into a polypropylene tube bearing the identical label as the blood collection tube. Samples will be capped and frozen at approximately \u221220\u00b0C. Care must be taken to insure that the samples remain frozen during transit.

\n

The samples will be shipped on dry ice to Central Laboratory.

", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_30", + "extensionAttributes": [], + "name": "NCI_30", + "text": "

Investigators are responsible for monitoring the safety of patients who have entered this study and for alerting CRO to any event that seems unusual, even if this event may be considered an unanticipated benefit to the patient. See Section 3.9.3.2.1.

\n

Investigators must ensure that appropriate medical care is maintained throughout the study and after the trial (for example, to follow adverse events).

", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_31", + "extensionAttributes": [], + "name": "NCI_31", + "text": "

Safety measures will be performed at designated times by recording adverse events, laboratory test results, vital signs (including supine/standing pulse and blood pressure readings) ECG monitoring, and Ambulatory ECGs (see Schedule of Events, Attachment LZZT.1).

", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_32", + "extensionAttributes": [], + "name": "NCI_32", + "text": "

Lilly has standards for reporting adverse events that are to be followed, regardless of applicable regulatory requirements that are less stringent. For purposes of collecting and evaluating all information about Lilly drugs used in clinical trials, an adverse event is defined as any undesirable experience or an unanticipated benefit (see Section 3.9.3.2.1) that occurs after informed consent for the study has been obtained, without regard to treatment group assignment, even if no study medication has been taken. Lack of drug effect is not an adverse event in clinical trials, because the purpose of the clinical trial is to establish drug effect.

\n

At the first visit, study site personnel will question the patient and will note the occurrence and nature of presenting condition(s) and of any preexisting condition(s). At subsequent visits, site personnel will again question the patient and will note any change in the presenting condition(s), any change in the preexisting condition(s), and/or the occurrence and nature of any adverse events.

", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_33", + "extensionAttributes": [], + "name": "NCI_33", + "text": "

All adverse events must be reported to CRO via case report form.

\n

Study site personnel must report to CRO immediately, by telephone, any serious adverse event (see Section 3.9.3.2.2 below), or if the investigator unblinds a patient's treatment group assignment because of an adverse event or for any other reason.

\n

If a patient's dosage is reduced or if a patient is discontinued from the study because of any significant laboratory abnormality, inadequate response to treatment, or any other reason, the circumstances and data leading to any such dosage reduction or discontinuation must be reported and clearly documented by study site personnel on the clinical report form.

\n

An event that may be considered an unanticipated benefit to the patient (for example, sleeping longer) should be reported to CRO as an adverse event on the clinical report form. \u201cUnanticipated benefit\u201d is a COSTART classification term. In cases where the investigator notices an unanticipated benefit to the patient, study site personnel should enter the actual term such as \u201csleeping longer,\u201d and code \u201cunanticipated benefit\u201d in the clinical report form adverse event section.

\n

Solicited adverse events from the skin rash questionnaire (see Section 3.9.3.4) should be reported on the questionnaire only and not also on the adverse event clinical report form

", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_34", + "extensionAttributes": [], + "name": "NCI_34", + "text": "

Study site personnel must report to CRO immediately, by telephone, any adverse event from this study that is alarming or that:

\n\n

Definition of overdose: For a drug under clinical investigation, an overdose is any intentional or unintentional consumption of the drug (by any route) that exceeds the dose recommended in the Clinical Investigator's Brochure or in an investigational protocol, whichever dose is larger. For a marketed drug, a drug overdose is any intentional or unintentional consumption of the drug (by any route) that exceeds the dose listed in product labeling, even if the larger dose is prescribed by a physician.

", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_35", + "extensionAttributes": [], + "name": "NCI_35", + "text": "

Table LZZT.1 lists the clinical laboratory tests that will be performed at Visit 1.

\n

Table LZZT.1. Laboratory Tests Performed at Admission (Visit 1)

\n\n

Safety Laboratory Tests

\n\n\n\n\n\n
\n

Hematology:

\n

    \n
  • Hemoglobin
  • \n
  • Hematocrit
  • \n
  • Erythrocyte count (RBC)
  • \n
  • Mean cell volume (MCV)
  • \n
  • Mean cell hemoglobin (MCH)
  • \n
  • Mean cell hemoglobin concentration (MCHC)
  • \n
  • Leukocytes (WBC)
  • \n
  • Neutrophils, segmented
  • \n
  • Neutrophils, juvenile (bands)
  • \n
  • Lymphocytes
  • \n
  • Monocytes
  • \n
  • Eosinophils
  • \n
  • Basophils
  • \n
  • Platelet
  • \n
  • Cell morphology
  • \n

\n

Urinalysis:

\n

    \n
  • Color
  • \n
  • Specific gravity
  • \n
  • pH
  • \n
  • Protein
  • \n
  • Glucose
  • \n
  • Ketones
  • \n
  • Bilirubin
  • \n
  • Urobilinogen
  • \n
  • Blood
  • \n
  • Nitrite
  • \n
  • Microscopic examination of sediment
  • \n

\n
\n

Clinical Chemistry - Serum Concentration of:

\n

    \n
  • Sodium
  • \n
  • Potassium
  • \n
  • Bicarbonate
  • \n
  • Total bilirubin
  • \n
  • Alkaline phosphatase (ALP)
  • \n
  • Gamma-glutamyl transferase (GGT)
  • \n
  • Alanine transaminase (ALT/SGPT)
  • \n
  • Aspartate transaminase (AST/SGOT)
  • \n
  • Blood urea nitrogen (BUN)
  • \n
  • Serum creatinine
  • \n
  • Uric acid
  • \n
  • Phosphorus
  • \n
  • Calcium
  • \n
  • Glucose, nonfasting
  • \n
  • Total protein
  • \n
  • Albumin
  • \n
  • Cholesterol
  • \n
  • Creatine kinase (CK)
  • \n

\n

Thyroid Function Test (Visit 1 only):

\n
    \n
  • Free thyroid index
  • \n
  • T3 Uptake
  • \n
  • T4
  • \n
  • Thyroid-stimulating hormone (TSH)
  • \n
\n

Other Tests (Visit 1 only):

\n
    \n
  • Folate
  • \n
  • Vitamin B 12
  • \n
  • Syphilis screening
  • \n
  • Hemoglobin A1C (IDDM patients only)
\n
\n

Laboratory values that fall outside a clinically accepted reference range or values that differ significantly from previous values must be evaluated and commented on by the investigator by marking CS (for clinically significant) or NCS (for not clinically significant) next to the values. Any clinically significant laboratory values that are outside a clinically acceptable range or differ importantly from a previous value should be further commented on in the clinical report form comments page.

\n

Hematology, and clinical chemistry will also be performed at Visits 4, 5, 7, 8, 9, 10, 11, 12, and 13. Patients that experience a rash and/or eosinophilia may have additional hematology samples obtained as described in 3.9.3.4 (Other Safety Measures).

\n

Urinalysis will also be performed at Visits 4, 9, and 12. The following criteria have been developed to monitor hepatic function.

\n
", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_36", + "extensionAttributes": [], + "name": "NCI_36", + "text": "
Patients experiencing Rash and/or Eosinophilia\n

The administration of placebo and xanomeline TTS is associated with a rash and/or eosinophilia in some patients. The rash is characterized in the following ways:

\n\n

It does not appear that the rash constitutes a significant safety risk; however, it could affect the well-being of the patients. The following monitoring is specified:

\n

Skin Rash Follow-up

\n

For patients who exit the study or its extension with rash at the site(s) of application:

\n
    \n
  1. Approximately 2 weeks after the last visit, the study site personnel should contact the patient/caregiver by phone and complete the skin rash questionnaire. (Note: those patients with rash who have previously exited the study or its extension should be contacted at earliest convenience.)

  2. \n
  3. If caregiver states unequivocally that skin problems have completely resolved, no further follow-up is needed.

  4. \n
  5. If caregiver reports scarring and/or other problems, patient should return to clinic for a follow-up visit. The skin rash questionnaire should again be completed. If in the opinion of the investigator, further follow-up is required, contact the CRO medical monitor. Completed skin rash questionnaires should be faxed to CRO.

  6. \n
\n

Completion of the questionnaires will create a separate data set for solicited adverse events. In completing these forms please note the following:

\n
    \n
  1. Solicited events (events discovered as result of completion of follow-up questionnaires) should be reported on questionnaire page only.

  2. \n
  3. Spontaneously reported adverse events (events presented by the patient without direct questioning of the event) should be reported as described in 3.9.3.2 .1 (Adverse Event Reporting Requirements).

  4. \n
\n

Serious adverse events should be handled and reported as described in 3.9.3.2.1 without regard to whether the event is solicited or spontaneously reported.

\n

Eosinophilia Follow-up

\n
    \n
  1. For patients that are currently in the study with eosinophil counts greater than 0. 6x10 3 /microliter:

    \n
    • Repeat hematology at each visit until resolved in the opinion of the investigator.

    \n
  2. For patients that are currently in the study with eosinophil counts greater than 1.5x10 3 /microliter:

    \n
    • Obtain hematology profile every 2 weeks until resolved or explained by other causes in the opinion of the investigator.

    • \n
    • Notify CRO medical monitor.

    • \n
    \n
  3. For patients with eosinophil counts greater than 0.6x10 3 /microliter at exit \nfrom the study or its extension:

    \n
      \n
    • Obtain hematology profile approximately every 2 weeks until resolved or, in the opinion of the investigator, explained by other causes. (Note: patients with eosinophil counts greater than 0.6x10 3 /microliter who have previously exited the study or its extension should return for hematology profile at earliest convenience.)

    • \n
    \n
    ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_37", + "extensionAttributes": [], + "name": "NCI_37", + "text": "

    Patient should lie supine quietly for at least 5 minutes prior to vital signs measurement. Blood pressure should be measured in the dominant arm with a standardized mercury manometer according to the American Heart Association standard recommendations. Diastolic blood pressure will be measured as the point of disappearance of the Korotkoff sounds (phase V). Heart rate will be measured by auscultation. Patient should then stand up. Blood pressure should again be measured in the dominant arm and heart rate should be measured after approximately 1 and 3 minutes.

    \n

    An automated blood pressure cuff may be used in place of a mercury manometer if it is regularly (at least monthly) standardized against a mercury manometer.

    ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_38", + "extensionAttributes": [], + "name": "NCI_38", + "text": "

    Cardiovascular status will be assessed during the trial with the following measures:

    \n
    ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_39", + "extensionAttributes": [], + "name": "NCI_39", + "text": "

    The CRO research physician will monitor safety data throughout the course of the study.

    \n

    Cardiovascular measures, including ECGs and 24-hour Ambulatory ECGs (see Section 3.9.3.4.2) will be monitored on an ongoing basis as follows:

    \n\n

    In addition to ongoing monitoring of cardiac measures, a comprehensive, periodic review of cardiovascular safety data will be conducted by the DSMB, which will be chaired by an external cardiologist with expertise in arrhythmias, their pharmacological bases, and their clinical implications. The membership of the board will also include two other external cardiologists, a cardiologist from Lilly, a statistician from Lilly, and the Lilly research physician. Only the three external cardiologists will be voting members.

    \n

    After approximately 75 patients have completed 1 month of treatment, the DSMB will meet to decide:

    \n\n

    If necessary, this analysis will be repeated after 150 patients have completed 1 month of treatment, after 225 patients have completed 1 month of treatment, and after 300 patients have completed 1 month of treatment. Primary consideration will be given to the frequency of pauses documented in Ambulatory ECG reports. The number of pauses greater than or equal to 2, 3, 4, 5, and 6 seconds will be tabulated. Primary analysis will focus on the number of pauses greater than or equal to 3 seconds.

    \n

    In the event of a high incidence of patient discontinuation due to syncope, the following guideline may be employed by the DSMB in determining if discontinuation of any treatment arm is appropriate. If the frequency of syncope in a xanomeline treatment arm relative to the frequency of syncope in the placebo arm equals or exceeds the following numbers, then consideration will be given to discontinuing that treatment arm. The Type I error rate for this rule is approximately 0.032 if the incidence in each group is 0.04. The power of this rule is 0.708 if the incidence is 0.04 for placebo and 0.16 for xanomeline TTS.

    \n\n\n\n\n\n\n\n\n

    Placebo

    Xanomeline

    PlaceboXanomeline

    0

    6

    615

    1

    7

    716

    2

    9

    817

    3

    11

    918

    4

    12

    1020

    5

    13

    X2X (2-fold)
    \n

    This rule has been used in other studies for monitoring spontaneous events with an incidence of less than 10%. This rule is constructed assuming a 2-group comparison with each group having a final sample size of 100. Unblinding which occurs during these analyses will be at the group level and will be documented.

    \n

    The stopping rule based on Ambulatory ECG findings is as follows:

    \n\n

    If the number of patients experiencing a pause of \u22656 seconds in a xanomeline treatment arm relative to the number of patients in the placebo arm equals or exceeds the numbers in the following table, then that treatment arm will be discontinued. The Type I error rate for this rule is approximately 0.044 if the incidence in each group is 0.01. The power of this rule is 0.500 if the incidence is 0.01 for placebo and 0.04 for xanomeline TTS.

    \n\n\n\n\n\n\n\n\n

    Placebo

    Xanomeline

    0

    3

    1

    5

    2

    6

    3

    7

    4

    8

    x

    2x

    ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_40", + "extensionAttributes": [], + "name": "NCI_40", + "text": "

    The medications and efficacy measurements have been used in other studies in elderly subjects and patients.

    ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_41", + "extensionAttributes": [], + "name": "NCI_41", + "text": "
    ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_42", + "extensionAttributes": [], + "name": "NCI_42", + "text": "

    Participation in the study shall be terminated for any patient who is unable or unwilling to comply with the study protocol or who develops a serious adverse event.

    \n

    In addition, patients may be discontinued for any of the following reasons:

    \n\n

    If a patient's participation terminates early, an early termination visit should be scheduled. Upon decision to discontinue a patient from the study, the patient's dose should be titrated down by instructing the patient to immediately remove the 25-cm2 patch. Patients should be instructed to continue to apply a 50-cm2 patch daily until the early termination visit, at which time the drug will be discontinued. Physical exam, vital signs, temperature, use of concomitant medications, chemistry/hematology/urinalysis labs, xanomeline plasma sample, TTS acceptability survey, efficacy measures, adverse events, and an ECG will be collected at the early termination visit.

    \n

    In the event that a patient's participation or the study itself is terminated, the patient shall return all study drug(s) to the investigator.

    ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_43", + "extensionAttributes": [], + "name": "NCI_43", + "text": "

    If possible, patients who have terminated early will be retrieved on the date which would have represented Visit 12 (Week 24). Vital signs, temperature, use of concomitant medications, adverse events, and efficacy measure assessment will be gathered at this visit. If the patient is not retrievable, this will be documented in the source record.

    ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_44", + "extensionAttributes": [], + "name": "NCI_44", + "text": "

    All patients who are enrolled in the study will be included in the efficacy analysis and the safety analysis. Patients will not be excluded from the efficacy analysis for reasons such as non-compliance or ineligibility, except for the time period immediately preceding the efficacy assessment (see Section 3.9.1.2).

    ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_45", + "extensionAttributes": [], + "name": "NCI_45", + "text": "

    Patients who successfully complete the study will be eligible for participation in an openlabel extension phase, where every patient will be treated with active agent. The patients who elect to participate in the open-label extension phase will be titrated to their maximally titrated dose. This open-label extension phase will continue until the time the product becomes marketed and is available to the public or until the project is discontinued by the sponsor. Patients may terminate at any time at their request.

    ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_46", + "extensionAttributes": [], + "name": "NCI_46", + "text": "

    Because patients enrolled in this study will be outpatients, the knowledge that patients have taken the medication as prescribed will be assured in the following ways:

    \n
      \n
    1. Investigators will attempt to select those patients and caregivers who \nhave been judged to be compliant.

    2. \n
    3. Study medication including unused, partially used, and empty patch \ncontainers will be returned at each clinical visit so that the remaining \nmedication can be counted by authorized investigator staff (nurse, \npharmacist, or physician). The number of patches remaining will be \nrecorded on the CRF.

    4. \n
    5. Following randomization at Visit 3, patients will be instructed to call \nthe site if they have difficulty with application or wearing of patches. If \ndaily doses are reduced, improperly administered, or if a patch becomes \ndetached and requires application of a new patch on three or more days \nin any 30-day period, the CRO research physician will be notified.

    6. \n
    \n

    If the daily dose is reduced or improperly administered in the 24 hours prior to any scheduled clinic visit, the visit should be rescheduled (except for early termination and retrieval visits).

    ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_47", + "extensionAttributes": [], + "name": "NCI_47", + "text": "

    To ensure both the safety of participants in the study, and the collection of accurate, complete, and reliable data, Lilly or its representatives will perform the following activities:

    \n\n

    To ensure the safety of participants in the study and to ensure accurate, complete, and reliable data, the investigator will do the following:

    \n\n

    Lilly or its representatives may periodically check a sample of the patient data recorded against source documents at the study site. The study may be audited by Lilly Medical Quality Assurance (MQA) and/or regulatory agencies at any time. Investigators will be given notice before an MQA audit occurs.

    ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_48", + "extensionAttributes": [], + "name": "NCI_48", + "text": "
    ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_49", + "extensionAttributes": [], + "name": "NCI_49", + "text": "

    In general, all patients will be included in all analyses of efficacy if they have a baseline measurement and at least one postrandomization measurement. Refer to Section 3.9.1.2. for a discussion of which specific efficacy data will be included in the primary analysis.

    \n

    In the event that the doses of xanomeline TTS are changed after the study starts, the analysis will be of three treatment groups (high dose, low dose, and placebo), even though patients within the high dose treatment group, for example, may not all be at exactly the same dose. Also, if the dose is changed midway through the study, the mean dose within each group will be used in the dose response analysis described in Section 4.3.3.

    \n

    All analyses described below will be conducted using the most current production version of SAS\u00ae available at the time of analysis.

    ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_50", + "extensionAttributes": [], + "name": "NCI_50", + "text": "

    All measures (for example, age, gender, origin) obtained at either Visits 1, 2, or 3, prior to randomization, will be summarized by treatment group and across all treatment groups. The groups will be compared by analysis of variance (ANOVA) for continuous variables and by Pearson's chi-square test for categorical variables. Note that because patients are randomized to 1 of the 3 treatment groups, any statistically significant treatment group differences are by definition a Type I error; however, the resulting p-values will be used as another descriptive statistic to help focus possible additional analyses (for example, analysis of covariance, subset analyses) on those factors that are most imbalanced (that is, that have the smallest p-values).

    ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_51", + "extensionAttributes": [], + "name": "NCI_51", + "text": "
    ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_52", + "extensionAttributes": [], + "name": "NCI_52", + "text": "

    Efficacy measures are described in Section 3.9.1.1. As stated in Section 3.9.1.2, the primary outcome measures are the ADAS-Cog (11) and CIBIC+ instruments. Because both of these variables must reach statistical significance, an adjustment to the nominal p-values is necessary in order to maintain a .05 Type I error rate for this study. This adjustment is described in detail in Section 4.3.5.

    \n

    The DAD will be analyzed with respect to the total score, as well as the subscores of \ninitiation, planning and organization, and effective performance. This variable is \nconsidered a secondary variable in the US, but is a third primary variable in Europe.

    \n

    The NPI-X is a secondary variable. The primary assessment of this instrument will be for the total score, not including the sleep, appetite, and euphoria domains. This total score is computed by taking the product of the frequency and severity scores and summing them up across the domains. Secondary variables derived from the NPI-X include evaluating each domain/behavior separately. Also, caregiver distress from the NPI-X will be analyzed.

    \n

    ADAS-Cog (14) and each of the 14 individual components will also be analyzed. In addition, a subscore of the ADAS-Cog will be computed and analyzed, based on results from a previous large study of oral xanomeline. This subscore, referred to as ADAS-Cog (4), will be the sum of constructional praxis, orientation, spoken language ability, and word finding difficulty in spontaneous speech.

    \n

    Any computed total score will be treated as missing if more than 30% of the items are missing or scored \u201cnot applicable\u201d. For example, when computing ADAS-Cog(11), if 4 or more items are missing, then the total score will not be computed. When one or more items are missing (but not more than 30%), the total score will be adjusted in order to maintain the full range of the scale. For example, ADAS-Cog(11) is a 0-70 scale. If the first item, Word Recall (ranges from 0 to 10), is missing, then the remaining 10 items of the ADAS-Cog(11) will be summed and multiplied by (70 / (70-10) ), or 7/6. This computation will occur for all totals and subtotals of ADAS-Cog and NPI-X. DAD is a 40 item questionnaire where each question is scored as either \u201c0\u201d or \u201c1\u201d. The DAD total score and component scores are reported as percentage of items that are scored \u201c1\u201d. So if items of the DAD are \u201cnot applicable\u201d or missing, the percentage will be computed for only those items that are scored. As an example, if two items are missing (leaving 38 that are scored), and there are 12 items scored as \u201c1\u201d, the rest as \u201c0\u201d, then the DAD score is 12/38=.316.

    ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_53", + "extensionAttributes": [], + "name": "NCI_53", + "text": "

    Baseline data will be collected at Visit 3.

    \n

    The primary analysis of ADAS-Cog (11) and CIBIC+ will be the 24-week endpoint, which is defined for each patient and variable as the last measurement obtained postrandomization (prior to protocol defined reduction in dose).

    \n

    Similar analyses at 24 weeks will be conducted for the secondary efficacy variables. Analysis of patients who complete the 24-week study will also be conducted for all efficacy variables; this is referred to as a \u201ccompleter\u201d analysis.

    \n

    Additionally, each of the efficacy variables will be analyzed at each time point both as \u201cactual cases,\u201d that is, analyzing the data collected at the various time points, and also as a last-observation-carried-forward (LOCF). Note that the LOCF analysis at 24 weeks is the same as the endpoint analysis described previously.

    \n

    Several additional analyses of NPI-X will be conducted. Data from this instrument will be collected every 2 weeks, and represent not the condition of the patient at that moment in time, but rather the worst condition of the patient in the time period since the most recent NPI-X administration. For this reason, the primary analysis of the NPI-X will be of the average of all postrandomization NPI-X subscores except for the one obtained at Week 2. In the event of early discontinuations, those scores that correspond to the interval between Weeks 2 to 24 will be averaged. The reason for excluding Week 2 data from this analysis is that patients could be confused about when a behavior actually stops after randomization; the data obtained at Week 2 could be somewhat \u201ctainted.\u201d Also, by requiring 2 weeks of therapy prior to use of the NPI-X data, the treatment difference should be maximized by giving the drug 2 weeks to work, thereby increasing the statistical power. Secondary analyses of the NPI-X will include the average of all postrandomization weeks, including measures obtained at Weeks 2 and 26.

    ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_54", + "extensionAttributes": [], + "name": "NCI_54", + "text": "

    The primary method to be used for the primary efficacy variables described in Sections 4.3.1 and 4.3.2 will be analysis of covariance (ANCOVA), except for CIBIC+ which is a score that reflects change from baseline, so there is no corresponding baseline CIBIC+ score. Effects in the ANCOVA model will be the corresponding baseline score, investigator, and treatment. CIBIC+ will be analyzed by analysis of variance (ANOVA), with effects in the model being investigator and treatment. Investigator-by-treatment interaction will be tested in a full model prior to conducting the primary ANCOVA or ANOVA (see description below).

    \n

    Because 3 treatment groups are involved, the primary analysis will be the test for linear dose response in the ANCOVA and ANOVA models described in the preceding paragraph. The result is then a single p-value for each of ADAS-Cog and CIBIC+.

    \n

    Analysis of the secondary efficacy variables will also be ANCOVA. Pairwise treatment comparisons of the adjusted means for all efficacy variables will be conducted using a LSMEANS statement within the GLM procedure.

    \n

    Investigator-by-treatment interaction will be tested in a full ANCOVA or ANOVA model, which takes the models described above, and adds the interaction term to the model. Interaction will be tested at \u03b1 = .10 level. When the interaction is significant at this level, the data will be examined for each individual investigator to attempt to identify the source of the significant interaction. When the interaction is not significant, this term will be dropped from the model as described above, to test for investigator and treatment main effects. By doing so, all ANCOVA and ANOVA models will be able to validly test for treatment differences without weighting each investigator equally, which is what occurs when using Type III sums of squares (cell means model) with the interaction term present in the model. This equal weighting of investigators can become a serious problem when sample sizes are dramatically different between investigators.

    \n

    For all ANOVA and ANCOVA models, data collected from investigators who enrolled fewer than 3 patients in any one treatment group will be combined prior to analysis. If this combination still results in a treatment group having fewer than 3 patients in any one treatment group, then this group of patients will be combined with the next fewestenrolling investigator. In the event that there is a tie for fewest-enrolling investigator, one of these will be chosen at random by a random-number generator.

    \n

    The inherent assumption of normally distributed data will be evaluated by generating output for the residuals from the full ANCOVA and ANOVA models, which include the interaction term, and by testing for normality using the Shapiro-Wilk test from PROC UNIVARIATE. In the event that the data are predominantly nonnormally distributed, analyses will also be conducted on the ranked data. This rank transformation will be applied by ranking all the data for a particular variable, across all investigators and treatments, from lowest to highest. Integer ranks will be assigned starting at 1; mean ranks will be assigned when ties occur.

    \n

    In addition, the NPI-X will be analyzed in a manner similar to typical analyses of adverse events. In this analysis, each behavior will be considered individually. This analysis is referred to as \u201ctreatment-emergent signs and symptoms\u201d (TESS) analysis. For each behavior, the patients will be dichotomized into 1 of 2 groups: those who experienced the behavior for the first time postrandomization, or those who had the quotient between frequency and severity increase relative to the baseline period defines one group. All other patients are in the second group. Treatments will be compared for overall differences by Cochran-Mantel-Haentzel (CMH) test referred to in SAS\u00ae as \u201crow mean scores differ,\u201d 2 degrees of freedom. The CMH correlation statistic (1 degree of freedom test), will test for increasing efficacy with increasing dose (trend test).

    ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_55", + "extensionAttributes": [], + "name": "NCI_55", + "text": "

    All comparisons between xanomeline and placebo with respect to efficacy variables should be one-sided. The justification for this follows.

    \n

    The statistical hypothesis that is tested needs to be consistent with the ultimate data-based decision that is reached. When conducting placebo-controlled trials, it is imperative that the drug be demonstrated to be superior in efficacy to placebo, since equivalent or worse efficacy than placebo will preclude approvability. Consequently, a one-sided test for efficacy is required.

    \n

    The null hypothesis is that the drug is equal or worse than placebo. The alternative hypothesis is that the drug has greater efficacy than placebo. A Type I error occurs only when it is concluded that a study drug is effective when in fact it is not. This can occur in only one tail of the distribution of the treatment difference. Further details of the arguments for one-sided tests in placebo-controlled trials are available in statistical publications (Fisher 1991; Koch 1991; Overall 1991; and Peace 1991).

    \n

    The argument for one-sided tests does not necessarily transfer to safety measures, in general, because one can accept a certain level of toxicity in the presence of strong efficacy. That is, safety is evaluated as part of a benefit/risk ratio.

    \n

    Note that this justification is similar to that used by regulatory agencies worldwide that routinely require one-sided tests for toxicological oncogenicity studies. In that case, the interest is not in whether a drug seems to lessen the occurrence of cancer; the interest is in only one tail of the distribution, namely whether the drug causes cancer to a greater extent than the control.

    \n

    Different regulatory agencies require different type I error rates. Treatment differences that are significant at the .025 \u03b1-level will be declared to be \u201cstatistically significant.\u201d When a computed p-value falls between .025 and .05, the differences will be described as \u201cmarginally statistically significant.\u201d This approach satisfies regulatory agencies who have accepted a one-sided test at the .05 level, and other regulatory agencies who have requested a two-sided test at the .05 level, or equivalently, a one-sided test at the .025 level. In order to facilitate the review of the final study report, two-sided p-values will be presented in addition to the one-sided p-values.

    ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_56", + "extensionAttributes": [], + "name": "NCI_56", + "text": "

    When there are multiple outcomes, and the study drug is declared to be effective when at least one of these outcomes achieves statistical significance in comparison with a placebo control, a downward adjustment to the nominal \u03b1-level is necessary. A well-known simple method is the Bonferroni method, that divides the overall Type I error rate, usually .05, by the number of multiple outcomes. So, for example, if there are two multiple outcomes, the study drug is declared to be effective if at least one of the two outcomes is significant at the .05/2 or .025 level.

    \n

    However, when one has the situation that is present in this study, where there are 2 (or 3 for Europe) outcome variables, each of which must be statistically significant, then the adjustment of the nominal levels is in the opposite direction, that is upwards, in order to maintain an overall Type 1 error rate of .05.

    \n

    In the case of two outcomes, ADAS-Cog (11) and CIBIC+, if the two variables were completely independent, then each variable should be tested at the nominal \u03b1-level of .05 1/2 = .2236 level. So if both variables resulted in a nominal p-value less than or equal to .2236, then we would declare the study drug to be effective at the overall Type 1 error rate of .05.

    \n

    We expect these two outcome measures to be correlated. From the first large-scale \nefficacy study of oral xanomeline, Study MC-H2Q-LZZA, the correlation between \nCIBIC+ and the change in ADAS-Cog(11) from baseline was .252. Consequently, we

    \n

    plan to conduct a randomization test to combine these two dependent dose-response p-values into a single test, which will then be at the .05 Type I error level. Because there will be roughly 300!/(3 * 100!) possible permutations of the data, random data permutations will be sampled (10,000 random permutations).

    \n

    Designate the dose response p-values as p1 and p2 (computed as one-sided p-values), for ADAS-Cog(11) and CIBIC+, respectively. The rejection region is defined as

    \n

    [ {p1 \u2264 \u03b1 and p2 \u2264 \u03b1} ].

    \n

    The critical value, \u03b1, will be determined from the 10,000 random permutations by choosing the value of \u03b1 to be such that 2.5% of the 10,000 computed pairs of dose response p-values fall in the rejection region. This will correspond to a one-sided test at the .025 level, or equivalently a two-sided test at the .05 level. In addition, by determining the percentage of permuted samples that are more extreme than the observed data, a single p-value is obtained.

    ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_57", + "extensionAttributes": [], + "name": "NCI_57", + "text": "

    Although safety data is collected at the 24 week visit for retrieved dropouts, these data will not be included in the primary analysis of safety.

    \n

    Pearson's chi-square test will be used to analyze 3 reasons for study discontinuation (protocol completed, lack of efficacy, and adverse event), the incidence of abnormal (high or low) laboratory measures during the postrandomization phase, and the incidence of treatment-emergent adverse events. The analysis of laboratory data is conducted by comparing the measures to the normal reference ranges (based on a large Lilly database), and counting patients in the numerator if they ever had a high (low) value during the postrandomization phase.

    \n

    Additionally, for the continuous laboratory tests, an analysis of change from baseline to endpoint will be conducted using the same ANOVA model described for the efficacy measures in Section 4.3. Because several laboratory analytes are known to be nonnormally distributed (skewed right), these ANOVAs will be conducted on the ranks.

    \n

    Several outcome measures will be extracted and analyzed from the Ambulatory ECG tapes, including number of pauses, QT interval, and AV block (first, second, or third degree). The primary consideration will be the frequency of pauses. The number of pauses greater than or equal to 2, 3, 4, 5 and 6 seconds will be tabulated. Primary analysis will focus on the number of pauses greater than or equal to 3 seconds. Due to possible outliers, these data will be analyzed as the laboratory data, by ANOVA on the ranks.

    \n

    Treatment-emergent adverse events (also referred to as treatment-emergent signs and symptoms, or TESS) are defined as any event reported during the postrandomization period (Weeks 0 - 26) that is worse in severity than during the baseline period, or one that occurs for the first time during the postrandomization period.

    ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_58", + "extensionAttributes": [], + "name": "NCI_58", + "text": "

    The effect of age, gender, origin, baseline disease severity as measured by MMSE, Apo E, and patient education level upon efficacy will be evaluated if sample sizes are sufficient to warrant such analyses. For example, if all patients are Caucasian, then there is no need to evaluate the co-factor origin. The ANCOVA and ANOVA models described above will be supplemented with terms for the main effect and interaction with treatment. Each co-factor will be analyzed in separate models. The test for treatment-bysubgroup interaction will address whether the response to xanomeline, compared with placebo, is different or consistent between levels of the co-factor.

    ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_59", + "extensionAttributes": [], + "name": "NCI_59", + "text": "

    Two interim efficacy analyses are planned. The first interim analysis will occur when approximately 50% of the patients have completed 8 weeks; the second interim analysis is to be conducted when approximately 50% of the patients have completed 24 weeks of the study. The purpose of these interim analyses is to provide a rationale for the initiation of subsequent studies of xanomeline TTS, or if the outcome is negative to stop development of xanomeline TTS. The method developed by Enas and Offen (1993) will be used as a guideline as to whether or not to stop one treatment arm, or the study, to declare ineffectiveness. The outcome of the interim analyses will not affect in any way the conduct, results, or analysis of the current study, unless the results are so negative that they lead to a decision to terminate further development of xanomeline TTS in AD. Hence, adjustments to final computed p-values are not appropriate.

    \n

    Planned interim analyses, and any unplanned interim analyses, will be conducted under the auspices of the data monitoring board assigned to this study. Only the data monitoring board is authorized to review completely unblinded interim efficacy and safety analyses and, if necessary, to disseminate those results. The data monitoring board will disseminate interim results only if absolutely necessary. Any such dissemination will be documented and described in the final study report. Study sites will not receive information about interim results unless they need to know for the safety of their patients.

    ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_60", + "extensionAttributes": [], + "name": "NCI_60", + "text": "

    An analysis of the cardiovascular safety monitoring (see section 3.9.4) will be performed when approximately 25 patients from each treatment arm have completed at least 2 weeks at the treatment arms' respective full dosage (Visit 5). If necessary, this analysis will be repeated every 25 patients per arm. This analysis will be conducted under the auspices of the DSMB. This board membership will be composed of 3 external cardiologists who will be the voting members of the board, a Lilly cardiologist, a Lilly statistician, and the Lilly research physician in charge of the study. Only the DSMB is authorized to review completely unblinded cardiovascular safety analyses and, if necessary, to disseminate those results. The outcome of the cardiovascular safety analyses will determine the need for further Ambulatory ECGs.

    ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_61", + "extensionAttributes": [], + "name": "NCI_61", + "text": "

    Plasma concentrations of xanomeline will be determined from samples obtained at selected visits (Section 3.9.2). The plasma concentration data for xanomeline, dosing information, and patient characteristics such as weight, gender and origin will be pooled and analyzed using a population pharmacokinetic analysis approach (for example, NONMEM). This approach preserves the individual pharmacokinetic differences through structural and statistical models. The population pharmacokinetic parameters through the structural model, and the interindividual and random residual variability through the components of the statistical models will be estimated. An attempt will also be made to correlate plasma concentrations with efficacy and safety data by means of population pharmacokinetic/pharmacodynamic modeling.

    ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_62", + "extensionAttributes": [], + "name": "NCI_62", + "text": "
    ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_63", + "extensionAttributes": [], + "name": "NCI_63", + "text": "

    In the United States and Canada, the investigator is responsible for preparing the informed consent document. The investigator will use information provided in the current [Clinical Investigator's Brochure or product information] to prepare the informed consent document.

    \n

    The informed consent document will be used to explain in simple terms, before the patient is entered into the study, the risks and benefits to the patient. The informed consent document must contain a statement that the consent is freely given, that the patient is aware of the risks and benefits of entering the study, and that the patient is free to withdraw from the study at any time.

    \n

    As used in this protocol, the term \u201cinformed consent\u201d includes all consent and/or assent given by subjects, patients, or their legal representatives.

    \n

    In addition to the elements required by all applicable laws, the 3 numbered paragraphs below must be included in the informed consent document. The language may be altered to match the style of the informed consent document, providing the meaning is unchanged. In some circumstances, local law may require that the text be altered in a way that changes the meaning. These changes can be made only with specific Lilly approval. In these cases, the ethical review board may request from the investigator documentation evidencing Lilly's approval of the language in the informed consent document, which would be different from the language contained in the protocol. Lilly shall, upon request, provide the investigator with such documentation.

    \n
      \n
    1. \u201cI understand that the doctors in charge of this study, or Lilly, may \nstop the study or stop my participation in the study at any time, for any \nreason, without my consent.\u201d

    2. \n
    3. \u201cI hereby give permission for the doctors in charge of this study to \nrelease the information regarding, or obtained as a result of, my \nparticipation in this study to Lilly, including its agents and contractors; \nthe US Food and Drug Administration (FDA) and other governmental \nagencies; and to allow them to inspect all my medical records. I \nunderstand that medical records that reveal my identity will remain \nconfidential, except that they will be provided as noted above or as \nmay be required by law.\u201d

    4. \n
    5. \u201cIf I follow the directions of the doctors in charge of this study and I \nam physically injured because of any substance or procedure properly \ngiven me under the plan for this study, Lilly will pay the medical \nexpenses for the treatment of that injury which are not covered by my \nown insurance, by a government program, or by any other third party. \nNo other compensation is available from Lilly if any injury occurs.\u201d

    6. \n
    \n

    The investigator is responsible for obtaining informed consent from each patient or legal representative and for obtaining the appropriate signatures on the informed consent document prior to the performance of any protocol procedures and prior to the administration of study drug.

    ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_64", + "extensionAttributes": [], + "name": "NCI_64", + "text": "

    The name and address of the ethical review board are listed on the Investigator/Contacts cover pages provided with this protocol.

    \n

    The investigator will provide Lilly with documentation of ethical review board approval of the protocol and the informed consent document before the study may begin at the site or sites concerned. The ethical review board(s) will review the protocol as required.

    \n

    The investigator must provide the following documentation:

    \n
    ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_65", + "extensionAttributes": [], + "name": "NCI_65", + "text": "

    This study will be conducted in accordance with the ethical principles stated in the most recent version of the Declaration of Helsinki or the applicable guidelines on good clinical practice, whichever represents the greater protection of the individual.

    \n

    After reading the protocol, each investigator will sign 2 protocol signature pages and return 1 of the signed pages to a Lilly representative (see Attachment LZZT.10).

    ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_66", + "extensionAttributes": [], + "name": "NCI_66", + "text": "
    \n
    \n
    \n

    Bierer LM, Haroutunian V, Gabriel S, Knott PJ, Carlin LS, Purohit DP, et al. 1995.
    Neurochemical correlates of dementia severity in AD: Relative importance of the cholinergic deficits. J of Neurochemistry 64:749-760.

    \n
    \n
    \n
    \n
    \n

    Cummings JL, Mega M, Gray K, Rosenberg-Thompson S, et al. 1994. The Neuropsychiatric Inventory: Comprehensive assessment of psychopathology in dementia. Neurology 44:2308-2314.

    \n
    \n
    \n
    \n
    \n

    Enas GG, Offen WW. 1993. A simple stopping rule for declaring treatment ineffectiveness in clinical trials. J Biop Stat 3(1):13-32.

    \n
    \n
    \n
    \n
    \n

    Fisher A, Barak D. 1994. Promising therapeutic strategies in Alzheimer's disease based \non functionally selective M 1 muscarinic agonists. Progress and perspectives in new \nmuscarinic agonists. DN&P 7(8):453-464.

    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n

    GLUCAGON for Injection ITO [Package Insert]. Osaka, Japan: Kaigen Pharma Co., Ltd; 2016.Available at:\n http://www.pmda.go.jp/PmdaSearch/iyakuDetail/ResultDataSetPDF/130616_7229400D1088_\n 1_11.

    \n
    \n
    \n
    \n
    \n

    Polonsky WH, Fisher L, Hessler D, Johnson N. Emotional distress in the partners of type 1diabetes adults:\n worries about hypoglycemia and other key concerns. Diabetes Technol Ther. 2016;18:292-297.

    \n
    \n
    \n
    \n
    \n

    Fisher LD. 1991. The use of one-sided tests in drug trials: an FDA advisory committee \nmember's perspective. J Biop Stat 1:151-6.

    \n
    \n
    \n
    \n
    \n

    Koch GG. 1991. One-sided and two-sided tests and p-values. J Biop Stat 1:161-70.

    \n
    \n
    \n
    \n
    \n

    Overall JE. 1991. A comment concerning one-sided tests of significance in new drug \napplications. J Biop Stat 1:157-60.

    \n
    \n
    \n
    \n
    \n

    Peace KE. 1991. Oneside or two-sided p-values: which most appropriately address the \nquestion of drug efficacy? J Biop Stat 1:133-8.

    \n
    \n
    \n
    ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_67", + "extensionAttributes": [], + "name": "NCI_67", + "text": "
    \n
    \n

    Note:

    \n

    The following SoA timelines are auto generated using the detailed study design held within the USDM.

    \n
    \n

    Timeline: Main Timeline, Potential subject identified

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X1

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X2

    X

    X

    X

    X

    X3

    X

    X

    X

    X

    X4

    X

    X

    X

    X

    X5

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    1

    Performed if patient is an insulin-dependent diabetic

    2

    Practice only - It is recommended that a sampling of the CIBIC+, ADAS-Cog, DAD, and NPI-X be administered at Visit 1. Data from this sampling would not be considered as study data and would not be collected.

    3

    Practice only - It is recommended that a sampling of the CIBIC+, ADAS-Cog, DAD, and NPI-X be administered at Visit 1. Data from this sampling would not be considered as study data and would not be collected.

    4

    Practice only - It is recommended that a sampling of the CIBIC+, ADAS-Cog, DAD, and NPI-X be administered at Visit 1. Data from this sampling would not be considered as study data and would not be collected.

    5

    Practice only - It is recommended that a sampling of the CIBIC+, ADAS-Cog, DAD, and NPI-X be administered at Visit 1. Data from this sampling would not be considered as study data and would not be collected.

    Timeline: Adverse Event Timeline, Subject suffers an adverse event

    X

    Timeline: Early Termination Timeline, Subject terminates the study early

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    Timeline: Vital Sign Blood Pressure Timeline, Automatic execution

    X

    X

    X

    X

    X

    X

    ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_68", + "extensionAttributes": [], + "name": "NCI_68", + "text": "
    \n
    \n

    Note:

    \n

    The attachment has not been included in this issue of the protocol. It may be included in future versions.

    \n
    \n
    ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_69", + "extensionAttributes": [], + "name": "NCI_69", + "text": "
    \n
    \n

    Note:

    \n

    The attachment has not been included in this issue of the protocol. It may be included in future versions.

    \n
    \n
    ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_70", + "extensionAttributes": [], + "name": "NCI_70", + "text": "
    \n
    \n

    Note:

    \n

    The attachment has not been included in this issue of the protocol. It may be included in future versions.

    \n
    \n
    ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_71", + "extensionAttributes": [], + "name": "NCI_71", + "text": "
    \n
    \n

    Note:

    \n

    The attachment has not been included in this issue of the protocol. It may be included in future versions.

    \n
    \n
    ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_72", + "extensionAttributes": [], + "name": "NCI_72", + "text": "
    \n
    \n

    Note:

    \n

    The attachment has not been included in this issue of the protocol. It may be included in future versions.

    \n
    \n
    ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_73", + "extensionAttributes": [], + "name": "NCI_73", + "text": "
    \n
    \n

    Note:

    \n

    The attachment has not been included in this issue of the protocol. It may be included in future versions.

    \n
    \n
    ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_74", + "extensionAttributes": [], + "name": "NCI_74", + "text": "
    \n
    \n

    Note:

    \n

    The attachment has not been included in this issue of the protocol. It may be included in future versions.

    \n
    \n
    ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_75", + "extensionAttributes": [], + "name": "NCI_75", + "text": "
    \n
    \n

    Note:

    \n

    The attachment has not been included in this issue of the protocol. It may be included in future versions.

    \n
    \n
    ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_76", + "extensionAttributes": [], + "name": "NCI_76", + "text": "
    \n
    \n

    Note:

    \n

    The attachment has not been included in this issue of the protocol. It may be included in future versions.

    \n
    \n
    ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_77", + "extensionAttributes": [], + "name": "NCI_77", + "text": "

    Sponsor Confidentiality Statement:

    Full Title:

    Trial Acronym:

    Protocol Identifier:

    Original Protocol:

    Version Number:

    Version Date:

    Amendment Identifier:

    Amendment Scope:

    Compound Codes(s):

    Compound Name(s):

    Trial Phase:

    Short Title:

    Sponsor Name and Address:

    ,

    Regulatory Agency Identifier Number(s):

    Spondor Approval Date:

    ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_78", + "extensionAttributes": [], + "name": "NCI_78", + "text": "
    Committees\n

    A Data Safety Monitoring Board (DSMB), chaired by an external cardiologist, will meet after 75, 150, 225, and 300 patients have completed 1 month of treatment. The DSMB will review cardiovascular findings to decide if discontinuation of the study or any treatment arm is appropriate, if additional cardiovascular monitoring is required, if further cardiovascular monitoring is unnecessary, or if adjustment of dose within a treatment arm (or arms) is appropriate (see Section 3.9.4).

    ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_79", + "extensionAttributes": [], + "name": "NCI_79", + "text": "
    \"Alt\n

    Figure LZZT.1. Illustration of study design for Protocol H2Q-MC-LZZT(c).

    \n

    Following informed consent, patients will be screened at Visit 1. At screening, patients will undergo complete neuropsychiatric assessment, psychometric testing, and general medical assessment (including medical history, pre-existing conditions, physical examination). In addition, vital signs, temperature, medication history, electrocardiogram (ECG), chest x-ray, and safety laboratories will be obtained. During the screening visit, patients will wear a placebo TTS to determine willingness and ability to comply with transdermal administration procedures. If patients have not had central nervous system (CNS) imaging in the previous 12 months, a computed tomography (CT) or magnetic resonance imaging (MRI) scan will be obtained. If patients are insulin dependent diabetics, a hemoglobin A 1c will be obtained. Screening exams and procedures may be performed after Visit 1; however, their results must be completed and available prior to randomization. The screening process should occur within 2 weeks of randomization (Visit 3 of the study).

    \n

    Patients who meet enrollment criteria from Visit 1 will proceed to Visit 2 at which time they will undergo a 24-hour Ambulatory ECG. At Visit 3 the Ambulatory ECG will be removed and patients will be randomized to 1 of 3 treatment arms. The treatment arms will include a placebo arm, a low-dose xanomeline arm (50 cm 2 TTS Formulation E, 54 mg xanomeline), and a high-dose xanomeline arm (75 cm 2 TTS Formulation E, 81 mg xanomeline). All patients receiving xanomeline will be started at 50 cm 2 TTS Formulation E. For the first 8 weeks of treatment, patients will be assessed at clinic visits every 2 weeks and, thereafter, at clinic visits every 4 weeks. Patients who discontinue prior to Visit 12 (Week 24) will be brought back for full efficacy assessments at or near to 24 weeks, whenever possible.

    \n

    At Visits 3, 8, 10, and 12, efficacy instruments (ADAS-Cog, CIBIC+, and DAD) will be administered. NPI-X will be administered at 2-week intervals either at clinic visits or via a telephone interview. Vital signs, temperature, and an assessment of adverse events will be obtained at all clinic visits. An electrocardiogram (ECG), and chemistry/hematology safety labs will be obtained at Visits 4, 5, 7, 8, 9, 10, 11, 12, and 13. Urinalysis will be done at Visits 4, 9, and 12. Use of concomitant medications will be collected at Visits 3, 4, 5, 7, 8, 9, 10, 11, 12, and 13. Plasma levels of xanomeline and metabolites will be obtained at Visits 3, 4, 5, 7, 9, and 11. At Visits 3, 4, 5, 7, 8, 9, 10, 11, and 12, medications will be dispensed to the patients.

    \n

    Visits 1 through 13 should be scheduled relative to Visit 3 (Week 0 - randomization). Visits 4, 5, 7, 8, and 13 should occur within 3 days of their scheduled date. Visits 9, 10, 11, and 12 should occur within 4 days of their scheduled date. At Visit 13 patients will be given the option to enter the open-label extension phase (see Section 3.10.3. Study Extensions).

    ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_80", + "extensionAttributes": [], + "name": "NCI_80", + "text": "
    \n
    \n

    Note:

    \n

    The following SoA timelines are auto generated using the detailed study design held within the USDM.

    \n
    \n

    Timeline: Main Timeline, Potential subject identified

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X1

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X2

    X

    X

    X

    X

    X3

    X

    X

    X

    X

    X4

    X

    X

    X

    X

    X5

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    1

    Performed if patient is an insulin-dependent diabetic

    2

    Practice only - It is recommended that a sampling of the CIBIC+, ADAS-Cog, DAD, and NPI-X be administered at Visit 1. Data from this sampling would not be considered as study data and would not be collected.

    3

    Practice only - It is recommended that a sampling of the CIBIC+, ADAS-Cog, DAD, and NPI-X be administered at Visit 1. Data from this sampling would not be considered as study data and would not be collected.

    4

    Practice only - It is recommended that a sampling of the CIBIC+, ADAS-Cog, DAD, and NPI-X be administered at Visit 1. Data from this sampling would not be considered as study data and would not be collected.

    5

    Practice only - It is recommended that a sampling of the CIBIC+, ADAS-Cog, DAD, and NPI-X be administered at Visit 1. Data from this sampling would not be considered as study data and would not be collected.

    Timeline: Adverse Event Timeline, Subject suffers an adverse event

    X

    Timeline: Early Termination Timeline, Subject terminates the study early

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    X

    Timeline: Vital Sign Blood Pressure Timeline, Automatic execution

    X

    X

    X

    X

    X

    X

    ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_81", + "extensionAttributes": [], + "name": "NCI_81", + "text": "

    The primary objectives of this study are

    \n
    ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_82", + "extensionAttributes": [], + "name": "NCI_82", + "text": "

    The secondary objectives of this study are

    \n
    ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_83", + "extensionAttributes": [], + "name": "NCI_83", + "text": "

    Approximately 300 patients will be enrolled (see Schedule of Events for Protocol H2Q-MC-LZZT(c), Attachment LZZT.1).

    \n

    Duration

    \n

    SOMETHING HERE

    \n

    Patients with probable mild to moderate AD will be studied in a randomized, double-blind, parallel (3 arm), placebo-controlled trial of 26 weeks duration. The study will be conducted on an outpatient basis.

    \n

    At Visit 1, patients who meet the enrollment criteria of Mini-Mental State Examination (MMSE) score of 10 to 23 (Attachment LZZT.6), Hachinski Ischemia Score \u22644 (Attachment LZZT.8), a physical exam, safety labs, ECG, and urinalysis, will proceed to Visit 2 and Visit 3. At Visit 3, patients whose CNS imaging and other pending labs from Visit 1 satisfy the inclusion criteria (Section 3.4.2.1) will be enrolled in the study. Approximately 300 patients with a diagnosis of probable mild to moderate AD will be enrolled in the study.

    ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_84", + "extensionAttributes": [], + "name": "NCI_84", + "text": "

    Patients may be included in the study only if they meet all the following criteria:

    \n
    01
    02
    03
    04
    05
    06
    07
    08
    ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_85", + "extensionAttributes": [], + "name": "NCI_85", + "text": "

    Patients will be excluded from the study for any of the following reasons:

    \n
    09
    10
    11
    12
    13
    14
    15
    16b
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27b
    28b
    29b
    30b
    31b
    ", + "instanceType": "NarrativeContentItem" + } + ], + "abbreviations": [], + "roles": [ + { + "id": "StudyRole_1", + "extensionAttributes": [], + "name": "ROLE_1", + "label": "Sponsor", + "description": "Sponsor role", + "code": { + "id": "Code_670", + "extensionAttributes": [], + "code": "C70793", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Sponsor", + "instanceType": "Code" + }, + "appliesToIds": [], + "assignedPersons": [], + "organizationIds": ["Organization_1"], + "masking": { + "id": "Masking_1", + "extensionAttributes": [], + "text": "Masked", + "isMasked": true, + "instanceType": "Masking" + }, + "notes": [], + "instanceType": "StudyRole" + } + ], + "organizations": [ + { + "id": "Organization_1", + "extensionAttributes": [], + "name": "LILLY", + "label": "Eli Lilly", + "type": { + "id": "Code_1", + "extensionAttributes": [], + "code": "C70793", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Clinical Study Sponsor", + "instanceType": "Code" + }, + "identifierScheme": "DUNS", + "identifier": "00-642-1325", + "legalAddress": { + "id": "Address_1", + "extensionAttributes": [], + "text": "Lilly Corporate Ctr, Indianapolis, , IN, 4628, United States of America", + "lines": ["Lilly Corporate Ctr"], + "city": "Indianapolis", + "district": "", + "state": "IN", + "postalCode": "4628", + "country": { + "id": "Code_2", + "extensionAttributes": [], + "code": "USA", + "codeSystem": "ISO 3166 1 alpha3", + "codeSystemVersion": "2020-08", + "decode": "United States of America", + "instanceType": "Code" + }, + "instanceType": "Address" + }, + "managedSites": [], + "instanceType": "Organization" + }, + { + "id": "Organization_2", + "extensionAttributes": [], + "name": "CT-GOV", + "label": "ClinicalTrials.gov", + "type": { + "id": "Code_3", + "extensionAttributes": [], + "code": "C93453", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Study Registry", + "instanceType": "Code" + }, + "identifierScheme": "USGOV", + "identifier": "CT-GOV", + "legalAddress": { + "id": "Address_2", + "extensionAttributes": [], + "text": "National Library of Medicine, Bethesda, 8600 Rockville Pike, MD, 20894, United States of America", + "lines": ["National Library of Medicine"], + "city": "Bethesda", + "district": "8600 Rockville Pike", + "state": "MD", + "postalCode": "20894", + "country": { + "id": "Code_4", + "extensionAttributes": [], + "code": "USA", + "codeSystem": "ISO 3166 1 alpha3", + "codeSystemVersion": "2020-08", + "decode": "United States of America", + "instanceType": "Code" + }, + "instanceType": "Address" + }, + "managedSites": [], + "instanceType": "Organization" + }, + { + "id": "Organization_3", + "extensionAttributes": [], + "name": "SITE_ORG_1", + "label": "Big Hospital", + "type": { + "id": "Code_5", + "extensionAttributes": [], + "code": "C70793", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Clinical Study Sponsor", + "instanceType": "Code" + }, + "identifierScheme": "DUNS", + "identifier": "123456789", + "legalAddress": { + "id": "Address_3", + "extensionAttributes": [], + "text": "line, city, district, state, postal_code, United Kingdom of Great Britain and Northern Ireland", + "lines": ["line"], + "city": "city", + "district": "district", + "state": "state", + "postalCode": "postal_code", + "country": { + "id": "Code_6", + "extensionAttributes": [], + "code": "GBR", + "codeSystem": "ISO 3166 1 alpha3", + "codeSystemVersion": "2020-08", + "decode": "United Kingdom of Great Britain and Northern Ireland", + "instanceType": "Code" + }, + "instanceType": "Address" + }, + "managedSites": [ + { + "id": "StudySite_1", + "extensionAttributes": [], + "name": "SITE_1", + "label": "Site One", + "description": "Main Site", + "country": { + "id": "Code_669", + "extensionAttributes": [], + "code": "GBR", + "codeSystem": "ISO 3166 1 alpha3", + "codeSystemVersion": "2020-08", + "decode": "United Kingdom of Great Britain and Northern Ireland", + "instanceType": "Code" + }, + "instanceType": "StudySite" + } + ], + "instanceType": "Organization" + } + ], + "studyInterventions": [ + { + "id": "StudyIntervention_1", + "extensionAttributes": [], + "name": "XINONILINE", + "label": "Xinomiline", + "description": "Xinomiline", + "role": { + "id": "Code_611", + "extensionAttributes": [], + "code": "C41161", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Experimental Intervention", + "instanceType": "Code" + }, + "type": { + "id": "Code_612", + "extensionAttributes": [], + "code": "C1909", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Pharmacologic Substance", + "instanceType": "Code" + }, + "minimumResponseDuration": { + "id": "Quantity_4", + "extensionAttributes": [], + "value": 1.0, + "unit": { + "id": "AliasCode_246", + "extensionAttributes": [], + "standardCode": { + "id": "Code_613", + "extensionAttributes": [], + "code": "C25301", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Day", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "instanceType": "Quantity" + }, + "codes": [ + { + "id": "Code_610", + "extensionAttributes": [], + "code": "XIN", + "codeSystem": "SPONSOR", + "codeSystemVersion": "12", + "decode": "XIN", + "instanceType": "Code" + } + ], + "administrations": [ + { + "id": "Administration_1", + "extensionAttributes": [], + "name": "PATCH_50", + "label": "", + "description": "50 cm2 Patch", + "duration": { + "id": "Duration_1", + "extensionAttributes": [], + "text": "", + "quantity": { + "id": "Quantity_2", + "extensionAttributes": [], + "value": 24.0, + "unit": { + "id": "AliasCode_242", + "extensionAttributes": [], + "standardCode": { + "id": "Code_606", + "extensionAttributes": [], + "code": "C29844", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Week", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "instanceType": "Quantity" + }, + "durationWillVary": false, + "reasonDurationWillVary": "Need reason", + "instanceType": "Duration" + }, + "dose": { + "id": "Quantity_3", + "extensionAttributes": [], + "value": 54.0, + "unit": { + "id": "AliasCode_243", + "extensionAttributes": [], + "standardCode": { + "id": "Code_607", + "extensionAttributes": [], + "code": "C28253", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Milligram", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "instanceType": "Quantity" + }, + "route": { + "id": "AliasCode_244", + "extensionAttributes": [], + "standardCode": { + "id": "Code_608", + "extensionAttributes": [], + "code": "C38288", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Oral Route of Administration", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "frequency": { + "id": "AliasCode_245", + "extensionAttributes": [], + "standardCode": { + "id": "Code_609", + "extensionAttributes": [], + "code": "C25473", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Daily", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "administrableProductId": null, + "medicalDeviceId": null, + "notes": [], + "instanceType": "Administration" + }, + { + "id": "Administration_2", + "extensionAttributes": [], + "name": "PATCH_75", + "label": "", + "description": "75 cm2 Patch", + "duration": { + "id": "Duration_2", + "extensionAttributes": [], + "text": "", + "quantity": { + "id": "Quantity_5", + "extensionAttributes": [], + "value": 24.0, + "unit": { + "id": "AliasCode_247", + "extensionAttributes": [], + "standardCode": { + "id": "Code_614", + "extensionAttributes": [], + "code": "C29844", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Week", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "instanceType": "Quantity" + }, + "durationWillVary": false, + "reasonDurationWillVary": "Need reason", + "instanceType": "Duration" + }, + "dose": { + "id": "Quantity_6", + "extensionAttributes": [], + "value": 81.0, + "unit": { + "id": "AliasCode_248", + "extensionAttributes": [], + "standardCode": { + "id": "Code_615", + "extensionAttributes": [], + "code": "C28253", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Milligram", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "instanceType": "Quantity" + }, + "route": { + "id": "AliasCode_249", + "extensionAttributes": [], + "standardCode": { + "id": "Code_616", + "extensionAttributes": [], + "code": "C38288", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Oral Route of Administration", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "frequency": { + "id": "AliasCode_250", + "extensionAttributes": [], + "standardCode": { + "id": "Code_617", + "extensionAttributes": [], + "code": "C25473", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Daily", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "administrableProductId": null, + "medicalDeviceId": null, + "notes": [], + "instanceType": "Administration" + } + ], + "notes": [], + "instanceType": "StudyIntervention" + } + ], + "administrableProducts": [], + "medicalDevices": [], + "productOrganizationRoles": [], + "biomedicalConcepts": [ + { + "id": "BiomedicalConcept_20", + "extensionAttributes": [], + "name": "Sex", + "label": "Sex", + "synonyms": [], + "reference": "/mdr/bc/packages/2025-04-01/biomedicalconcepts/C28421", + "properties": [ + { + "id": "BiomedicalConceptProperty_130", + "extensionAttributes": [], + "name": "Sex", + "label": "Sex", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_174", + "extensionAttributes": [], + "name": "RC_C20197", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_482", + "extensionAttributes": [], + "code": "C20197", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Male", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_175", + "extensionAttributes": [], + "name": "RC_C16576", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_483", + "extensionAttributes": [], + "code": "C16576", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Female", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_173", + "extensionAttributes": [], + "standardCode": { + "id": "Code_484", + "extensionAttributes": [], + "code": "C28421", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Sex", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_131", + "extensionAttributes": [], + "name": "Collection Date Time", + "label": "Collection Date Time", + "isRequired": true, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_174", + "extensionAttributes": [], + "standardCode": { + "id": "Code_485", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_175", + "extensionAttributes": [], + "standardCode": { + "id": "Code_486", + "extensionAttributes": [], + "code": "C28421", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Sex", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_21", + "extensionAttributes": [], + "name": "Race", + "label": "Race", + "synonyms": ["Racial Group"], + "reference": "/mdr/bc/packages/2025-04-01/biomedicalconcepts/C17049", + "properties": [ + { + "id": "BiomedicalConceptProperty_132", + "extensionAttributes": [], + "name": "Race", + "label": "Race", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_176", + "extensionAttributes": [], + "standardCode": { + "id": "Code_487", + "extensionAttributes": [], + "code": "C17049", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Race", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_133", + "extensionAttributes": [], + "name": "Collection Date Time", + "label": "Collection Date Time", + "isRequired": true, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_177", + "extensionAttributes": [], + "standardCode": { + "id": "Code_488", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_178", + "extensionAttributes": [], + "standardCode": { + "id": "Code_489", + "extensionAttributes": [], + "code": "C17049", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Race", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_22", + "extensionAttributes": [], + "name": "Temperature", + "label": "Temperature", + "synonyms": ["Temperature", "Body Temperature"], + "reference": "/mdr/specializations/sdtm/packages/2024-12-16/datasetspecializations/TEMP", + "properties": [ + { + "id": "BiomedicalConceptProperty_134", + "extensionAttributes": [], + "name": "VSTESTCD", + "label": "VSTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_179", + "extensionAttributes": [], + "standardCode": { + "id": "Code_490", + "extensionAttributes": [], + "code": "C174446", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "TEMP", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_135", + "extensionAttributes": [], + "name": "VSORRES", + "label": "VSORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_180", + "extensionAttributes": [], + "standardCode": { + "id": "Code_491", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_136", + "extensionAttributes": [], + "name": "VSORRESU", + "label": "VSORRESU", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_176", + "extensionAttributes": [], + "name": "RC_C42559", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_492", + "extensionAttributes": [], + "code": "C42559", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Degree Celsius", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_177", + "extensionAttributes": [], + "name": "RC_C44277", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_493", + "extensionAttributes": [], + "code": "C44277", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Degree Fahrenheit", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_178", + "extensionAttributes": [], + "name": "RC_C42537", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_494", + "extensionAttributes": [], + "code": "C42537", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Kelvin", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_181", + "extensionAttributes": [], + "standardCode": { + "id": "Code_495", + "extensionAttributes": [], + "code": "C44276", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Unit of Temperature", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_137", + "extensionAttributes": [], + "name": "VSLOC", + "label": "VSLOC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_179", + "extensionAttributes": [], + "name": "RC_C12674", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_496", + "extensionAttributes": [], + "code": "C12674", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Axilla", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_180", + "extensionAttributes": [], + "name": "RC_C12394", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_497", + "extensionAttributes": [], + "code": "C12394", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Ear", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_181", + "extensionAttributes": [], + "name": "RC_C89803", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_498", + "extensionAttributes": [], + "code": "C89803", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Forehead", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_182", + "extensionAttributes": [], + "name": "RC_C12421", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_499", + "extensionAttributes": [], + "code": "C12421", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Oral Cavity", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_183", + "extensionAttributes": [], + "name": "RC_C12390", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_500", + "extensionAttributes": [], + "code": "C12390", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Rectum", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_182", + "extensionAttributes": [], + "standardCode": { + "id": "Code_501", + "extensionAttributes": [], + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Anatomic Site", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_138", + "extensionAttributes": [], + "name": "VSDTC", + "label": "VSDTC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_183", + "extensionAttributes": [], + "standardCode": { + "id": "Code_502", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_184", + "extensionAttributes": [], + "standardCode": { + "id": "Code_503", + "extensionAttributes": [], + "code": "C174446", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "TEMP", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_23", + "extensionAttributes": [], + "name": "Weight", + "label": "Weight", + "synonyms": ["WEIGHT", "Body Weight"], + "reference": "/mdr/specializations/sdtm/packages/2024-12-16/datasetspecializations/WEIGHT", + "properties": [ + { + "id": "BiomedicalConceptProperty_139", + "extensionAttributes": [], + "name": "VSTESTCD", + "label": "VSTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_185", + "extensionAttributes": [], + "standardCode": { + "id": "Code_504", + "extensionAttributes": [], + "code": "C25208", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "WEIGHT", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_140", + "extensionAttributes": [], + "name": "VSORRES", + "label": "VSORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_186", + "extensionAttributes": [], + "standardCode": { + "id": "Code_505", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_141", + "extensionAttributes": [], + "name": "VSORRESU", + "label": "VSORRESU", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_184", + "extensionAttributes": [], + "name": "RC_C48531", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_506", + "extensionAttributes": [], + "code": "C48531", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Pound", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_185", + "extensionAttributes": [], + "name": "RC_C48155", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_507", + "extensionAttributes": [], + "code": "C48155", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Gram", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_186", + "extensionAttributes": [], + "name": "RC_C28252", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_508", + "extensionAttributes": [], + "code": "C28252", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Kilogram", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_187", + "extensionAttributes": [], + "standardCode": { + "id": "Code_509", + "extensionAttributes": [], + "code": "C48208", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Unit of Weight", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_142", + "extensionAttributes": [], + "name": "VSDTC", + "label": "VSDTC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_188", + "extensionAttributes": [], + "standardCode": { + "id": "Code_510", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_189", + "extensionAttributes": [], + "standardCode": { + "id": "Code_511", + "extensionAttributes": [], + "code": "C25208", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "WEIGHT", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_24", + "extensionAttributes": [], + "name": "Height", + "label": "Height", + "synonyms": ["HEIGHT", "Body Height"], + "reference": "/mdr/specializations/sdtm/packages/2024-12-16/datasetspecializations/HEIGHT", + "properties": [ + { + "id": "BiomedicalConceptProperty_143", + "extensionAttributes": [], + "name": "VSTESTCD", + "label": "VSTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_190", + "extensionAttributes": [], + "standardCode": { + "id": "Code_512", + "extensionAttributes": [], + "code": "C25347", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "HEIGHT", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_144", + "extensionAttributes": [], + "name": "VSORRES", + "label": "VSORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_191", + "extensionAttributes": [], + "standardCode": { + "id": "Code_513", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_145", + "extensionAttributes": [], + "name": "VSORRESU", + "label": "VSORRESU", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_187", + "extensionAttributes": [], + "name": "RC_C49668", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_514", + "extensionAttributes": [], + "code": "C49668", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Centimeter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_188", + "extensionAttributes": [], + "name": "RC_C48500", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_515", + "extensionAttributes": [], + "code": "C48500", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Inch", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_189", + "extensionAttributes": [], + "name": "RC_C41139", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_516", + "extensionAttributes": [], + "code": "C41139", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Meter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_192", + "extensionAttributes": [], + "standardCode": { + "id": "Code_517", + "extensionAttributes": [], + "code": "C168688", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Unit of Height", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_146", + "extensionAttributes": [], + "name": "VSDTC", + "label": "VSDTC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_193", + "extensionAttributes": [], + "standardCode": { + "id": "Code_518", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_194", + "extensionAttributes": [], + "standardCode": { + "id": "Code_519", + "extensionAttributes": [], + "code": "C25347", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "HEIGHT", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_25", + "extensionAttributes": [], + "name": "Alanine Aminotransferase Concentration in Serum/Plasma", + "label": "Alanine Aminotransferase Concentration in Serum/Plasma", + "synonyms": ["ALT", "SGPT", "Alanine Aminotransferase Measurement"], + "reference": "/mdr/specializations/sdtm/packages/2025-04-01/datasetspecializations/ALTSERPL", + "properties": [ + { + "id": "BiomedicalConceptProperty_147", + "extensionAttributes": [], + "name": "LBTESTCD", + "label": "LBTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_195", + "extensionAttributes": [], + "standardCode": { + "id": "Code_520", + "extensionAttributes": [], + "code": "C64433", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "ALT", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_148", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_196", + "extensionAttributes": [], + "standardCode": { + "id": "Code_521", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_149", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_190", + "extensionAttributes": [], + "name": "RC_C67456", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_522", + "extensionAttributes": [], + "code": "C67456", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Unit per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_191", + "extensionAttributes": [], + "name": "RC_C67397", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_523", + "extensionAttributes": [], + "code": "C67397", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Microkatal per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_192", + "extensionAttributes": [], + "name": "RC_C67376", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_524", + "extensionAttributes": [], + "code": "C67376", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "International Unit per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_193", + "extensionAttributes": [], + "name": "RC_C70510", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_525", + "extensionAttributes": [], + "code": "C70510", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Nanokatal per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_197", + "extensionAttributes": [], + "standardCode": { + "id": "Code_526", + "extensionAttributes": [], + "code": "C67365", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Unit of Catalytic Activity Concentration", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_150", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_198", + "extensionAttributes": [], + "standardCode": { + "id": "Code_527", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_151", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_194", + "extensionAttributes": [], + "name": "RC_C49487", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_528", + "extensionAttributes": [], + "code": "C49487", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "No", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_195", + "extensionAttributes": [], + "name": "RC_C49488", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_529", + "extensionAttributes": [], + "code": "C49488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Yes", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_199", + "extensionAttributes": [], + "standardCode": { + "id": "Code_530", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_200", + "extensionAttributes": [], + "standardCode": { + "id": "Code_531", + "extensionAttributes": [], + "code": "C64433", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "ALT", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_26", + "extensionAttributes": [], + "name": "Albumin Presence in Urine", + "label": "Albumin Presence in Urine", + "synonyms": ["Albumin", "Albumin Measurement"], + "reference": "/mdr/specializations/sdtm/packages/2025-04-01/datasetspecializations/ALBURINPRES", + "properties": [ + { + "id": "BiomedicalConceptProperty_152", + "extensionAttributes": [], + "name": "LBTESTCD", + "label": "LBTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_201", + "extensionAttributes": [], + "standardCode": { + "id": "Code_532", + "extensionAttributes": [], + "code": "C64431", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "ALB", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_153", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_202", + "extensionAttributes": [], + "standardCode": { + "id": "Code_533", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_154", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_203", + "extensionAttributes": [], + "standardCode": { + "id": "Code_534", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_155", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_196", + "extensionAttributes": [], + "name": "RC_C49487", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_535", + "extensionAttributes": [], + "code": "C49487", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "No", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_197", + "extensionAttributes": [], + "name": "RC_C49488", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_536", + "extensionAttributes": [], + "code": "C49488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Yes", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_204", + "extensionAttributes": [], + "standardCode": { + "id": "Code_537", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_205", + "extensionAttributes": [], + "standardCode": { + "id": "Code_538", + "extensionAttributes": [], + "code": "C64431", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "ALB", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_27", + "extensionAttributes": [], + "name": "Alkaline Phosphatase Concentration in Serum/Plasma", + "label": "Alkaline Phosphatase Concentration in Serum/Plasma", + "synonyms": [ + "Alkaline Phosphatase", + "Alkaline Phosphatase Measurement" + ], + "reference": "/mdr/specializations/sdtm/packages/2025-04-01/datasetspecializations/ALPSERPL", + "properties": [ + { + "id": "BiomedicalConceptProperty_156", + "extensionAttributes": [], + "name": "LBTESTCD", + "label": "LBTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_206", + "extensionAttributes": [], + "standardCode": { + "id": "Code_539", + "extensionAttributes": [], + "code": "C64432", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "ALP", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_157", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_207", + "extensionAttributes": [], + "standardCode": { + "id": "Code_540", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_158", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_198", + "extensionAttributes": [], + "name": "RC_C67456", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_541", + "extensionAttributes": [], + "code": "C67456", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Unit per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_199", + "extensionAttributes": [], + "name": "RC_C67397", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_542", + "extensionAttributes": [], + "code": "C67397", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Microkatal per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_200", + "extensionAttributes": [], + "name": "RC_C67376", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_543", + "extensionAttributes": [], + "code": "C67376", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "International Unit per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_208", + "extensionAttributes": [], + "standardCode": { + "id": "Code_544", + "extensionAttributes": [], + "code": "C67365", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Unit of Catalytic Activity Concentration", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_159", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_209", + "extensionAttributes": [], + "standardCode": { + "id": "Code_545", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_160", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_201", + "extensionAttributes": [], + "name": "RC_C49487", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_546", + "extensionAttributes": [], + "code": "C49487", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "No", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_202", + "extensionAttributes": [], + "name": "RC_C49488", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_547", + "extensionAttributes": [], + "code": "C49488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Yes", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_210", + "extensionAttributes": [], + "standardCode": { + "id": "Code_548", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_211", + "extensionAttributes": [], + "standardCode": { + "id": "Code_549", + "extensionAttributes": [], + "code": "C64432", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "ALP", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_28", + "extensionAttributes": [], + "name": "Aspartate Aminotransferase in Serum/Plasma", + "label": "Aspartate Aminotransferase in Serum/Plasma", + "synonyms": [ + "AST", + "SGOT", + "Aspartate Aminotransferase Measurement" + ], + "reference": "/mdr/specializations/sdtm/packages/2025-04-01/datasetspecializations/ASTSERPL", + "properties": [ + { + "id": "BiomedicalConceptProperty_161", + "extensionAttributes": [], + "name": "LBTESTCD", + "label": "LBTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_212", + "extensionAttributes": [], + "standardCode": { + "id": "Code_550", + "extensionAttributes": [], + "code": "C64467", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "AST", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_162", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_213", + "extensionAttributes": [], + "standardCode": { + "id": "Code_551", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_163", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_203", + "extensionAttributes": [], + "name": "RC_C67456", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_552", + "extensionAttributes": [], + "code": "C67456", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Unit per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_204", + "extensionAttributes": [], + "name": "RC_C67397", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_553", + "extensionAttributes": [], + "code": "C67397", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Microkatal per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_205", + "extensionAttributes": [], + "name": "RC_C67376", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_554", + "extensionAttributes": [], + "code": "C67376", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "International Unit per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_214", + "extensionAttributes": [], + "standardCode": { + "id": "Code_555", + "extensionAttributes": [], + "code": "C67365", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Unit of Catalytic Activity Concentration", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_164", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_215", + "extensionAttributes": [], + "standardCode": { + "id": "Code_556", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_165", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_206", + "extensionAttributes": [], + "name": "RC_C49487", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_557", + "extensionAttributes": [], + "code": "C49487", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "No", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_207", + "extensionAttributes": [], + "name": "RC_C49488", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_558", + "extensionAttributes": [], + "code": "C49488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Yes", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_216", + "extensionAttributes": [], + "standardCode": { + "id": "Code_559", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_217", + "extensionAttributes": [], + "standardCode": { + "id": "Code_560", + "extensionAttributes": [], + "code": "C64467", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "AST", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_29", + "extensionAttributes": [], + "name": "Creatinine Concentration in Urine", + "label": "Creatinine Concentration in Urine", + "synonyms": ["Creatinine", "Creatinine Measurement"], + "reference": "/mdr/specializations/sdtm/packages/2025-04-01/datasetspecializations/CREATURIN", + "properties": [ + { + "id": "BiomedicalConceptProperty_166", + "extensionAttributes": [], + "name": "LBTESTCD", + "label": "LBTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_218", + "extensionAttributes": [], + "standardCode": { + "id": "Code_561", + "extensionAttributes": [], + "code": "C64547", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "CREAT", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_167", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_219", + "extensionAttributes": [], + "standardCode": { + "id": "Code_562", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_168", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_208", + "extensionAttributes": [], + "name": "RC_C67015", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_563", + "extensionAttributes": [], + "code": "C67015", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Milligram per Deciliter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_209", + "extensionAttributes": [], + "name": "RC_C64572", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_564", + "extensionAttributes": [], + "code": "C64572", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Microgram per Milliliter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_210", + "extensionAttributes": [], + "name": "RC_C64387", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_565", + "extensionAttributes": [], + "code": "C64387", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Millimole per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_211", + "extensionAttributes": [], + "name": "RC_C48508", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_566", + "extensionAttributes": [], + "code": "C48508", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Micromole per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_220", + "extensionAttributes": [], + "standardCode": { + "id": "Code_567", + "extensionAttributes": [], + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Unit of Concentration", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_169", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_221", + "extensionAttributes": [], + "standardCode": { + "id": "Code_568", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_170", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_212", + "extensionAttributes": [], + "name": "RC_C49487", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_569", + "extensionAttributes": [], + "code": "C49487", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "No", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_213", + "extensionAttributes": [], + "name": "RC_C49488", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_570", + "extensionAttributes": [], + "code": "C49488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Yes", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_222", + "extensionAttributes": [], + "standardCode": { + "id": "Code_571", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_223", + "extensionAttributes": [], + "standardCode": { + "id": "Code_572", + "extensionAttributes": [], + "code": "C64547", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "CREAT", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_30", + "extensionAttributes": [], + "name": "Potassium Concentration in Urine", + "label": "Potassium Concentration in Urine", + "synonyms": ["Potassium", "K", "Potassium Measurement"], + "reference": "/mdr/specializations/sdtm/packages/2025-04-01/datasetspecializations/KURIN", + "properties": [ + { + "id": "BiomedicalConceptProperty_171", + "extensionAttributes": [], + "name": "LBTESTCD", + "label": "LBTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_224", + "extensionAttributes": [], + "standardCode": { + "id": "Code_573", + "extensionAttributes": [], + "code": "C64853", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "K", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_172", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_225", + "extensionAttributes": [], + "standardCode": { + "id": "Code_574", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_173", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_214", + "extensionAttributes": [], + "name": "RC_C67474", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_575", + "extensionAttributes": [], + "code": "C67474", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Milliequivalent per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_215", + "extensionAttributes": [], + "name": "RC_C67473", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_576", + "extensionAttributes": [], + "code": "C67473", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Milliequivalent per Deciliter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_216", + "extensionAttributes": [], + "name": "RC_C64387", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_577", + "extensionAttributes": [], + "code": "C64387", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Millimole per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_226", + "extensionAttributes": [], + "standardCode": { + "id": "Code_578", + "extensionAttributes": [], + "code": "C64567", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Molarity Unit", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_174", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_227", + "extensionAttributes": [], + "standardCode": { + "id": "Code_579", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_175", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_217", + "extensionAttributes": [], + "name": "RC_C49487", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_580", + "extensionAttributes": [], + "code": "C49487", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "No", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_218", + "extensionAttributes": [], + "name": "RC_C49488", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_581", + "extensionAttributes": [], + "code": "C49488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Yes", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_228", + "extensionAttributes": [], + "standardCode": { + "id": "Code_582", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_229", + "extensionAttributes": [], + "standardCode": { + "id": "Code_583", + "extensionAttributes": [], + "code": "C64853", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "K", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_31", + "extensionAttributes": [], + "name": "Sodium Concentration in Urine", + "label": "Sodium Concentration in Urine", + "synonyms": ["Sodium", "NA", "Sodium Measurement"], + "reference": "/mdr/specializations/sdtm/packages/2025-04-01/datasetspecializations/SODIUMURIN", + "properties": [ + { + "id": "BiomedicalConceptProperty_176", + "extensionAttributes": [], + "name": "LBTESTCD", + "label": "LBTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_230", + "extensionAttributes": [], + "standardCode": { + "id": "Code_584", + "extensionAttributes": [], + "code": "C64809", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "SODIUM", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_177", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_231", + "extensionAttributes": [], + "standardCode": { + "id": "Code_585", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_178", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_219", + "extensionAttributes": [], + "name": "RC_C67474", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_586", + "extensionAttributes": [], + "code": "C67474", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Milliequivalent per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_220", + "extensionAttributes": [], + "name": "RC_C67473", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_587", + "extensionAttributes": [], + "code": "C67473", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Milliequivalent per Deciliter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_221", + "extensionAttributes": [], + "name": "RC_C64387", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_588", + "extensionAttributes": [], + "code": "C64387", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Millimole per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_232", + "extensionAttributes": [], + "standardCode": { + "id": "Code_589", + "extensionAttributes": [], + "code": "C64567", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Molarity Unit", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_179", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_233", + "extensionAttributes": [], + "standardCode": { + "id": "Code_590", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_180", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_222", + "extensionAttributes": [], + "name": "RC_C49487", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_591", + "extensionAttributes": [], + "code": "C49487", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "No", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_223", + "extensionAttributes": [], + "name": "RC_C49488", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_592", + "extensionAttributes": [], + "code": "C49488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Yes", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_234", + "extensionAttributes": [], + "standardCode": { + "id": "Code_593", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_235", + "extensionAttributes": [], + "standardCode": { + "id": "Code_594", + "extensionAttributes": [], + "code": "C64809", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "SODIUM", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_32", + "extensionAttributes": [], + "name": "Hemoglobin A1C Concentration in Blood", + "label": "Hemoglobin A1C Concentration in Blood", + "synonyms": [ + "Hemoglobin A1C", + "HBA1C", + "Glycosylated Hemoglobin A1C", + "Hemoglobin A1C Measurement" + ], + "reference": "/mdr/specializations/sdtm/packages/2025-04-01/datasetspecializations/HBA1CBLD", + "properties": [ + { + "id": "BiomedicalConceptProperty_181", + "extensionAttributes": [], + "name": "LBTESTCD", + "label": "LBTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_236", + "extensionAttributes": [], + "standardCode": { + "id": "Code_595", + "extensionAttributes": [], + "code": "C64849", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "HBA1C", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_182", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_237", + "extensionAttributes": [], + "standardCode": { + "id": "Code_596", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_183", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_224", + "extensionAttributes": [], + "name": "RC_C64783", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_597", + "extensionAttributes": [], + "code": "C64783", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Gram per Deciliter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_238", + "extensionAttributes": [], + "standardCode": { + "id": "Code_598", + "extensionAttributes": [], + "code": "No Concept Code", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "LBORRESU", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_184", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_239", + "extensionAttributes": [], + "standardCode": { + "id": "Code_599", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_185", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_225", + "extensionAttributes": [], + "name": "RC_C49487", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_600", + "extensionAttributes": [], + "code": "C49487", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "No", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_226", + "extensionAttributes": [], + "name": "RC_C49488", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_601", + "extensionAttributes": [], + "code": "C49488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Yes", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_240", + "extensionAttributes": [], + "standardCode": { + "id": "Code_602", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_241", + "extensionAttributes": [], + "standardCode": { + "id": "Code_603", + "extensionAttributes": [], + "code": "C64849", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "HBA1C", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_1", + "extensionAttributes": [], + "name": "Adverse Event Prespecified", + "label": "Adverse Event Prespecified", + "synonyms": ["Adverse Event", "Solicited Adverse Event"], + "reference": "/mdr/specializations/sdtm/packages/2025-04-01/datasetspecializations/AEPRESP", + "properties": [ + { + "id": "BiomedicalConceptProperty_1", + "extensionAttributes": [], + "name": "AETERM", + "label": "AETERM", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_25", + "extensionAttributes": [], + "standardCode": { + "id": "Code_161", + "extensionAttributes": [], + "code": "C78541", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Adverse Event Verbatim Description", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_2", + "extensionAttributes": [], + "name": "AEDECOD", + "label": "AEDECOD", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_26", + "extensionAttributes": [], + "standardCode": { + "id": "Code_162", + "extensionAttributes": [], + "code": "C83344", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Adverse Event Dictionary Derived Term", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_3", + "extensionAttributes": [], + "name": "AEHLGT", + "label": "AEHLGT", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_27", + "extensionAttributes": [], + "standardCode": { + "id": "Code_163", + "extensionAttributes": [], + "code": "No Concept Code", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "AEHLGT", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_4", + "extensionAttributes": [], + "name": "AEHLGTCD", + "label": "AEHLGTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "integer", + "responseCodes": [], + "code": { + "id": "AliasCode_28", + "extensionAttributes": [], + "standardCode": { + "id": "Code_164", + "extensionAttributes": [], + "code": "No Concept Code", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "AEHLGTCD", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_5", + "extensionAttributes": [], + "name": "AEPRESP", + "label": "AEPRESP", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_1", + "extensionAttributes": [], + "name": "RC_C49488", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_165", + "extensionAttributes": [], + "code": "C49488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Yes", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_29", + "extensionAttributes": [], + "standardCode": { + "id": "Code_166", + "extensionAttributes": [], + "code": "C87840", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Adverse Event Pre-specified", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_6", + "extensionAttributes": [], + "name": "AELOC", + "label": "AELOC", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_30", + "extensionAttributes": [], + "standardCode": { + "id": "Code_167", + "extensionAttributes": [], + "code": "C83205", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Adverse Event Location", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_7", + "extensionAttributes": [], + "name": "AESEV", + "label": "AESEV", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_31", + "extensionAttributes": [], + "standardCode": { + "id": "Code_168", + "extensionAttributes": [], + "code": "C53253", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Severity of Adverse Event", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_8", + "extensionAttributes": [], + "name": "AESER", + "label": "AESER", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_2", + "extensionAttributes": [], + "name": "RC_C49487", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_169", + "extensionAttributes": [], + "code": "C49487", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "No", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_3", + "extensionAttributes": [], + "name": "RC_C49488", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_170", + "extensionAttributes": [], + "code": "C49488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Yes", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_32", + "extensionAttributes": [], + "standardCode": { + "id": "Code_171", + "extensionAttributes": [], + "code": "C53252", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Seriousness of Adverse Event", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_9", + "extensionAttributes": [], + "name": "AEACN", + "label": "AEACN", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_33", + "extensionAttributes": [], + "standardCode": { + "id": "Code_172", + "extensionAttributes": [], + "code": "C83013", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Adverse Event Action Taken with Study Treatment", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_10", + "extensionAttributes": [], + "name": "AEACNOTH", + "label": "AEACNOTH", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_34", + "extensionAttributes": [], + "standardCode": { + "id": "Code_173", + "extensionAttributes": [], + "code": "C83109", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Other Actions taken in Response to Adverse Event", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_11", + "extensionAttributes": [], + "name": "AEREL", + "label": "AEREL", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_35", + "extensionAttributes": [], + "standardCode": { + "id": "Code_174", + "extensionAttributes": [], + "code": "C41358", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Adverse Event Attribution to Product or Procedure", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_12", + "extensionAttributes": [], + "name": "AERELNST", + "label": "AERELNST", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_36", + "extensionAttributes": [], + "standardCode": { + "id": "Code_175", + "extensionAttributes": [], + "code": "C83210", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Adverse Event Relationship to Non Study Treatment", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_13", + "extensionAttributes": [], + "name": "AEPATT", + "label": "AEPATT", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_37", + "extensionAttributes": [], + "standardCode": { + "id": "Code_176", + "extensionAttributes": [], + "code": "C83208", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Adverse Event Pattern", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_14", + "extensionAttributes": [], + "name": "AEOUT", + "label": "AEOUT", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38", + "extensionAttributes": [], + "standardCode": { + "id": "Code_177", + "extensionAttributes": [], + "code": "C49489", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Adverse Event Outcome", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_15", + "extensionAttributes": [], + "name": "AESCAN", + "label": "AESCAN", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_4", + "extensionAttributes": [], + "name": "RC_C49487", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_178", + "extensionAttributes": [], + "code": "C49487", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "No", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_5", + "extensionAttributes": [], + "name": "RC_C49488", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_179", + "extensionAttributes": [], + "code": "C49488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Yes", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_39", + "extensionAttributes": [], + "standardCode": { + "id": "Code_180", + "extensionAttributes": [], + "code": "C83211", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Adverse Event Involves Cancer", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_16", + "extensionAttributes": [], + "name": "AESCONG", + "label": "AESCONG", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_6", + "extensionAttributes": [], + "name": "RC_C49487", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_181", + "extensionAttributes": [], + "code": "C49487", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "No", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_7", + "extensionAttributes": [], + "name": "RC_C49488", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_182", + "extensionAttributes": [], + "code": "C49488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Yes", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_40", + "extensionAttributes": [], + "standardCode": { + "id": "Code_183", + "extensionAttributes": [], + "code": "C83117", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Adverse Event Seriousness Due to Congenital Anomaly", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_17", + "extensionAttributes": [], + "name": "AESDISAB", + "label": "AESDISAB", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_8", + "extensionAttributes": [], + "name": "RC_C49487", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_184", + "extensionAttributes": [], + "code": "C49487", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "No", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_9", + "extensionAttributes": [], + "name": "RC_C49488", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_185", + "extensionAttributes": [], + "code": "C49488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Yes", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_41", + "extensionAttributes": [], + "standardCode": { + "id": "Code_186", + "extensionAttributes": [], + "code": "C113380", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Disabling Adverse Event", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_18", + "extensionAttributes": [], + "name": "AESDTH", + "label": "AESDTH", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_10", + "extensionAttributes": [], + "name": "RC_C49487", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_187", + "extensionAttributes": [], + "code": "C49487", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "No", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_11", + "extensionAttributes": [], + "name": "RC_C49488", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_188", + "extensionAttributes": [], + "code": "C49488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Yes", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_42", + "extensionAttributes": [], + "standardCode": { + "id": "Code_189", + "extensionAttributes": [], + "code": "C48275", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Death Related to Adverse Event", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_19", + "extensionAttributes": [], + "name": "AESHOSP", + "label": "AESHOSP", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_12", + "extensionAttributes": [], + "name": "RC_C49487", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_190", + "extensionAttributes": [], + "code": "C49487", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "No", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_13", + "extensionAttributes": [], + "name": "RC_C49488", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_191", + "extensionAttributes": [], + "code": "C49488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Yes", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_43", + "extensionAttributes": [], + "standardCode": { + "id": "Code_192", + "extensionAttributes": [], + "code": "C83052", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Adverse Event associated with Hospitalization", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_20", + "extensionAttributes": [], + "name": "AESLIFE", + "label": "AESLIFE", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_14", + "extensionAttributes": [], + "name": "RC_C49487", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_193", + "extensionAttributes": [], + "code": "C49487", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "No", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_15", + "extensionAttributes": [], + "name": "RC_C49488", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_194", + "extensionAttributes": [], + "code": "C49488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Yes", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_44", + "extensionAttributes": [], + "standardCode": { + "id": "Code_195", + "extensionAttributes": [], + "code": "C84266", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Life Threatening Adverse Event", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_21", + "extensionAttributes": [], + "name": "AESOD", + "label": "AESOD", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_16", + "extensionAttributes": [], + "name": "RC_C49487", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_196", + "extensionAttributes": [], + "code": "C49487", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "No", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_17", + "extensionAttributes": [], + "name": "RC_C49488", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_197", + "extensionAttributes": [], + "code": "C49488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Yes", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_45", + "extensionAttributes": [], + "standardCode": { + "id": "Code_198", + "extensionAttributes": [], + "code": "C83214", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Adverse Event Occurred with Overdose", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_22", + "extensionAttributes": [], + "name": "AESMIE", + "label": "AESMIE", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_18", + "extensionAttributes": [], + "name": "RC_C49487", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_199", + "extensionAttributes": [], + "code": "C49487", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "No", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_19", + "extensionAttributes": [], + "name": "RC_C49488", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_200", + "extensionAttributes": [], + "code": "C49488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Yes", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_46", + "extensionAttributes": [], + "standardCode": { + "id": "Code_201", + "extensionAttributes": [], + "code": "C83053", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Adverse Event Associated with Serious Medical Event", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_23", + "extensionAttributes": [], + "name": "AECONTRT", + "label": "AECONTRT", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_20", + "extensionAttributes": [], + "name": "RC_C49487", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_202", + "extensionAttributes": [], + "code": "C49487", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "No", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_21", + "extensionAttributes": [], + "name": "RC_C49488", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_203", + "extensionAttributes": [], + "code": "C49488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Yes", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_47", + "extensionAttributes": [], + "standardCode": { + "id": "Code_204", + "extensionAttributes": [], + "code": "C83199", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Adverse Event Concomitant Treatment", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_24", + "extensionAttributes": [], + "name": "AETOXGR", + "label": "AETOXGR", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_48", + "extensionAttributes": [], + "standardCode": { + "id": "Code_205", + "extensionAttributes": [], + "code": "C78605", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Adverse Event Toxicity Grade", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_25", + "extensionAttributes": [], + "name": "AESTDTC", + "label": "AESTDTC", + "isRequired": true, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_49", + "extensionAttributes": [], + "standardCode": { + "id": "Code_206", + "extensionAttributes": [], + "code": "C83215", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Adverse Event Start Date Time", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_26", + "extensionAttributes": [], + "name": "AEENDTC", + "label": "AEENDTC", + "isRequired": true, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_50", + "extensionAttributes": [], + "standardCode": { + "id": "Code_207", + "extensionAttributes": [], + "code": "C83201", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Adverse Event End Date Time", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_51", + "extensionAttributes": [], + "standardCode": { + "id": "Code_208", + "extensionAttributes": [], + "code": "C179175", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Solicited Adverse Event", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_2", + "extensionAttributes": [], + "name": "Systolic Blood Pressure", + "label": "Systolic Blood Pressure", + "synonyms": ["SYSBP", "Systolic Blood Pressure"], + "reference": "/mdr/specializations/sdtm/packages/2025-04-01/datasetspecializations/SYSBP", + "properties": [ + { + "id": "BiomedicalConceptProperty_27", + "extensionAttributes": [], + "name": "VSTESTCD", + "label": "VSTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_52", + "extensionAttributes": [], + "standardCode": { + "id": "Code_209", + "extensionAttributes": [], + "code": "C25298", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "SYSBP", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_28", + "extensionAttributes": [], + "name": "VSORRES", + "label": "VSORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "integer", + "responseCodes": [], + "code": { + "id": "AliasCode_53", + "extensionAttributes": [], + "standardCode": { + "id": "Code_210", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_29", + "extensionAttributes": [], + "name": "VSORRESU", + "label": "VSORRESU", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_54", + "extensionAttributes": [], + "standardCode": { + "id": "Code_211", + "extensionAttributes": [], + "code": "C49669", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Unit of Pressure", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_30", + "extensionAttributes": [], + "name": "VSPOS", + "label": "VSPOS", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_22", + "extensionAttributes": [], + "name": "RC_C62165", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_212", + "extensionAttributes": [], + "code": "C62165", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Prone Position", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_23", + "extensionAttributes": [], + "name": "RC_C111310", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_213", + "extensionAttributes": [], + "code": "C111310", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Semi-Recumbent", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_24", + "extensionAttributes": [], + "name": "RC_C62122", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_214", + "extensionAttributes": [], + "code": "C62122", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Sitting", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_25", + "extensionAttributes": [], + "name": "RC_C62166", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_215", + "extensionAttributes": [], + "code": "C62166", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Standing", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_26", + "extensionAttributes": [], + "name": "RC_C62167", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_216", + "extensionAttributes": [], + "code": "C62167", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Supine Position", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_55", + "extensionAttributes": [], + "standardCode": { + "id": "Code_217", + "extensionAttributes": [], + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Body Position", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_31", + "extensionAttributes": [], + "name": "VSLOC", + "label": "VSLOC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_27", + "extensionAttributes": [], + "name": "RC_C12681", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_218", + "extensionAttributes": [], + "code": "C12681", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Brachial Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_28", + "extensionAttributes": [], + "name": "RC_C12687", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_219", + "extensionAttributes": [], + "code": "C12687", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Common Carotid Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_29", + "extensionAttributes": [], + "name": "RC_C32478", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_220", + "extensionAttributes": [], + "code": "C32478", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Dorsalis Pedis Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_30", + "extensionAttributes": [], + "name": "RC_C12715", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_221", + "extensionAttributes": [], + "code": "C12715", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Femoral Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_31", + "extensionAttributes": [], + "name": "RC_C32608", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_222", + "extensionAttributes": [], + "code": "C32608", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Finger", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_32", + "extensionAttributes": [], + "name": "RC_C12838", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_223", + "extensionAttributes": [], + "code": "C12838", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Radial Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_56", + "extensionAttributes": [], + "standardCode": { + "id": "Code_224", + "extensionAttributes": [], + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Anatomic Site", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_32", + "extensionAttributes": [], + "name": "VSLAT", + "label": "VSLAT", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_33", + "extensionAttributes": [], + "name": "RC_C25229", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_225", + "extensionAttributes": [], + "code": "C25229", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Left", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_34", + "extensionAttributes": [], + "name": "RC_C25228", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_226", + "extensionAttributes": [], + "code": "C25228", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Right", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_57", + "extensionAttributes": [], + "standardCode": { + "id": "Code_227", + "extensionAttributes": [], + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Laterality", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_33", + "extensionAttributes": [], + "name": "VSDTC", + "label": "VSDTC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_58", + "extensionAttributes": [], + "standardCode": { + "id": "Code_228", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_59", + "extensionAttributes": [], + "standardCode": { + "id": "Code_229", + "extensionAttributes": [], + "code": "C25298", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "SYSBP", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_3", + "extensionAttributes": [], + "name": "Diastolic Blood Pressure", + "label": "Diastolic Blood Pressure", + "synonyms": ["DIABP", "Diastolic Blood Pressure"], + "reference": "/mdr/specializations/sdtm/packages/2025-04-01/datasetspecializations/DIABP", + "properties": [ + { + "id": "BiomedicalConceptProperty_34", + "extensionAttributes": [], + "name": "VSTESTCD", + "label": "VSTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_60", + "extensionAttributes": [], + "standardCode": { + "id": "Code_230", + "extensionAttributes": [], + "code": "C25299", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "DIABP", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_35", + "extensionAttributes": [], + "name": "VSORRES", + "label": "VSORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "integer", + "responseCodes": [], + "code": { + "id": "AliasCode_61", + "extensionAttributes": [], + "standardCode": { + "id": "Code_231", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_36", + "extensionAttributes": [], + "name": "VSORRESU", + "label": "VSORRESU", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_62", + "extensionAttributes": [], + "standardCode": { + "id": "Code_232", + "extensionAttributes": [], + "code": "C49669", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Unit of Pressure", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_37", + "extensionAttributes": [], + "name": "VSPOS", + "label": "VSPOS", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_35", + "extensionAttributes": [], + "name": "RC_C62165", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_233", + "extensionAttributes": [], + "code": "C62165", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Prone Position", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_36", + "extensionAttributes": [], + "name": "RC_C111310", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_234", + "extensionAttributes": [], + "code": "C111310", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Semi-Recumbent", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_37", + "extensionAttributes": [], + "name": "RC_C62122", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_235", + "extensionAttributes": [], + "code": "C62122", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Sitting", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_38", + "extensionAttributes": [], + "name": "RC_C62166", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_236", + "extensionAttributes": [], + "code": "C62166", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Standing", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_39", + "extensionAttributes": [], + "name": "RC_C62167", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_237", + "extensionAttributes": [], + "code": "C62167", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Supine Position", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_63", + "extensionAttributes": [], + "standardCode": { + "id": "Code_238", + "extensionAttributes": [], + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Body Position", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_38", + "extensionAttributes": [], + "name": "VSLOC", + "label": "VSLOC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_40", + "extensionAttributes": [], + "name": "RC_C12681", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_239", + "extensionAttributes": [], + "code": "C12681", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Brachial Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_41", + "extensionAttributes": [], + "name": "RC_C12687", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_240", + "extensionAttributes": [], + "code": "C12687", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Common Carotid Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_42", + "extensionAttributes": [], + "name": "RC_C32478", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_241", + "extensionAttributes": [], + "code": "C32478", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Dorsalis Pedis Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_43", + "extensionAttributes": [], + "name": "RC_C12715", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_242", + "extensionAttributes": [], + "code": "C12715", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Femoral Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_44", + "extensionAttributes": [], + "name": "RC_C32608", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_243", + "extensionAttributes": [], + "code": "C32608", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Finger", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_45", + "extensionAttributes": [], + "name": "RC_C12838", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_244", + "extensionAttributes": [], + "code": "C12838", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Radial Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_64", + "extensionAttributes": [], + "standardCode": { + "id": "Code_245", + "extensionAttributes": [], + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Anatomic Site", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_39", + "extensionAttributes": [], + "name": "VSLAT", + "label": "VSLAT", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_46", + "extensionAttributes": [], + "name": "RC_C25229", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_246", + "extensionAttributes": [], + "code": "C25229", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Left", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_47", + "extensionAttributes": [], + "name": "RC_C25228", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_247", + "extensionAttributes": [], + "code": "C25228", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Right", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_65", + "extensionAttributes": [], + "standardCode": { + "id": "Code_248", + "extensionAttributes": [], + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Laterality", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_40", + "extensionAttributes": [], + "name": "VSDTC", + "label": "VSDTC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_66", + "extensionAttributes": [], + "standardCode": { + "id": "Code_249", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_67", + "extensionAttributes": [], + "standardCode": { + "id": "Code_250", + "extensionAttributes": [], + "code": "C25299", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "DIABP", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_4", + "extensionAttributes": [], + "name": "Temperature", + "label": "Temperature", + "synonyms": ["Temperature", "Body Temperature"], + "reference": "/mdr/specializations/sdtm/packages/2024-12-16/datasetspecializations/TEMP", + "properties": [ + { + "id": "BiomedicalConceptProperty_41", + "extensionAttributes": [], + "name": "VSTESTCD", + "label": "VSTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_68", + "extensionAttributes": [], + "standardCode": { + "id": "Code_251", + "extensionAttributes": [], + "code": "C174446", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "TEMP", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_42", + "extensionAttributes": [], + "name": "VSORRES", + "label": "VSORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_69", + "extensionAttributes": [], + "standardCode": { + "id": "Code_252", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_43", + "extensionAttributes": [], + "name": "VSORRESU", + "label": "VSORRESU", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_48", + "extensionAttributes": [], + "name": "RC_C42559", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_253", + "extensionAttributes": [], + "code": "C42559", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Degree Celsius", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_49", + "extensionAttributes": [], + "name": "RC_C44277", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_254", + "extensionAttributes": [], + "code": "C44277", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Degree Fahrenheit", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_50", + "extensionAttributes": [], + "name": "RC_C42537", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_255", + "extensionAttributes": [], + "code": "C42537", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Kelvin", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_70", + "extensionAttributes": [], + "standardCode": { + "id": "Code_256", + "extensionAttributes": [], + "code": "C44276", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Unit of Temperature", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_44", + "extensionAttributes": [], + "name": "VSLOC", + "label": "VSLOC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_51", + "extensionAttributes": [], + "name": "RC_C12674", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_257", + "extensionAttributes": [], + "code": "C12674", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Axilla", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_52", + "extensionAttributes": [], + "name": "RC_C12394", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_258", + "extensionAttributes": [], + "code": "C12394", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Ear", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_53", + "extensionAttributes": [], + "name": "RC_C89803", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_259", + "extensionAttributes": [], + "code": "C89803", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Forehead", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_54", + "extensionAttributes": [], + "name": "RC_C12421", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_260", + "extensionAttributes": [], + "code": "C12421", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Oral Cavity", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_55", + "extensionAttributes": [], + "name": "RC_C12390", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_261", + "extensionAttributes": [], + "code": "C12390", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Rectum", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_71", + "extensionAttributes": [], + "standardCode": { + "id": "Code_262", + "extensionAttributes": [], + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Anatomic Site", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_45", + "extensionAttributes": [], + "name": "VSDTC", + "label": "VSDTC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_72", + "extensionAttributes": [], + "standardCode": { + "id": "Code_263", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_73", + "extensionAttributes": [], + "standardCode": { + "id": "Code_264", + "extensionAttributes": [], + "code": "C174446", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "TEMP", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_5", + "extensionAttributes": [], + "name": "Weight", + "label": "Weight", + "synonyms": ["WEIGHT", "Body Weight"], + "reference": "/mdr/specializations/sdtm/packages/2024-12-16/datasetspecializations/WEIGHT", + "properties": [ + { + "id": "BiomedicalConceptProperty_46", + "extensionAttributes": [], + "name": "VSTESTCD", + "label": "VSTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_74", + "extensionAttributes": [], + "standardCode": { + "id": "Code_265", + "extensionAttributes": [], + "code": "C25208", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "WEIGHT", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_47", + "extensionAttributes": [], + "name": "VSORRES", + "label": "VSORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_75", + "extensionAttributes": [], + "standardCode": { + "id": "Code_266", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_48", + "extensionAttributes": [], + "name": "VSORRESU", + "label": "VSORRESU", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_56", + "extensionAttributes": [], + "name": "RC_C48531", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_267", + "extensionAttributes": [], + "code": "C48531", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Pound", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_57", + "extensionAttributes": [], + "name": "RC_C48155", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_268", + "extensionAttributes": [], + "code": "C48155", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Gram", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_58", + "extensionAttributes": [], + "name": "RC_C28252", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_269", + "extensionAttributes": [], + "code": "C28252", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Kilogram", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_76", + "extensionAttributes": [], + "standardCode": { + "id": "Code_270", + "extensionAttributes": [], + "code": "C48208", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Unit of Weight", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_49", + "extensionAttributes": [], + "name": "VSDTC", + "label": "VSDTC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_77", + "extensionAttributes": [], + "standardCode": { + "id": "Code_271", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_78", + "extensionAttributes": [], + "standardCode": { + "id": "Code_272", + "extensionAttributes": [], + "code": "C25208", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "WEIGHT", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_6", + "extensionAttributes": [], + "name": "Height", + "label": "Height", + "synonyms": ["HEIGHT", "Body Height"], + "reference": "/mdr/specializations/sdtm/packages/2024-12-16/datasetspecializations/HEIGHT", + "properties": [ + { + "id": "BiomedicalConceptProperty_50", + "extensionAttributes": [], + "name": "VSTESTCD", + "label": "VSTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_79", + "extensionAttributes": [], + "standardCode": { + "id": "Code_273", + "extensionAttributes": [], + "code": "C25347", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "HEIGHT", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_51", + "extensionAttributes": [], + "name": "VSORRES", + "label": "VSORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_80", + "extensionAttributes": [], + "standardCode": { + "id": "Code_274", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_52", + "extensionAttributes": [], + "name": "VSORRESU", + "label": "VSORRESU", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_59", + "extensionAttributes": [], + "name": "RC_C49668", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_275", + "extensionAttributes": [], + "code": "C49668", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Centimeter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_60", + "extensionAttributes": [], + "name": "RC_C48500", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_276", + "extensionAttributes": [], + "code": "C48500", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Inch", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_61", + "extensionAttributes": [], + "name": "RC_C41139", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_277", + "extensionAttributes": [], + "code": "C41139", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Meter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_81", + "extensionAttributes": [], + "standardCode": { + "id": "Code_278", + "extensionAttributes": [], + "code": "C168688", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Unit of Height", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_53", + "extensionAttributes": [], + "name": "VSDTC", + "label": "VSDTC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_82", + "extensionAttributes": [], + "standardCode": { + "id": "Code_279", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_83", + "extensionAttributes": [], + "standardCode": { + "id": "Code_280", + "extensionAttributes": [], + "code": "C25347", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "HEIGHT", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_7", + "extensionAttributes": [], + "name": "Alanine Aminotransferase Concentration in Serum/Plasma", + "label": "Alanine Aminotransferase Concentration in Serum/Plasma", + "synonyms": ["ALT", "SGPT", "Alanine Aminotransferase Measurement"], + "reference": "/mdr/specializations/sdtm/packages/2025-04-01/datasetspecializations/ALTSERPL", + "properties": [ + { + "id": "BiomedicalConceptProperty_54", + "extensionAttributes": [], + "name": "LBTESTCD", + "label": "LBTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_84", + "extensionAttributes": [], + "standardCode": { + "id": "Code_281", + "extensionAttributes": [], + "code": "C64433", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "ALT", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_55", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_85", + "extensionAttributes": [], + "standardCode": { + "id": "Code_282", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_56", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_62", + "extensionAttributes": [], + "name": "RC_C67456", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_283", + "extensionAttributes": [], + "code": "C67456", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Unit per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_63", + "extensionAttributes": [], + "name": "RC_C67397", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_284", + "extensionAttributes": [], + "code": "C67397", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Microkatal per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_64", + "extensionAttributes": [], + "name": "RC_C67376", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_285", + "extensionAttributes": [], + "code": "C67376", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "International Unit per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_65", + "extensionAttributes": [], + "name": "RC_C70510", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_286", + "extensionAttributes": [], + "code": "C70510", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Nanokatal per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_86", + "extensionAttributes": [], + "standardCode": { + "id": "Code_287", + "extensionAttributes": [], + "code": "C67365", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Unit of Catalytic Activity Concentration", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_57", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_87", + "extensionAttributes": [], + "standardCode": { + "id": "Code_288", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_58", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_66", + "extensionAttributes": [], + "name": "RC_C49487", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_289", + "extensionAttributes": [], + "code": "C49487", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "No", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_67", + "extensionAttributes": [], + "name": "RC_C49488", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_290", + "extensionAttributes": [], + "code": "C49488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Yes", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_88", + "extensionAttributes": [], + "standardCode": { + "id": "Code_291", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_89", + "extensionAttributes": [], + "standardCode": { + "id": "Code_292", + "extensionAttributes": [], + "code": "C64433", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "ALT", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_8", + "extensionAttributes": [], + "name": "Albumin Presence in Urine", + "label": "Albumin Presence in Urine", + "synonyms": ["Albumin", "Albumin Measurement"], + "reference": "/mdr/specializations/sdtm/packages/2025-04-01/datasetspecializations/ALBURINPRES", + "properties": [ + { + "id": "BiomedicalConceptProperty_59", + "extensionAttributes": [], + "name": "LBTESTCD", + "label": "LBTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_90", + "extensionAttributes": [], + "standardCode": { + "id": "Code_293", + "extensionAttributes": [], + "code": "C64431", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "ALB", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_60", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_91", + "extensionAttributes": [], + "standardCode": { + "id": "Code_294", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_61", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_92", + "extensionAttributes": [], + "standardCode": { + "id": "Code_295", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_62", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_68", + "extensionAttributes": [], + "name": "RC_C49487", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_296", + "extensionAttributes": [], + "code": "C49487", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "No", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_69", + "extensionAttributes": [], + "name": "RC_C49488", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_297", + "extensionAttributes": [], + "code": "C49488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Yes", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_93", + "extensionAttributes": [], + "standardCode": { + "id": "Code_298", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_94", + "extensionAttributes": [], + "standardCode": { + "id": "Code_299", + "extensionAttributes": [], + "code": "C64431", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "ALB", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_9", + "extensionAttributes": [], + "name": "Alkaline Phosphatase Concentration in Serum/Plasma", + "label": "Alkaline Phosphatase Concentration in Serum/Plasma", + "synonyms": [ + "Alkaline Phosphatase", + "Alkaline Phosphatase Measurement" + ], + "reference": "/mdr/specializations/sdtm/packages/2025-04-01/datasetspecializations/ALPSERPL", + "properties": [ + { + "id": "BiomedicalConceptProperty_63", + "extensionAttributes": [], + "name": "LBTESTCD", + "label": "LBTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_95", + "extensionAttributes": [], + "standardCode": { + "id": "Code_300", + "extensionAttributes": [], + "code": "C64432", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "ALP", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_64", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_96", + "extensionAttributes": [], + "standardCode": { + "id": "Code_301", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_65", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_70", + "extensionAttributes": [], + "name": "RC_C67456", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_302", + "extensionAttributes": [], + "code": "C67456", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Unit per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_71", + "extensionAttributes": [], + "name": "RC_C67397", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_303", + "extensionAttributes": [], + "code": "C67397", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Microkatal per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_72", + "extensionAttributes": [], + "name": "RC_C67376", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_304", + "extensionAttributes": [], + "code": "C67376", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "International Unit per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_97", + "extensionAttributes": [], + "standardCode": { + "id": "Code_305", + "extensionAttributes": [], + "code": "C67365", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Unit of Catalytic Activity Concentration", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_66", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_98", + "extensionAttributes": [], + "standardCode": { + "id": "Code_306", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_67", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_73", + "extensionAttributes": [], + "name": "RC_C49487", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_307", + "extensionAttributes": [], + "code": "C49487", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "No", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_74", + "extensionAttributes": [], + "name": "RC_C49488", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_308", + "extensionAttributes": [], + "code": "C49488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Yes", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_99", + "extensionAttributes": [], + "standardCode": { + "id": "Code_309", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_100", + "extensionAttributes": [], + "standardCode": { + "id": "Code_310", + "extensionAttributes": [], + "code": "C64432", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "ALP", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_10", + "extensionAttributes": [], + "name": "Aspartate Aminotransferase in Serum/Plasma", + "label": "Aspartate Aminotransferase in Serum/Plasma", + "synonyms": [ + "AST", + "SGOT", + "Aspartate Aminotransferase Measurement" + ], + "reference": "/mdr/specializations/sdtm/packages/2025-04-01/datasetspecializations/ASTSERPL", + "properties": [ + { + "id": "BiomedicalConceptProperty_68", + "extensionAttributes": [], + "name": "LBTESTCD", + "label": "LBTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_101", + "extensionAttributes": [], + "standardCode": { + "id": "Code_311", + "extensionAttributes": [], + "code": "C64467", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "AST", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_69", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_102", + "extensionAttributes": [], + "standardCode": { + "id": "Code_312", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_70", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_75", + "extensionAttributes": [], + "name": "RC_C67456", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_313", + "extensionAttributes": [], + "code": "C67456", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Unit per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_76", + "extensionAttributes": [], + "name": "RC_C67397", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_314", + "extensionAttributes": [], + "code": "C67397", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Microkatal per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_77", + "extensionAttributes": [], + "name": "RC_C67376", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_315", + "extensionAttributes": [], + "code": "C67376", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "International Unit per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_103", + "extensionAttributes": [], + "standardCode": { + "id": "Code_316", + "extensionAttributes": [], + "code": "C67365", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Unit of Catalytic Activity Concentration", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_71", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_104", + "extensionAttributes": [], + "standardCode": { + "id": "Code_317", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_72", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_78", + "extensionAttributes": [], + "name": "RC_C49487", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_318", + "extensionAttributes": [], + "code": "C49487", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "No", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_79", + "extensionAttributes": [], + "name": "RC_C49488", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_319", + "extensionAttributes": [], + "code": "C49488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Yes", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_105", + "extensionAttributes": [], + "standardCode": { + "id": "Code_320", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_106", + "extensionAttributes": [], + "standardCode": { + "id": "Code_321", + "extensionAttributes": [], + "code": "C64467", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "AST", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_11", + "extensionAttributes": [], + "name": "Creatinine Concentration in Urine", + "label": "Creatinine Concentration in Urine", + "synonyms": ["Creatinine", "Creatinine Measurement"], + "reference": "/mdr/specializations/sdtm/packages/2025-04-01/datasetspecializations/CREATURIN", + "properties": [ + { + "id": "BiomedicalConceptProperty_73", + "extensionAttributes": [], + "name": "LBTESTCD", + "label": "LBTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_107", + "extensionAttributes": [], + "standardCode": { + "id": "Code_322", + "extensionAttributes": [], + "code": "C64547", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "CREAT", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_74", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_108", + "extensionAttributes": [], + "standardCode": { + "id": "Code_323", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_75", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_80", + "extensionAttributes": [], + "name": "RC_C67015", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_324", + "extensionAttributes": [], + "code": "C67015", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Milligram per Deciliter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_81", + "extensionAttributes": [], + "name": "RC_C64572", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_325", + "extensionAttributes": [], + "code": "C64572", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Microgram per Milliliter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_82", + "extensionAttributes": [], + "name": "RC_C64387", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_326", + "extensionAttributes": [], + "code": "C64387", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Millimole per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_83", + "extensionAttributes": [], + "name": "RC_C48508", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_327", + "extensionAttributes": [], + "code": "C48508", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Micromole per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_109", + "extensionAttributes": [], + "standardCode": { + "id": "Code_328", + "extensionAttributes": [], + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Unit of Concentration", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_76", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_110", + "extensionAttributes": [], + "standardCode": { + "id": "Code_329", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_77", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_84", + "extensionAttributes": [], + "name": "RC_C49487", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_330", + "extensionAttributes": [], + "code": "C49487", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "No", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_85", + "extensionAttributes": [], + "name": "RC_C49488", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_331", + "extensionAttributes": [], + "code": "C49488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Yes", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_111", + "extensionAttributes": [], + "standardCode": { + "id": "Code_332", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_112", + "extensionAttributes": [], + "standardCode": { + "id": "Code_333", + "extensionAttributes": [], + "code": "C64547", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "CREAT", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_12", + "extensionAttributes": [], + "name": "Potassium Concentration in Urine", + "label": "Potassium Concentration in Urine", + "synonyms": ["Potassium", "K", "Potassium Measurement"], + "reference": "/mdr/specializations/sdtm/packages/2025-04-01/datasetspecializations/KURIN", + "properties": [ + { + "id": "BiomedicalConceptProperty_78", + "extensionAttributes": [], + "name": "LBTESTCD", + "label": "LBTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_113", + "extensionAttributes": [], + "standardCode": { + "id": "Code_334", + "extensionAttributes": [], + "code": "C64853", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "K", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_79", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_114", + "extensionAttributes": [], + "standardCode": { + "id": "Code_335", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_80", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_86", + "extensionAttributes": [], + "name": "RC_C67474", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_336", + "extensionAttributes": [], + "code": "C67474", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Milliequivalent per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_87", + "extensionAttributes": [], + "name": "RC_C67473", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_337", + "extensionAttributes": [], + "code": "C67473", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Milliequivalent per Deciliter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_88", + "extensionAttributes": [], + "name": "RC_C64387", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_338", + "extensionAttributes": [], + "code": "C64387", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Millimole per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_115", + "extensionAttributes": [], + "standardCode": { + "id": "Code_339", + "extensionAttributes": [], + "code": "C64567", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Molarity Unit", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_81", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_116", + "extensionAttributes": [], + "standardCode": { + "id": "Code_340", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_82", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_89", + "extensionAttributes": [], + "name": "RC_C49487", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_341", + "extensionAttributes": [], + "code": "C49487", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "No", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_90", + "extensionAttributes": [], + "name": "RC_C49488", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_342", + "extensionAttributes": [], + "code": "C49488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Yes", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_117", + "extensionAttributes": [], + "standardCode": { + "id": "Code_343", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_118", + "extensionAttributes": [], + "standardCode": { + "id": "Code_344", + "extensionAttributes": [], + "code": "C64853", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "K", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_13", + "extensionAttributes": [], + "name": "Sodium Concentration in Urine", + "label": "Sodium Concentration in Urine", + "synonyms": ["Sodium", "NA", "Sodium Measurement"], + "reference": "/mdr/specializations/sdtm/packages/2025-04-01/datasetspecializations/SODIUMURIN", + "properties": [ + { + "id": "BiomedicalConceptProperty_83", + "extensionAttributes": [], + "name": "LBTESTCD", + "label": "LBTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_119", + "extensionAttributes": [], + "standardCode": { + "id": "Code_345", + "extensionAttributes": [], + "code": "C64809", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "SODIUM", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_84", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_120", + "extensionAttributes": [], + "standardCode": { + "id": "Code_346", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_85", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_91", + "extensionAttributes": [], + "name": "RC_C67474", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_347", + "extensionAttributes": [], + "code": "C67474", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Milliequivalent per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_92", + "extensionAttributes": [], + "name": "RC_C67473", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_348", + "extensionAttributes": [], + "code": "C67473", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Milliequivalent per Deciliter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_93", + "extensionAttributes": [], + "name": "RC_C64387", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_349", + "extensionAttributes": [], + "code": "C64387", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Millimole per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_121", + "extensionAttributes": [], + "standardCode": { + "id": "Code_350", + "extensionAttributes": [], + "code": "C64567", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Molarity Unit", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_86", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_122", + "extensionAttributes": [], + "standardCode": { + "id": "Code_351", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_87", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_94", + "extensionAttributes": [], + "name": "RC_C49487", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_352", + "extensionAttributes": [], + "code": "C49487", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "No", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_95", + "extensionAttributes": [], + "name": "RC_C49488", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_353", + "extensionAttributes": [], + "code": "C49488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Yes", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_123", + "extensionAttributes": [], + "standardCode": { + "id": "Code_354", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_124", + "extensionAttributes": [], + "standardCode": { + "id": "Code_355", + "extensionAttributes": [], + "code": "C64809", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "SODIUM", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_14", + "extensionAttributes": [], + "name": "Systolic Blood Pressure", + "label": "Systolic Blood Pressure", + "synonyms": ["SYSBP", "Systolic Blood Pressure"], + "reference": "/mdr/specializations/sdtm/packages/2025-04-01/datasetspecializations/SYSBP", + "properties": [ + { + "id": "BiomedicalConceptProperty_88", + "extensionAttributes": [], + "name": "VSTESTCD", + "label": "VSTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_125", + "extensionAttributes": [], + "standardCode": { + "id": "Code_356", + "extensionAttributes": [], + "code": "C25298", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "SYSBP", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_89", + "extensionAttributes": [], + "name": "VSORRES", + "label": "VSORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "integer", + "responseCodes": [], + "code": { + "id": "AliasCode_126", + "extensionAttributes": [], + "standardCode": { + "id": "Code_357", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_90", + "extensionAttributes": [], + "name": "VSORRESU", + "label": "VSORRESU", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_127", + "extensionAttributes": [], + "standardCode": { + "id": "Code_358", + "extensionAttributes": [], + "code": "C49669", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Unit of Pressure", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_91", + "extensionAttributes": [], + "name": "VSPOS", + "label": "VSPOS", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_96", + "extensionAttributes": [], + "name": "RC_C62165", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_359", + "extensionAttributes": [], + "code": "C62165", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Prone Position", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_97", + "extensionAttributes": [], + "name": "RC_C111310", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_360", + "extensionAttributes": [], + "code": "C111310", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Semi-Recumbent", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_98", + "extensionAttributes": [], + "name": "RC_C62122", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_361", + "extensionAttributes": [], + "code": "C62122", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Sitting", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_99", + "extensionAttributes": [], + "name": "RC_C62166", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_362", + "extensionAttributes": [], + "code": "C62166", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Standing", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_100", + "extensionAttributes": [], + "name": "RC_C62167", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_363", + "extensionAttributes": [], + "code": "C62167", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Supine Position", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_128", + "extensionAttributes": [], + "standardCode": { + "id": "Code_364", + "extensionAttributes": [], + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Body Position", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_92", + "extensionAttributes": [], + "name": "VSLOC", + "label": "VSLOC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_101", + "extensionAttributes": [], + "name": "RC_C12681", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_365", + "extensionAttributes": [], + "code": "C12681", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Brachial Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_102", + "extensionAttributes": [], + "name": "RC_C12687", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_366", + "extensionAttributes": [], + "code": "C12687", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Common Carotid Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_103", + "extensionAttributes": [], + "name": "RC_C32478", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_367", + "extensionAttributes": [], + "code": "C32478", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Dorsalis Pedis Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_104", + "extensionAttributes": [], + "name": "RC_C12715", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_368", + "extensionAttributes": [], + "code": "C12715", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Femoral Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_105", + "extensionAttributes": [], + "name": "RC_C32608", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_369", + "extensionAttributes": [], + "code": "C32608", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Finger", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_106", + "extensionAttributes": [], + "name": "RC_C12838", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_370", + "extensionAttributes": [], + "code": "C12838", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Radial Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_129", + "extensionAttributes": [], + "standardCode": { + "id": "Code_371", + "extensionAttributes": [], + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Anatomic Site", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_93", + "extensionAttributes": [], + "name": "VSLAT", + "label": "VSLAT", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_107", + "extensionAttributes": [], + "name": "RC_C25229", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_372", + "extensionAttributes": [], + "code": "C25229", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Left", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_108", + "extensionAttributes": [], + "name": "RC_C25228", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_373", + "extensionAttributes": [], + "code": "C25228", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Right", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_130", + "extensionAttributes": [], + "standardCode": { + "id": "Code_374", + "extensionAttributes": [], + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Laterality", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_94", + "extensionAttributes": [], + "name": "VSDTC", + "label": "VSDTC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_131", + "extensionAttributes": [], + "standardCode": { + "id": "Code_375", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_132", + "extensionAttributes": [], + "standardCode": { + "id": "Code_376", + "extensionAttributes": [], + "code": "C25298", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "SYSBP", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_15", + "extensionAttributes": [], + "name": "Diastolic Blood Pressure", + "label": "Diastolic Blood Pressure", + "synonyms": ["DIABP", "Diastolic Blood Pressure"], + "reference": "/mdr/specializations/sdtm/packages/2025-04-01/datasetspecializations/DIABP", + "properties": [ + { + "id": "BiomedicalConceptProperty_95", + "extensionAttributes": [], + "name": "VSTESTCD", + "label": "VSTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_133", + "extensionAttributes": [], + "standardCode": { + "id": "Code_377", + "extensionAttributes": [], + "code": "C25299", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "DIABP", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_96", + "extensionAttributes": [], + "name": "VSORRES", + "label": "VSORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "integer", + "responseCodes": [], + "code": { + "id": "AliasCode_134", + "extensionAttributes": [], + "standardCode": { + "id": "Code_378", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_97", + "extensionAttributes": [], + "name": "VSORRESU", + "label": "VSORRESU", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_135", + "extensionAttributes": [], + "standardCode": { + "id": "Code_379", + "extensionAttributes": [], + "code": "C49669", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Unit of Pressure", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_98", + "extensionAttributes": [], + "name": "VSPOS", + "label": "VSPOS", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_109", + "extensionAttributes": [], + "name": "RC_C62165", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_380", + "extensionAttributes": [], + "code": "C62165", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Prone Position", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_110", + "extensionAttributes": [], + "name": "RC_C111310", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_381", + "extensionAttributes": [], + "code": "C111310", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Semi-Recumbent", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_111", + "extensionAttributes": [], + "name": "RC_C62122", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_382", + "extensionAttributes": [], + "code": "C62122", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Sitting", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_112", + "extensionAttributes": [], + "name": "RC_C62166", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_383", + "extensionAttributes": [], + "code": "C62166", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Standing", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_113", + "extensionAttributes": [], + "name": "RC_C62167", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_384", + "extensionAttributes": [], + "code": "C62167", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Supine Position", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_136", + "extensionAttributes": [], + "standardCode": { + "id": "Code_385", + "extensionAttributes": [], + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Body Position", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_99", + "extensionAttributes": [], + "name": "VSLOC", + "label": "VSLOC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_114", + "extensionAttributes": [], + "name": "RC_C12681", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_386", + "extensionAttributes": [], + "code": "C12681", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Brachial Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_115", + "extensionAttributes": [], + "name": "RC_C12687", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_387", + "extensionAttributes": [], + "code": "C12687", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Common Carotid Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_116", + "extensionAttributes": [], + "name": "RC_C32478", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_388", + "extensionAttributes": [], + "code": "C32478", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Dorsalis Pedis Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_117", + "extensionAttributes": [], + "name": "RC_C12715", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_389", + "extensionAttributes": [], + "code": "C12715", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Femoral Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_118", + "extensionAttributes": [], + "name": "RC_C32608", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_390", + "extensionAttributes": [], + "code": "C32608", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Finger", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_119", + "extensionAttributes": [], + "name": "RC_C12838", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_391", + "extensionAttributes": [], + "code": "C12838", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Radial Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_137", + "extensionAttributes": [], + "standardCode": { + "id": "Code_392", + "extensionAttributes": [], + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Anatomic Site", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_100", + "extensionAttributes": [], + "name": "VSLAT", + "label": "VSLAT", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_120", + "extensionAttributes": [], + "name": "RC_C25229", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_393", + "extensionAttributes": [], + "code": "C25229", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Left", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_121", + "extensionAttributes": [], + "name": "RC_C25228", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_394", + "extensionAttributes": [], + "code": "C25228", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Right", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_138", + "extensionAttributes": [], + "standardCode": { + "id": "Code_395", + "extensionAttributes": [], + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Laterality", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_101", + "extensionAttributes": [], + "name": "VSDTC", + "label": "VSDTC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_139", + "extensionAttributes": [], + "standardCode": { + "id": "Code_396", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_140", + "extensionAttributes": [], + "standardCode": { + "id": "Code_397", + "extensionAttributes": [], + "code": "C25299", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "DIABP", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_16", + "extensionAttributes": [], + "name": "Heart Rate", + "label": "Heart Rate", + "synonyms": ["HR", "Heart Rate"], + "reference": "/mdr/specializations/sdtm/packages/2025-04-01/datasetspecializations/HR", + "properties": [ + { + "id": "BiomedicalConceptProperty_102", + "extensionAttributes": [], + "name": "VSTESTCD", + "label": "VSTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_141", + "extensionAttributes": [], + "standardCode": { + "id": "Code_398", + "extensionAttributes": [], + "code": "C49677", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "HR", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_103", + "extensionAttributes": [], + "name": "VSORRES", + "label": "VSORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "integer", + "responseCodes": [], + "code": { + "id": "AliasCode_142", + "extensionAttributes": [], + "standardCode": { + "id": "Code_399", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_104", + "extensionAttributes": [], + "name": "VSORRESU", + "label": "VSORRESU", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_143", + "extensionAttributes": [], + "standardCode": { + "id": "Code_400", + "extensionAttributes": [], + "code": "C73688", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Count per Minute", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_105", + "extensionAttributes": [], + "name": "VSPOS", + "label": "VSPOS", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_122", + "extensionAttributes": [], + "name": "RC_C62165", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_401", + "extensionAttributes": [], + "code": "C62165", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Prone Position", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_123", + "extensionAttributes": [], + "name": "RC_C111310", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_402", + "extensionAttributes": [], + "code": "C111310", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Semi-Recumbent", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_124", + "extensionAttributes": [], + "name": "RC_C62122", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_403", + "extensionAttributes": [], + "code": "C62122", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Sitting", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_125", + "extensionAttributes": [], + "name": "RC_C62166", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_404", + "extensionAttributes": [], + "code": "C62166", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Standing", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_126", + "extensionAttributes": [], + "name": "RC_C62167", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_405", + "extensionAttributes": [], + "code": "C62167", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Supine Position", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_144", + "extensionAttributes": [], + "standardCode": { + "id": "Code_406", + "extensionAttributes": [], + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Body Position", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_106", + "extensionAttributes": [], + "name": "VSLOC", + "label": "VSLOC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_127", + "extensionAttributes": [], + "name": "RC_C12681", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_407", + "extensionAttributes": [], + "code": "C12681", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Brachial Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_128", + "extensionAttributes": [], + "name": "RC_C12687", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_408", + "extensionAttributes": [], + "code": "C12687", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Common Carotid Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_129", + "extensionAttributes": [], + "name": "RC_C12691", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_409", + "extensionAttributes": [], + "code": "C12691", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Cerebral Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_130", + "extensionAttributes": [], + "name": "RC_C32478", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_410", + "extensionAttributes": [], + "code": "C32478", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Dorsalis Pedis Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_131", + "extensionAttributes": [], + "name": "RC_C12715", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_411", + "extensionAttributes": [], + "code": "C12715", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Femoral Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_132", + "extensionAttributes": [], + "name": "RC_C12838", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_412", + "extensionAttributes": [], + "code": "C12838", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Radial Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_145", + "extensionAttributes": [], + "standardCode": { + "id": "Code_413", + "extensionAttributes": [], + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Anatomic Site", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_107", + "extensionAttributes": [], + "name": "VSLAT", + "label": "VSLAT", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_133", + "extensionAttributes": [], + "name": "RC_C25229", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_414", + "extensionAttributes": [], + "code": "C25229", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Left", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_134", + "extensionAttributes": [], + "name": "RC_C25228", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_415", + "extensionAttributes": [], + "code": "C25228", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Right", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_146", + "extensionAttributes": [], + "standardCode": { + "id": "Code_416", + "extensionAttributes": [], + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Laterality", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_108", + "extensionAttributes": [], + "name": "VSDTC", + "label": "VSDTC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_147", + "extensionAttributes": [], + "standardCode": { + "id": "Code_417", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_148", + "extensionAttributes": [], + "standardCode": { + "id": "Code_418", + "extensionAttributes": [], + "code": "C49677", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "HR", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_17", + "extensionAttributes": [], + "name": "Systolic Blood Pressure", + "label": "Systolic Blood Pressure", + "synonyms": ["SYSBP", "Systolic Blood Pressure"], + "reference": "/mdr/specializations/sdtm/packages/2025-04-01/datasetspecializations/SYSBP", + "properties": [ + { + "id": "BiomedicalConceptProperty_109", + "extensionAttributes": [], + "name": "VSTESTCD", + "label": "VSTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_149", + "extensionAttributes": [], + "standardCode": { + "id": "Code_419", + "extensionAttributes": [], + "code": "C25298", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "SYSBP", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_110", + "extensionAttributes": [], + "name": "VSORRES", + "label": "VSORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "integer", + "responseCodes": [], + "code": { + "id": "AliasCode_150", + "extensionAttributes": [], + "standardCode": { + "id": "Code_420", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_111", + "extensionAttributes": [], + "name": "VSORRESU", + "label": "VSORRESU", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_151", + "extensionAttributes": [], + "standardCode": { + "id": "Code_421", + "extensionAttributes": [], + "code": "C49669", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Unit of Pressure", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_112", + "extensionAttributes": [], + "name": "VSPOS", + "label": "VSPOS", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_135", + "extensionAttributes": [], + "name": "RC_C62165", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_422", + "extensionAttributes": [], + "code": "C62165", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Prone Position", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_136", + "extensionAttributes": [], + "name": "RC_C111310", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_423", + "extensionAttributes": [], + "code": "C111310", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Semi-Recumbent", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_137", + "extensionAttributes": [], + "name": "RC_C62122", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_424", + "extensionAttributes": [], + "code": "C62122", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Sitting", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_138", + "extensionAttributes": [], + "name": "RC_C62166", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_425", + "extensionAttributes": [], + "code": "C62166", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Standing", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_139", + "extensionAttributes": [], + "name": "RC_C62167", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_426", + "extensionAttributes": [], + "code": "C62167", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Supine Position", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_152", + "extensionAttributes": [], + "standardCode": { + "id": "Code_427", + "extensionAttributes": [], + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Body Position", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_113", + "extensionAttributes": [], + "name": "VSLOC", + "label": "VSLOC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_140", + "extensionAttributes": [], + "name": "RC_C12681", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_428", + "extensionAttributes": [], + "code": "C12681", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Brachial Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_141", + "extensionAttributes": [], + "name": "RC_C12687", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_429", + "extensionAttributes": [], + "code": "C12687", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Common Carotid Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_142", + "extensionAttributes": [], + "name": "RC_C32478", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_430", + "extensionAttributes": [], + "code": "C32478", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Dorsalis Pedis Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_143", + "extensionAttributes": [], + "name": "RC_C12715", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_431", + "extensionAttributes": [], + "code": "C12715", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Femoral Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_144", + "extensionAttributes": [], + "name": "RC_C32608", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_432", + "extensionAttributes": [], + "code": "C32608", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Finger", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_145", + "extensionAttributes": [], + "name": "RC_C12838", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_433", + "extensionAttributes": [], + "code": "C12838", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Radial Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_153", + "extensionAttributes": [], + "standardCode": { + "id": "Code_434", + "extensionAttributes": [], + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Anatomic Site", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_114", + "extensionAttributes": [], + "name": "VSLAT", + "label": "VSLAT", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_146", + "extensionAttributes": [], + "name": "RC_C25229", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_435", + "extensionAttributes": [], + "code": "C25229", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Left", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_147", + "extensionAttributes": [], + "name": "RC_C25228", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_436", + "extensionAttributes": [], + "code": "C25228", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Right", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_154", + "extensionAttributes": [], + "standardCode": { + "id": "Code_437", + "extensionAttributes": [], + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Laterality", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_115", + "extensionAttributes": [], + "name": "VSDTC", + "label": "VSDTC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_155", + "extensionAttributes": [], + "standardCode": { + "id": "Code_438", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_156", + "extensionAttributes": [], + "standardCode": { + "id": "Code_439", + "extensionAttributes": [], + "code": "C25298", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "SYSBP", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_18", + "extensionAttributes": [], + "name": "Diastolic Blood Pressure", + "label": "Diastolic Blood Pressure", + "synonyms": ["DIABP", "Diastolic Blood Pressure"], + "reference": "/mdr/specializations/sdtm/packages/2025-04-01/datasetspecializations/DIABP", + "properties": [ + { + "id": "BiomedicalConceptProperty_116", + "extensionAttributes": [], + "name": "VSTESTCD", + "label": "VSTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_157", + "extensionAttributes": [], + "standardCode": { + "id": "Code_440", + "extensionAttributes": [], + "code": "C25299", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "DIABP", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_117", + "extensionAttributes": [], + "name": "VSORRES", + "label": "VSORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "integer", + "responseCodes": [], + "code": { + "id": "AliasCode_158", + "extensionAttributes": [], + "standardCode": { + "id": "Code_441", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_118", + "extensionAttributes": [], + "name": "VSORRESU", + "label": "VSORRESU", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_159", + "extensionAttributes": [], + "standardCode": { + "id": "Code_442", + "extensionAttributes": [], + "code": "C49669", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Unit of Pressure", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_119", + "extensionAttributes": [], + "name": "VSPOS", + "label": "VSPOS", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_148", + "extensionAttributes": [], + "name": "RC_C62165", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_443", + "extensionAttributes": [], + "code": "C62165", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Prone Position", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_149", + "extensionAttributes": [], + "name": "RC_C111310", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_444", + "extensionAttributes": [], + "code": "C111310", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Semi-Recumbent", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_150", + "extensionAttributes": [], + "name": "RC_C62122", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_445", + "extensionAttributes": [], + "code": "C62122", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Sitting", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_151", + "extensionAttributes": [], + "name": "RC_C62166", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_446", + "extensionAttributes": [], + "code": "C62166", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Standing", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_152", + "extensionAttributes": [], + "name": "RC_C62167", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_447", + "extensionAttributes": [], + "code": "C62167", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Supine Position", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_160", + "extensionAttributes": [], + "standardCode": { + "id": "Code_448", + "extensionAttributes": [], + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Body Position", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_120", + "extensionAttributes": [], + "name": "VSLOC", + "label": "VSLOC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_153", + "extensionAttributes": [], + "name": "RC_C12681", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_449", + "extensionAttributes": [], + "code": "C12681", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Brachial Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_154", + "extensionAttributes": [], + "name": "RC_C12687", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_450", + "extensionAttributes": [], + "code": "C12687", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Common Carotid Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_155", + "extensionAttributes": [], + "name": "RC_C32478", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_451", + "extensionAttributes": [], + "code": "C32478", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Dorsalis Pedis Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_156", + "extensionAttributes": [], + "name": "RC_C12715", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_452", + "extensionAttributes": [], + "code": "C12715", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Femoral Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_157", + "extensionAttributes": [], + "name": "RC_C32608", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_453", + "extensionAttributes": [], + "code": "C32608", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Finger", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_158", + "extensionAttributes": [], + "name": "RC_C12838", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_454", + "extensionAttributes": [], + "code": "C12838", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Radial Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_161", + "extensionAttributes": [], + "standardCode": { + "id": "Code_455", + "extensionAttributes": [], + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Anatomic Site", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_121", + "extensionAttributes": [], + "name": "VSLAT", + "label": "VSLAT", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_159", + "extensionAttributes": [], + "name": "RC_C25229", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_456", + "extensionAttributes": [], + "code": "C25229", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Left", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_160", + "extensionAttributes": [], + "name": "RC_C25228", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_457", + "extensionAttributes": [], + "code": "C25228", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Right", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_162", + "extensionAttributes": [], + "standardCode": { + "id": "Code_458", + "extensionAttributes": [], + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Laterality", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_122", + "extensionAttributes": [], + "name": "VSDTC", + "label": "VSDTC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_163", + "extensionAttributes": [], + "standardCode": { + "id": "Code_459", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_164", + "extensionAttributes": [], + "standardCode": { + "id": "Code_460", + "extensionAttributes": [], + "code": "C25299", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "DIABP", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_19", + "extensionAttributes": [], + "name": "Heart Rate", + "label": "Heart Rate", + "synonyms": ["HR", "Heart Rate"], + "reference": "/mdr/specializations/sdtm/packages/2025-04-01/datasetspecializations/HR", + "properties": [ + { + "id": "BiomedicalConceptProperty_123", + "extensionAttributes": [], + "name": "VSTESTCD", + "label": "VSTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_165", + "extensionAttributes": [], + "standardCode": { + "id": "Code_461", + "extensionAttributes": [], + "code": "C49677", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "HR", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_124", + "extensionAttributes": [], + "name": "VSORRES", + "label": "VSORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "integer", + "responseCodes": [], + "code": { + "id": "AliasCode_166", + "extensionAttributes": [], + "standardCode": { + "id": "Code_462", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_125", + "extensionAttributes": [], + "name": "VSORRESU", + "label": "VSORRESU", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_167", + "extensionAttributes": [], + "standardCode": { + "id": "Code_463", + "extensionAttributes": [], + "code": "C73688", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Count per Minute", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_126", + "extensionAttributes": [], + "name": "VSPOS", + "label": "VSPOS", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_161", + "extensionAttributes": [], + "name": "RC_C62165", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_464", + "extensionAttributes": [], + "code": "C62165", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Prone Position", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_162", + "extensionAttributes": [], + "name": "RC_C111310", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_465", + "extensionAttributes": [], + "code": "C111310", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Semi-Recumbent", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_163", + "extensionAttributes": [], + "name": "RC_C62122", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_466", + "extensionAttributes": [], + "code": "C62122", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Sitting", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_164", + "extensionAttributes": [], + "name": "RC_C62166", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_467", + "extensionAttributes": [], + "code": "C62166", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Standing", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_165", + "extensionAttributes": [], + "name": "RC_C62167", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_468", + "extensionAttributes": [], + "code": "C62167", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Supine Position", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_168", + "extensionAttributes": [], + "standardCode": { + "id": "Code_469", + "extensionAttributes": [], + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Body Position", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_127", + "extensionAttributes": [], + "name": "VSLOC", + "label": "VSLOC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_166", + "extensionAttributes": [], + "name": "RC_C12681", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_470", + "extensionAttributes": [], + "code": "C12681", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Brachial Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_167", + "extensionAttributes": [], + "name": "RC_C12687", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_471", + "extensionAttributes": [], + "code": "C12687", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Common Carotid Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_168", + "extensionAttributes": [], + "name": "RC_C12691", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_472", + "extensionAttributes": [], + "code": "C12691", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Cerebral Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_169", + "extensionAttributes": [], + "name": "RC_C32478", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_473", + "extensionAttributes": [], + "code": "C32478", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Dorsalis Pedis Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_170", + "extensionAttributes": [], + "name": "RC_C12715", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_474", + "extensionAttributes": [], + "code": "C12715", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Femoral Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_171", + "extensionAttributes": [], + "name": "RC_C12838", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_475", + "extensionAttributes": [], + "code": "C12838", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Radial Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_169", + "extensionAttributes": [], + "standardCode": { + "id": "Code_476", + "extensionAttributes": [], + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Anatomic Site", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_128", + "extensionAttributes": [], + "name": "VSLAT", + "label": "VSLAT", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_172", + "extensionAttributes": [], + "name": "RC_C25229", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_477", + "extensionAttributes": [], + "code": "C25229", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Left", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_173", + "extensionAttributes": [], + "name": "RC_C25228", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_478", + "extensionAttributes": [], + "code": "C25228", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Right", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_170", + "extensionAttributes": [], + "standardCode": { + "id": "Code_479", + "extensionAttributes": [], + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Laterality", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_129", + "extensionAttributes": [], + "name": "VSDTC", + "label": "VSDTC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_171", + "extensionAttributes": [], + "standardCode": { + "id": "Code_480", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_172", + "extensionAttributes": [], + "standardCode": { + "id": "Code_481", + "extensionAttributes": [], + "code": "C49677", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "HR", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + } + ], + "bcCategories": [], + "bcSurrogates": [ + { + "id": "BiomedicalConceptSurrogate_1", + "extensionAttributes": [], + "name": "Date of Birth", + "label": "Date of Birth", + "description": "Date of Birth", + "reference": "None set", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + } + ], + "dictionaries": [ + { + "id": "SyntaxTemplateDictionary_1", + "extensionAttributes": [], + "name": "IE_Dict", + "label": "IE Dictionary", + "description": "Dictionary for IE", + "parameterMaps": [ + { + "id": "ParameterMap_1", + "extensionAttributes": [], + "tag": "min_age", + "reference": "", + "instanceType": "ParameterMap" + }, + { + "id": "ParameterMap_2", + "extensionAttributes": [], + "tag": "max_age", + "reference": "", + "instanceType": "ParameterMap" + }, + { + "id": "ParameterMap_3", + "extensionAttributes": [], + "tag": "StudyPopulation", + "reference": "", + "instanceType": "ParameterMap" + } + ], + "instanceType": "SyntaxTemplateDictionary" + }, + { + "id": "SyntaxTemplateDictionary_2", + "extensionAttributes": [], + "name": "AS_Dict", + "label": "Assessment Dictionary", + "description": "Dictionary for Study Assessments", + "parameterMaps": [ + { + "id": "ParameterMap_4", + "extensionAttributes": [], + "tag": "Activity1", + "reference": "", + "instanceType": "ParameterMap" + }, + { + "id": "ParameterMap_5", + "extensionAttributes": [], + "tag": "Activity2", + "reference": "", + "instanceType": "ParameterMap" + } + ], + "instanceType": "SyntaxTemplateDictionary" + } + ], + "conditions": [ + { + "id": "Condition_1", + "extensionAttributes": [], + "name": "COND1", + "label": "HA1C", + "description": "Hemoglobin A1C and insulin-dependent subjects", + "text": "Performed if patient is an insulin-dependent diabetic", + "dictionaryId": null, + "notes": [], + "instanceType": "Condition", + "contextIds": ["ScheduledActivityInstance_9"], + "appliesToIds": ["Activity_24"] + }, + { + "id": "Condition_2", + "extensionAttributes": [], + "name": "COND2", + "label": "Practice", + "description": "Questionnaire practice condition", + "text": "Practice only - It is recommended that a sampling of the CIBIC+, ADAS-Cog, DAD, and NPI-X be administered at Visit 1. Data from this sampling would not be considered as study data and would not be collected.", + "dictionaryId": null, + "notes": [], + "instanceType": "Condition", + "contextIds": ["ScheduledActivityInstance_9"], + "appliesToIds": [ + "Activity_27", + "Activity_28", + "Activity_29", + "Activity_30" + ] + } + ], + "notes": [], + "instanceType": "StudyVersion" + } + ], + "documentedBy": [ + { + "id": "StudyDefinitionDocument_1", + "extensionAttributes": [], + "name": "Protocol_Document_CDISC PILOT - LZZT", + "label": null, + "description": null, + "language": { + "id": "Code_671", + "extensionAttributes": [], + "code": "en", + "codeSystem": "ISO", + "codeSystemVersion": "1", + "decode": "English", + "instanceType": "Code" + }, + "type": { + "id": "Code_672", + "extensionAttributes": [], + "code": "C12345", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Decode", + "instanceType": "Code" + }, + "templateName": "LILLY", + "versions": [ + { + "id": "StudyDefinitionDocumentVersion_1", + "extensionAttributes": [], + "version": "2", + "status": { + "id": "Code_12", + "extensionAttributes": [], + "code": "C25508", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Final", + "instanceType": "Code" + }, + "dateValues": [ + { + "id": "GovernanceDate_2", + "extensionAttributes": [], + "name": "P_APPROVE", + "label": "Protocol Approval", + "description": "Protocol document approval date", + "type": { + "id": "Code_15", + "extensionAttributes": [], + "code": "C99903x1", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Protocol Effective Date", + "instanceType": "Code" + }, + "dateValue": "2006-07-01", + "geographicScopes": [ + { + "id": "GeographicScope_2", + "extensionAttributes": [], + "type": { + "id": "Code_17", + "extensionAttributes": [], + "code": "C41129", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Region", + "instanceType": "Code" + }, + "code": { + "id": "AliasCode_1", + "extensionAttributes": [], + "standardCode": { + "id": "Code_16", + "extensionAttributes": [], + "code": "150", + "codeSystem": "ISO 3166 1 alpha3", + "codeSystemVersion": "2020-08", + "decode": "Europe", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "instanceType": "GeographicScope" + } + ], + "instanceType": "GovernanceDate" + } + ], + "contents": [ + { + "id": "NarrativeContent_1", + "extensionAttributes": [], + "name": "NC_1", + "sectionNumber": "0", + "sectionTitle": "Title Page", + "displaySectionNumber": false, + "displaySectionTitle": false, + "childIds": [], + "previousId": null, + "nextId": "NarrativeContent_2", + "contentItemId": "NarrativeContentItem_1", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_2", + "extensionAttributes": [], + "name": "NC_2", + "sectionNumber": "1", + "sectionTitle": "Introduction", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_1", + "nextId": "NarrativeContent_3", + "contentItemId": "NarrativeContentItem_2", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_3", + "extensionAttributes": [], + "name": "NC_3", + "sectionNumber": "2", + "sectionTitle": "Objectives", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": ["NarrativeContent_4", "NarrativeContent_5"], + "previousId": "NarrativeContent_2", + "nextId": "NarrativeContent_4", + "contentItemId": "NarrativeContentItem_3", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_4", + "extensionAttributes": [], + "name": "NC_4", + "sectionNumber": "2.1.", + "sectionTitle": "Primary Objectives", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_3", + "nextId": "NarrativeContent_5", + "contentItemId": "NarrativeContentItem_4", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_5", + "extensionAttributes": [], + "name": "NC_5", + "sectionNumber": "2.2", + "sectionTitle": "Secondary Objectives", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_4", + "nextId": "NarrativeContent_6", + "contentItemId": "NarrativeContentItem_5", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_6", + "extensionAttributes": [], + "name": "NC_6", + "sectionNumber": "3", + "sectionTitle": "Investigational Plan", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_7", + "NarrativeContent_8", + "NarrativeContent_9", + "NarrativeContent_11", + "NarrativeContent_19", + "NarrativeContent_20", + "NarrativeContent_23", + "NarrativeContent_24", + "NarrativeContent_25", + "NarrativeContent_41", + "NarrativeContent_47" + ], + "previousId": "NarrativeContent_5", + "nextId": "NarrativeContent_7", + "contentItemId": "NarrativeContentItem_6", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_7", + "extensionAttributes": [], + "name": "NC_7", + "sectionNumber": "3.1.", + "sectionTitle": "Summary of Study Design", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_6", + "nextId": "NarrativeContent_8", + "contentItemId": "NarrativeContentItem_7", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_8", + "extensionAttributes": [], + "name": "NC_8", + "sectionNumber": "3.2.", + "sectionTitle": "Discussion of Design and Control", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_7", + "nextId": "NarrativeContent_9", + "contentItemId": "NarrativeContentItem_8", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_9", + "extensionAttributes": [], + "name": "NC_9", + "sectionNumber": "3.3.", + "sectionTitle": "Investigator Information", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": ["NarrativeContent_10"], + "previousId": "NarrativeContent_8", + "nextId": "NarrativeContent_10", + "contentItemId": "NarrativeContentItem_9", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_10", + "extensionAttributes": [], + "name": "NC_10", + "sectionNumber": "3.3.1.", + "sectionTitle": "Final Report Signature", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_9", + "nextId": "NarrativeContent_11", + "contentItemId": "NarrativeContentItem_10", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_11", + "extensionAttributes": [], + "name": "NC_11", + "sectionNumber": "3.4.", + "sectionTitle": "Study Population", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_12", + "NarrativeContent_13", + "NarrativeContent_17", + "NarrativeContent_18" + ], + "previousId": "NarrativeContent_10", + "nextId": "NarrativeContent_12", + "contentItemId": "NarrativeContentItem_11", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_12", + "extensionAttributes": [], + "name": "NC_12", + "sectionNumber": "3.4.1.", + "sectionTitle": "Entry Procedures", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_11", + "nextId": "NarrativeContent_13", + "contentItemId": "NarrativeContentItem_12", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_13", + "extensionAttributes": [], + "name": "NC_13", + "sectionNumber": "3.4.2.", + "sectionTitle": "Criteria for Enrollment", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_14", + "NarrativeContent_15", + "NarrativeContent_16" + ], + "previousId": "NarrativeContent_12", + "nextId": "NarrativeContent_14", + "contentItemId": "NarrativeContentItem_13", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_14", + "extensionAttributes": [], + "name": "NC_14", + "sectionNumber": "3.4.2.1.", + "sectionTitle": "Inclusion Criteria", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_13", + "nextId": "NarrativeContent_15", + "contentItemId": "NarrativeContentItem_14", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_15", + "extensionAttributes": [], + "name": "NC_15", + "sectionNumber": "3.4.2.2.", + "sectionTitle": "Exclusion Criteria", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_14", + "nextId": "NarrativeContent_16", + "contentItemId": "NarrativeContentItem_15", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_16", + "extensionAttributes": [], + "name": "NC_16", + "sectionNumber": "3.4.2.3", + "sectionTitle": "Violation of Criteria for Enrollment", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_15", + "nextId": "NarrativeContent_17", + "contentItemId": "NarrativeContentItem_16", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_17", + "extensionAttributes": [], + "name": "NC_17", + "sectionNumber": "3.4.3.", + "sectionTitle": "Disease Diagnostic Criteria", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_16", + "nextId": "NarrativeContent_18", + "contentItemId": "NarrativeContentItem_17", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_18", + "extensionAttributes": [], + "name": "NC_18", + "sectionNumber": "3.4.4.", + "sectionTitle": "Sample Size", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_17", + "nextId": "NarrativeContent_19", + "contentItemId": "NarrativeContentItem_18", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_19", + "extensionAttributes": [], + "name": "NC_19", + "sectionNumber": "3.5.", + "sectionTitle": "Patient Assignment", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_18", + "nextId": "NarrativeContent_20", + "contentItemId": "NarrativeContentItem_19", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_20", + "extensionAttributes": [], + "name": "NC_20", + "sectionNumber": "3.6.", + "sectionTitle": "Dosage and Administration", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": ["NarrativeContent_21", "NarrativeContent_22"], + "previousId": "NarrativeContent_19", + "nextId": "NarrativeContent_21", + "contentItemId": "NarrativeContentItem_20", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_21", + "extensionAttributes": [], + "name": "NC_21", + "sectionNumber": "3.6.1.", + "sectionTitle": "Materials and Supplies", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_20", + "nextId": "NarrativeContent_22", + "contentItemId": "NarrativeContentItem_21", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_22", + "extensionAttributes": [], + "name": "NC_22", + "sectionNumber": "3.6.2.", + "sectionTitle": "TTS Administration Procedures", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_21", + "nextId": "NarrativeContent_23", + "contentItemId": "NarrativeContentItem_22", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_23", + "extensionAttributes": [], + "name": "NC_23", + "sectionNumber": "3.7.", + "sectionTitle": "Blinding", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_22", + "nextId": "NarrativeContent_24", + "contentItemId": "NarrativeContentItem_23", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_24", + "extensionAttributes": [], + "name": "NC_24", + "sectionNumber": "3.8.", + "sectionTitle": "Concomitant Therapy", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_23", + "nextId": "NarrativeContent_25", + "contentItemId": "NarrativeContentItem_24", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_25", + "extensionAttributes": [], + "name": "NC_25", + "sectionNumber": "3.9.", + "sectionTitle": "Efficacy, Pharmacokinetic, and Safety Evaluations", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_26", + "NarrativeContent_29", + "NarrativeContent_30", + "NarrativeContent_39", + "NarrativeContent_40" + ], + "previousId": "NarrativeContent_24", + "nextId": "NarrativeContent_26", + "contentItemId": "NarrativeContentItem_25", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_26", + "extensionAttributes": [], + "name": "NC_26", + "sectionNumber": "3.9.1.", + "sectionTitle": "Efficacy", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": ["NarrativeContent_27", "NarrativeContent_28"], + "previousId": "NarrativeContent_25", + "nextId": "NarrativeContent_27", + "contentItemId": "NarrativeContentItem_26", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_27", + "extensionAttributes": [], + "name": "NC_27", + "sectionNumber": "3.9.1.1.", + "sectionTitle": "Efficacy Measures", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_26", + "nextId": "NarrativeContent_28", + "contentItemId": "NarrativeContentItem_27", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_28", + "extensionAttributes": [], + "name": "NC_28", + "sectionNumber": "3.9.1.2.", + "sectionTitle": "Efficacy Criteria", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_27", + "nextId": "NarrativeContent_29", + "contentItemId": "NarrativeContentItem_28", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_29", + "extensionAttributes": [], + "name": "NC_29", + "sectionNumber": "3.9.2.", + "sectionTitle": "Pharmacokinetics", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_28", + "nextId": "NarrativeContent_30", + "contentItemId": "NarrativeContentItem_29", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_30", + "extensionAttributes": [], + "name": "NC_30", + "sectionNumber": "3.9.3.", + "sectionTitle": "Safety", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_31", + "NarrativeContent_32", + "NarrativeContent_35", + "NarrativeContent_36" + ], + "previousId": "NarrativeContent_29", + "nextId": "NarrativeContent_31", + "contentItemId": "NarrativeContentItem_30", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_31", + "extensionAttributes": [], + "name": "NC_31", + "sectionNumber": "3.9.3.1.", + "sectionTitle": "Safety Measures", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_30", + "nextId": "NarrativeContent_32", + "contentItemId": "NarrativeContentItem_31", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_32", + "extensionAttributes": [], + "name": "NC_32", + "sectionNumber": "3.9.3.2.", + "sectionTitle": "Clinical Adverse Events", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": ["NarrativeContent_33", "NarrativeContent_34"], + "previousId": "NarrativeContent_31", + "nextId": "NarrativeContent_33", + "contentItemId": "NarrativeContentItem_32", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_33", + "extensionAttributes": [], + "name": "NC_33", + "sectionNumber": "3.9.3.2.1.", + "sectionTitle": "Adverse Event Reporting Requirements", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_32", + "nextId": "NarrativeContent_34", + "contentItemId": "NarrativeContentItem_33", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_34", + "extensionAttributes": [], + "name": "NC_34", + "sectionNumber": "3.9.3.2.2.", + "sectionTitle": "Serious Adverse Events", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_33", + "nextId": "NarrativeContent_35", + "contentItemId": "NarrativeContentItem_34", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_35", + "extensionAttributes": [], + "name": "NC_35", + "sectionNumber": "3.9.3.3.", + "sectionTitle": "Clinical Laboratory Tests", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_34", + "nextId": "NarrativeContent_36", + "contentItemId": "NarrativeContentItem_35", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_36", + "extensionAttributes": [], + "name": "NC_36", + "sectionNumber": "3.9.3.4", + "sectionTitle": "Other Safety Measures", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": ["NarrativeContent_37", "NarrativeContent_38"], + "previousId": "NarrativeContent_35", + "nextId": "NarrativeContent_37", + "contentItemId": "NarrativeContentItem_36", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_37", + "extensionAttributes": [], + "name": "NC_37", + "sectionNumber": "3.9.3.4.1", + "sectionTitle": "Vital Sign Determination", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_36", + "nextId": "NarrativeContent_38", + "contentItemId": "NarrativeContentItem_37", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_38", + "extensionAttributes": [], + "name": "NC_38", + "sectionNumber": "3.9.3.4.2", + "sectionTitle": "Cardiovascular Safety Measures", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_37", + "nextId": "NarrativeContent_39", + "contentItemId": "NarrativeContentItem_38", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_39", + "extensionAttributes": [], + "name": "NC_39", + "sectionNumber": "3.9.4.", + "sectionTitle": "Safety Monitoring", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_38", + "nextId": "NarrativeContent_40", + "contentItemId": "NarrativeContentItem_39", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_40", + "extensionAttributes": [], + "name": "NC_40", + "sectionNumber": "3.9.5.", + "sectionTitle": "Appropriateness and Consistency of Measurements", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_39", + "nextId": "NarrativeContent_41", + "contentItemId": "NarrativeContentItem_40", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_41", + "extensionAttributes": [], + "name": "NC_41", + "sectionNumber": "3.10.", + "sectionTitle": "Patient Disposition Criteria", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_42", + "NarrativeContent_44", + "NarrativeContent_45" + ], + "previousId": "NarrativeContent_40", + "nextId": "NarrativeContent_42", + "contentItemId": "NarrativeContentItem_41", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_42", + "extensionAttributes": [], + "name": "NC_42", + "sectionNumber": "3.10.1.", + "sectionTitle": "Discontinuations", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": ["NarrativeContent_43"], + "previousId": "NarrativeContent_41", + "nextId": "NarrativeContent_43", + "contentItemId": "NarrativeContentItem_42", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_43", + "extensionAttributes": [], + "name": "NC_43", + "sectionNumber": "3.10.1.1.", + "sectionTitle": "Retrieval of Discontinuations", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_42", + "nextId": "NarrativeContent_44", + "contentItemId": "NarrativeContentItem_43", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_44", + "extensionAttributes": [], + "name": "NC_44", + "sectionNumber": "3.10.2.", + "sectionTitle": "Qualifications for Analysis", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_43", + "nextId": "NarrativeContent_45", + "contentItemId": "NarrativeContentItem_44", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_45", + "extensionAttributes": [], + "name": "NC_45", + "sectionNumber": "3.10.3.", + "sectionTitle": "Study Extensions", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": ["NarrativeContent_46"], + "previousId": "NarrativeContent_44", + "nextId": "NarrativeContent_46", + "contentItemId": "NarrativeContentItem_45", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_46", + "extensionAttributes": [], + "name": "NC_46", + "sectionNumber": "3.10.3.1.", + "sectionTitle": "Compliance", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_45", + "nextId": "NarrativeContent_47", + "contentItemId": "NarrativeContentItem_46", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_47", + "extensionAttributes": [], + "name": "NC_47", + "sectionNumber": "3.11.", + "sectionTitle": "Quality Assurance", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_46", + "nextId": "NarrativeContent_48", + "contentItemId": "NarrativeContentItem_47", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_48", + "extensionAttributes": [], + "name": "NC_48", + "sectionNumber": "4", + "sectionTitle": "Data Analysis Methods", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_49", + "NarrativeContent_50", + "NarrativeContent_51", + "NarrativeContent_57", + "NarrativeContent_58", + "NarrativeContent_59", + "NarrativeContent_60", + "NarrativeContent_61" + ], + "previousId": "NarrativeContent_47", + "nextId": "NarrativeContent_49", + "contentItemId": "NarrativeContentItem_48", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_49", + "extensionAttributes": [], + "name": "NC_49", + "sectionNumber": "4.1.", + "sectionTitle": "General Considerations", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_48", + "nextId": "NarrativeContent_50", + "contentItemId": "NarrativeContentItem_49", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_50", + "extensionAttributes": [], + "name": "NC_50", + "sectionNumber": "4.2.", + "sectionTitle": "Demographics and Patient Characteristics Measured at Baseline", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_49", + "nextId": "NarrativeContent_51", + "contentItemId": "NarrativeContentItem_50", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_51", + "extensionAttributes": [], + "name": "NC_51", + "sectionNumber": "4.3.", + "sectionTitle": "Efficacy Analyses", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_52", + "NarrativeContent_53", + "NarrativeContent_54", + "NarrativeContent_55", + "NarrativeContent_56" + ], + "previousId": "NarrativeContent_50", + "nextId": "NarrativeContent_52", + "contentItemId": "NarrativeContentItem_51", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_52", + "extensionAttributes": [], + "name": "NC_52", + "sectionNumber": "4.3.1.", + "sectionTitle": "Efficacy Variables to be Analyzed", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_51", + "nextId": "NarrativeContent_53", + "contentItemId": "NarrativeContentItem_52", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_53", + "extensionAttributes": [], + "name": "NC_53", + "sectionNumber": "4.3.2.", + "sectionTitle": "Times of Analyses", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_52", + "nextId": "NarrativeContent_54", + "contentItemId": "NarrativeContentItem_53", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_54", + "extensionAttributes": [], + "name": "NC_54", + "sectionNumber": "4.3.3.", + "sectionTitle": "Statistical Methodology", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_53", + "nextId": "NarrativeContent_55", + "contentItemId": "NarrativeContentItem_54", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_55", + "extensionAttributes": [], + "name": "NC_55", + "sectionNumber": "4.3.4.", + "sectionTitle": "One-sided Justification", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_54", + "nextId": "NarrativeContent_56", + "contentItemId": "NarrativeContentItem_55", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_56", + "extensionAttributes": [], + "name": "NC_56", + "sectionNumber": "4.3.5.", + "sectionTitle": "Nominal P-value Adjustments", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_55", + "nextId": "NarrativeContent_57", + "contentItemId": "NarrativeContentItem_56", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_57", + "extensionAttributes": [], + "name": "NC_57", + "sectionNumber": "4.4.", + "sectionTitle": "Safety Analyses", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_56", + "nextId": "NarrativeContent_58", + "contentItemId": "NarrativeContentItem_57", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_58", + "extensionAttributes": [], + "name": "NC_58", + "sectionNumber": "4.5.", + "sectionTitle": "Subgroup Analyses", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_57", + "nextId": "NarrativeContent_59", + "contentItemId": "NarrativeContentItem_58", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_59", + "extensionAttributes": [], + "name": "NC_59", + "sectionNumber": "4.6.", + "sectionTitle": "Interim Efficacy Analyses", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_58", + "nextId": "NarrativeContent_60", + "contentItemId": "NarrativeContentItem_59", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_60", + "extensionAttributes": [], + "name": "NC_60", + "sectionNumber": "4.7.", + "sectionTitle": "Interim Safety Analyses", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_59", + "nextId": "NarrativeContent_61", + "contentItemId": "NarrativeContentItem_60", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_61", + "extensionAttributes": [], + "name": "NC_61", + "sectionNumber": "4.8.", + "sectionTitle": "Pharmacokinetic/Pharmacodynamic Analyses", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_60", + "nextId": "NarrativeContent_62", + "contentItemId": "NarrativeContentItem_61", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_62", + "extensionAttributes": [], + "name": "NC_62", + "sectionNumber": "5", + "sectionTitle": "Informed Consent, Ethical Review, and Regulatory Considerations", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_63", + "NarrativeContent_64", + "NarrativeContent_65" + ], + "previousId": "NarrativeContent_61", + "nextId": "NarrativeContent_63", + "contentItemId": "NarrativeContentItem_62", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_63", + "extensionAttributes": [], + "name": "NC_63", + "sectionNumber": "5.1.", + "sectionTitle": "Informed Consent", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_62", + "nextId": "NarrativeContent_64", + "contentItemId": "NarrativeContentItem_63", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_64", + "extensionAttributes": [], + "name": "NC_64", + "sectionNumber": "5.2.", + "sectionTitle": "Ethical Review", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_63", + "nextId": "NarrativeContent_65", + "contentItemId": "NarrativeContentItem_64", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_65", + "extensionAttributes": [], + "name": "NC_65", + "sectionNumber": "5.3.", + "sectionTitle": "Regulatory Considerations", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_64", + "nextId": "NarrativeContent_66", + "contentItemId": "NarrativeContentItem_65", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_66", + "extensionAttributes": [], + "name": "NC_66", + "sectionNumber": "6", + "sectionTitle": "References", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_65", + "nextId": "NarrativeContent_67", + "contentItemId": "NarrativeContentItem_66", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_67", + "extensionAttributes": [], + "name": "NC_67", + "sectionNumber": "Appendix 1", + "sectionTitle": "Protocol Attachment LZZT.1. Schedule of Events for Protocol H2Q-MC-LZZT(c)", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_66", + "nextId": "NarrativeContent_68", + "contentItemId": "NarrativeContentItem_67", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_68", + "extensionAttributes": [], + "name": "NC_68", + "sectionNumber": "Appendix 2", + "sectionTitle": "Protocol Attachment LZZT.2. Alzheimer's Disease Assessment Scale-Cognitive Subscale (ADAS-Cog) with Attention and Concentration Tasks", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_67", + "nextId": "NarrativeContent_69", + "contentItemId": "NarrativeContentItem_68", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_69", + "extensionAttributes": [], + "name": "NC_69", + "sectionNumber": "Appendix 3", + "sectionTitle": "Protocol Attachment LZZT.3. Video-referenced Clinician's Interview-Based Impression of Change (CIBIC+)", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_68", + "nextId": "NarrativeContent_70", + "contentItemId": "NarrativeContentItem_69", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_70", + "extensionAttributes": [], + "name": "NC_70", + "sectionNumber": "Appendix 4", + "sectionTitle": "Protocol Attachment LZZT.4. Revised Neuropsychiatric Inventory (NPI-X)", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_69", + "nextId": "NarrativeContent_71", + "contentItemId": "NarrativeContentItem_70", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_71", + "extensionAttributes": [], + "name": "NC_71", + "sectionNumber": "Appendix 5", + "sectionTitle": "Protocol Attachment LZZT.5. Disability Assessment for Dementia (DAD)", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_70", + "nextId": "NarrativeContent_72", + "contentItemId": "NarrativeContentItem_71", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_72", + "extensionAttributes": [], + "name": "NC_72", + "sectionNumber": "Appendix 6", + "sectionTitle": "Protocol Attachment LZZT.6. Mini-Mental State Examination (MMSE)", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_71", + "nextId": "NarrativeContent_73", + "contentItemId": "NarrativeContentItem_72", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_73", + "extensionAttributes": [], + "name": "NC_73", + "sectionNumber": "Appendix 7", + "sectionTitle": "Protocol Attachment LZZT.7. NINCDS/ADRDA Guidelines", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_72", + "nextId": "NarrativeContent_74", + "contentItemId": "NarrativeContentItem_73", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_74", + "extensionAttributes": [], + "name": "NC_74", + "sectionNumber": "Appendix 8", + "sectionTitle": "Protocol Attachment LZZT.8. Hachinski Ischemic Scale", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_73", + "nextId": "NarrativeContent_75", + "contentItemId": "NarrativeContentItem_74", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_75", + "extensionAttributes": [], + "name": "NC_75", + "sectionNumber": "Appendix 9", + "sectionTitle": "Protocol Attachment LZZT.9. TTS Acceptability Survey", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_74", + "nextId": "NarrativeContent_76", + "contentItemId": "NarrativeContentItem_75", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_76", + "extensionAttributes": [], + "name": "NC_76", + "sectionNumber": "Appendix 10", + "sectionTitle": "Protocol Attachment LZZT.10. Protocol Signatures", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_75", + "nextId": null, + "contentItemId": "NarrativeContentItem_76", + "instanceType": "NarrativeContent" + } + ], + "notes": [], + "instanceType": "StudyDefinitionDocumentVersion" + } + ], + "childIds": [], + "notes": [], + "instanceType": "StudyDefinitionDocument" + }, + { + "id": "StudyDefinitionDocument_2", + "extensionAttributes": [], + "name": "Protocol_Document_CDISC PILOT - LZZT", + "label": null, + "description": null, + "language": { + "id": "Code_677", + "extensionAttributes": [], + "code": "en", + "codeSystem": "ISO", + "codeSystemVersion": "1", + "decode": "English", + "instanceType": "Code" + }, + "type": { + "id": "Code_678", + "extensionAttributes": [], + "code": "C12345", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Decode", + "instanceType": "Code" + }, + "templateName": "M11", + "versions": [ + { + "id": "StudyDefinitionDocumentVersion_2", + "extensionAttributes": [], + "version": "2", + "status": { + "id": "Code_676", + "extensionAttributes": [], + "code": "C25508", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Final", + "instanceType": "Code" + }, + "dateValues": [ + { + "id": "GovernanceDate_4", + "extensionAttributes": [], + "name": "P_APPROVE", + "label": "Protocol Approval", + "description": "Protocol document approval date", + "type": { + "id": "Code_673", + "extensionAttributes": [], + "code": "C99903x1", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Protocol Effective Date", + "instanceType": "Code" + }, + "dateValue": "2006-07-01", + "geographicScopes": [ + { + "id": "GeographicScope_6", + "extensionAttributes": [], + "type": { + "id": "Code_674", + "extensionAttributes": [], + "code": "C41129", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Region", + "instanceType": "Code" + }, + "code": { + "id": "AliasCode_253", + "extensionAttributes": [], + "standardCode": { + "id": "Code_675", + "extensionAttributes": [], + "code": "150", + "codeSystem": "ISO 3166 1 alpha3", + "codeSystemVersion": "2020-08", + "decode": "Europe", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "instanceType": "GeographicScope" + } + ], + "instanceType": "GovernanceDate" + } + ], + "contents": [ + { + "id": "NarrativeContent_77", + "extensionAttributes": [], + "name": "NC_100", + "sectionNumber": "0", + "sectionTitle": "Title Page", + "displaySectionNumber": false, + "displaySectionTitle": false, + "childIds": [], + "previousId": null, + "nextId": "NarrativeContent_78", + "contentItemId": "NarrativeContentItem_77", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_78", + "extensionAttributes": [], + "name": "NC_101", + "sectionNumber": "1", + "sectionTitle": "PROTOCOL SUMMARY", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_79", + "NarrativeContent_82", + "NarrativeContent_83" + ], + "previousId": "NarrativeContent_77", + "nextId": "NarrativeContent_79", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_79", + "extensionAttributes": [], + "name": "NC_102", + "sectionNumber": "1.1", + "sectionTitle": "Protocol Synopsis", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": ["NarrativeContent_80", "NarrativeContent_81"], + "previousId": "NarrativeContent_78", + "nextId": "NarrativeContent_80", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_80", + "extensionAttributes": [], + "name": "NC_103", + "sectionNumber": "1.1.1", + "sectionTitle": "Primary and Secondary Objectives and Estimands", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_79", + "nextId": "NarrativeContent_81", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_81", + "extensionAttributes": [], + "name": "NC_104", + "sectionNumber": "1.1.2", + "sectionTitle": "Overall Design", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_80", + "nextId": "NarrativeContent_82", + "contentItemId": "NarrativeContentItem_78", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_82", + "extensionAttributes": [], + "name": "NC_105", + "sectionNumber": "1.2", + "sectionTitle": "Trial Schema", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_81", + "nextId": "NarrativeContent_83", + "contentItemId": "NarrativeContentItem_79", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_83", + "extensionAttributes": [], + "name": "NC_106", + "sectionNumber": "1.3", + "sectionTitle": "Schedule of Activities", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_82", + "nextId": "NarrativeContent_84", + "contentItemId": "NarrativeContentItem_80", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_84", + "extensionAttributes": [], + "name": "NC_107", + "sectionNumber": "2", + "sectionTitle": "INTRODUCTION", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": ["NarrativeContent_85", "NarrativeContent_86"], + "previousId": "NarrativeContent_83", + "nextId": "NarrativeContent_85", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_85", + "extensionAttributes": [], + "name": "NC_108", + "sectionNumber": "2.1", + "sectionTitle": "Purpose of Trial", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_84", + "nextId": "NarrativeContent_86", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_86", + "extensionAttributes": [], + "name": "NC_109", + "sectionNumber": "2.2", + "sectionTitle": "Summary of Benefits and Risks", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_87", + "NarrativeContent_88", + "NarrativeContent_89" + ], + "previousId": "NarrativeContent_85", + "nextId": "NarrativeContent_87", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_87", + "extensionAttributes": [], + "name": "NC_110", + "sectionNumber": "2.2.1", + "sectionTitle": "Benefit Summary", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_86", + "nextId": "NarrativeContent_88", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_88", + "extensionAttributes": [], + "name": "NC_111", + "sectionNumber": "2.2.2", + "sectionTitle": "Risk Summary and Mitigation Strategy", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_87", + "nextId": "NarrativeContent_89", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_89", + "extensionAttributes": [], + "name": "NC_112", + "sectionNumber": "2.2.3", + "sectionTitle": "Overall Benefit:Risk Conclusion", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_88", + "nextId": "NarrativeContent_90", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_90", + "extensionAttributes": [], + "name": "NC_113", + "sectionNumber": "3", + "sectionTitle": "TRIAL OBJECTIVES AND ESTIMANDS", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_91", + "NarrativeContent_93", + "NarrativeContent_94" + ], + "previousId": "NarrativeContent_89", + "nextId": "NarrativeContent_91", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_91", + "extensionAttributes": [], + "name": "NC_114", + "sectionNumber": "3.1", + "sectionTitle": "Primary Objective(s) and Associated Estimand(s)", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": ["NarrativeContent_92"], + "previousId": "NarrativeContent_90", + "nextId": "NarrativeContent_92", + "contentItemId": "NarrativeContentItem_81", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_92", + "extensionAttributes": [], + "name": "NC_115", + "sectionNumber": "3.1.1", + "sectionTitle": "{Primary Estimand}", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_91", + "nextId": "NarrativeContent_93", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_93", + "extensionAttributes": [], + "name": "NC_116", + "sectionNumber": "3.2", + "sectionTitle": "Secondary Objective(s) and Associated Estimand(s)", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_92", + "nextId": "NarrativeContent_94", + "contentItemId": "NarrativeContentItem_82", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_94", + "extensionAttributes": [], + "name": "NC_117", + "sectionNumber": "3.3", + "sectionTitle": "Exploratory Objective(s)", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_93", + "nextId": "NarrativeContent_95", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_95", + "extensionAttributes": [], + "name": "NC_118", + "sectionNumber": "4", + "sectionTitle": "TRIAL DESIGN", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_96", + "NarrativeContent_98", + "NarrativeContent_106", + "NarrativeContent_107", + "NarrativeContent_108" + ], + "previousId": "NarrativeContent_94", + "nextId": "NarrativeContent_96", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_96", + "extensionAttributes": [], + "name": "NC_119", + "sectionNumber": "4.1", + "sectionTitle": "Description of Trial Design", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": ["NarrativeContent_97"], + "previousId": "NarrativeContent_95", + "nextId": "NarrativeContent_97", + "contentItemId": "NarrativeContentItem_83", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_97", + "extensionAttributes": [], + "name": "NC_120", + "sectionNumber": "4.1.1", + "sectionTitle": "Stakeholder Input into Design", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_96", + "nextId": "NarrativeContent_98", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_98", + "extensionAttributes": [], + "name": "NC_121", + "sectionNumber": "4.2", + "sectionTitle": "Rationale for Trial Design", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_99", + "NarrativeContent_100", + "NarrativeContent_101", + "NarrativeContent_102", + "NarrativeContent_103", + "NarrativeContent_104", + "NarrativeContent_105" + ], + "previousId": "NarrativeContent_97", + "nextId": "NarrativeContent_99", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_99", + "extensionAttributes": [], + "name": "NC_122", + "sectionNumber": "4.2.1", + "sectionTitle": "Rationale for Intervention Model", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_98", + "nextId": "NarrativeContent_100", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_100", + "extensionAttributes": [], + "name": "NC_123", + "sectionNumber": "4.2.2", + "sectionTitle": "Rationale for Duration", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_99", + "nextId": "NarrativeContent_101", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_101", + "extensionAttributes": [], + "name": "NC_124", + "sectionNumber": "4.2.3", + "sectionTitle": "Rationale for Estimands", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_100", + "nextId": "NarrativeContent_102", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_102", + "extensionAttributes": [], + "name": "NC_125", + "sectionNumber": "4.2.4", + "sectionTitle": "Rationale for Interim Analysis", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_101", + "nextId": "NarrativeContent_103", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_103", + "extensionAttributes": [], + "name": "NC_126", + "sectionNumber": "4.2.5", + "sectionTitle": "Rationale for Control Type", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_102", + "nextId": "NarrativeContent_104", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_104", + "extensionAttributes": [], + "name": "NC_127", + "sectionNumber": "4.2.6", + "sectionTitle": "Rationale for Adaptive or Novel Trial Design", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_103", + "nextId": "NarrativeContent_105", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_105", + "extensionAttributes": [], + "name": "NC_128", + "sectionNumber": "4.2.7", + "sectionTitle": "Rationale for Other Trial Design Aspects", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_104", + "nextId": "NarrativeContent_106", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_106", + "extensionAttributes": [], + "name": "NC_129", + "sectionNumber": "4.3", + "sectionTitle": "Trial Stopping Rules", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_105", + "nextId": "NarrativeContent_107", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_107", + "extensionAttributes": [], + "name": "NC_130", + "sectionNumber": "4.4", + "sectionTitle": "Start of Trial and End of Trial", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_106", + "nextId": "NarrativeContent_108", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_108", + "extensionAttributes": [], + "name": "NC_131", + "sectionNumber": "4.5", + "sectionTitle": "Access to Trial Intervention After End of Trial", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_107", + "nextId": "NarrativeContent_109", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_109", + "extensionAttributes": [], + "name": "NC_132", + "sectionNumber": "5", + "sectionTitle": "TRIAL POPULATION", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_110", + "NarrativeContent_111", + "NarrativeContent_112", + "NarrativeContent_113", + "NarrativeContent_116", + "NarrativeContent_121" + ], + "previousId": "NarrativeContent_108", + "nextId": "NarrativeContent_110", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_110", + "extensionAttributes": [], + "name": "NC_133", + "sectionNumber": "5.1", + "sectionTitle": "Description of Trial Population and Rationale", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_109", + "nextId": "NarrativeContent_111", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_111", + "extensionAttributes": [], + "name": "NC_134", + "sectionNumber": "5.2", + "sectionTitle": "Inclusion Criteria", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_110", + "nextId": "NarrativeContent_112", + "contentItemId": "NarrativeContentItem_84", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_112", + "extensionAttributes": [], + "name": "NC_135", + "sectionNumber": "5.3", + "sectionTitle": "Exclusion Criteria", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_111", + "nextId": "NarrativeContent_113", + "contentItemId": "NarrativeContentItem_85", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_113", + "extensionAttributes": [], + "name": "NC_136", + "sectionNumber": "5.4", + "sectionTitle": "Contraception", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": ["NarrativeContent_114", "NarrativeContent_115"], + "previousId": "NarrativeContent_112", + "nextId": "NarrativeContent_114", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_114", + "extensionAttributes": [], + "name": "NC_137", + "sectionNumber": "5.4.1", + "sectionTitle": "Definitions Related to Childbearing Potential", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_113", + "nextId": "NarrativeContent_115", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_115", + "extensionAttributes": [], + "name": "NC_138", + "sectionNumber": "5.4.2", + "sectionTitle": "Contraception Requirements", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_114", + "nextId": "NarrativeContent_116", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_116", + "extensionAttributes": [], + "name": "NC_139", + "sectionNumber": "5.5", + "sectionTitle": "Lifestyle Restrictions", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_117", + "NarrativeContent_118", + "NarrativeContent_119", + "NarrativeContent_120" + ], + "previousId": "NarrativeContent_115", + "nextId": "NarrativeContent_117", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_117", + "extensionAttributes": [], + "name": "NC_140", + "sectionNumber": "5.5.1", + "sectionTitle": "Meals and Dietary Restrictions", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_116", + "nextId": "NarrativeContent_118", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_118", + "extensionAttributes": [], + "name": "NC_141", + "sectionNumber": "5.5.2", + "sectionTitle": "Caffeine, Alcohol, Tobacco,and Other Restrictions", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_117", + "nextId": "NarrativeContent_119", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_119", + "extensionAttributes": [], + "name": "NC_142", + "sectionNumber": "5.5.3", + "sectionTitle": "Physical Activity Restrictions", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_118", + "nextId": "NarrativeContent_120", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_120", + "extensionAttributes": [], + "name": "NC_143", + "sectionNumber": "5.5.4", + "sectionTitle": "Other Activity Restrictions", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_119", + "nextId": "NarrativeContent_121", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_121", + "extensionAttributes": [], + "name": "NC_144", + "sectionNumber": "5.6", + "sectionTitle": "Screen Failure and Rescreening", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_120", + "nextId": "NarrativeContent_122", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_122", + "extensionAttributes": [], + "name": "NC_145", + "sectionNumber": "6", + "sectionTitle": "TRIAL INTERVENTION AND CONCOMITANT THERAPY", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_123", + "NarrativeContent_124", + "NarrativeContent_125", + "NarrativeContent_126", + "NarrativeContent_127", + "NarrativeContent_128", + "NarrativeContent_129", + "NarrativeContent_133", + "NarrativeContent_138", + "NarrativeContent_139", + "NarrativeContent_143" + ], + "previousId": "NarrativeContent_121", + "nextId": "NarrativeContent_123", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_123", + "extensionAttributes": [], + "name": "NC_146", + "sectionNumber": "6.1", + "sectionTitle": "Overview of Trial Interventions", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_122", + "nextId": "NarrativeContent_124", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_124", + "extensionAttributes": [], + "name": "NC_147", + "sectionNumber": "6.2", + "sectionTitle": "Description of Investigational Trial Intervention", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_123", + "nextId": "NarrativeContent_125", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_125", + "extensionAttributes": [], + "name": "NC_148", + "sectionNumber": "6.3", + "sectionTitle": "Rationale for Investigational Trial Intervention Dose and Regimen", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_124", + "nextId": "NarrativeContent_126", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_126", + "extensionAttributes": [], + "name": "NC_149", + "sectionNumber": "6.4", + "sectionTitle": "Investigational Trial Intervention Administration", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_125", + "nextId": "NarrativeContent_127", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_127", + "extensionAttributes": [], + "name": "NC_150", + "sectionNumber": "6.5", + "sectionTitle": "Investigational Trial Intervention Dose Modification", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_126", + "nextId": "NarrativeContent_128", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_128", + "extensionAttributes": [], + "name": "NC_151", + "sectionNumber": "6.6", + "sectionTitle": "Management of Investigational Trial Intervention Overdose", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_127", + "nextId": "NarrativeContent_129", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_129", + "extensionAttributes": [], + "name": "NC_152", + "sectionNumber": "6.7", + "sectionTitle": "Preparation,Storage,Handling and Accountability of Investigational Trial Intervention(s)", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_130", + "NarrativeContent_131", + "NarrativeContent_132" + ], + "previousId": "NarrativeContent_128", + "nextId": "NarrativeContent_130", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_130", + "extensionAttributes": [], + "name": "NC_153", + "sectionNumber": "6.7.1", + "sectionTitle": "Preparation of Investigational Trial Intervention(s)", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_129", + "nextId": "NarrativeContent_131", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_131", + "extensionAttributes": [], + "name": "NC_154", + "sectionNumber": "6.7.2", + "sectionTitle": "Storage and Handling of Investigational Trial Intervention", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_130", + "nextId": "NarrativeContent_132", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_132", + "extensionAttributes": [], + "name": "NC_155", + "sectionNumber": "6.7.3", + "sectionTitle": "Accountability of Investigational Trial Intervention", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_131", + "nextId": "NarrativeContent_133", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_133", + "extensionAttributes": [], + "name": "NC_156", + "sectionNumber": "6.8", + "sectionTitle": "Investigational Trial Intervention Assignment,Randomisation and Blinding", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_134", + "NarrativeContent_135", + "NarrativeContent_136", + "NarrativeContent_137" + ], + "previousId": "NarrativeContent_132", + "nextId": "NarrativeContent_134", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_134", + "extensionAttributes": [], + "name": "NC_157", + "sectionNumber": "6.8.1", + "sectionTitle": "Participant Assignment to Investigational Trial Intervention", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_133", + "nextId": "NarrativeContent_135", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_135", + "extensionAttributes": [], + "name": "NC_158", + "sectionNumber": "6.8.2", + "sectionTitle": "Randomisation", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_134", + "nextId": "NarrativeContent_136", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_136", + "extensionAttributes": [], + "name": "NC_159", + "sectionNumber": "6.8.3", + "sectionTitle": "{Blinding}", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_135", + "nextId": "NarrativeContent_137", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_137", + "extensionAttributes": [], + "name": "NC_160", + "sectionNumber": "6.8.4", + "sectionTitle": "{Emergency Unblinding at the Site}", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_136", + "nextId": "NarrativeContent_138", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_138", + "extensionAttributes": [], + "name": "NC_161", + "sectionNumber": "6.9", + "sectionTitle": "Investigational Trial Intervention Compliance", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_137", + "nextId": "NarrativeContent_139", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_139", + "extensionAttributes": [], + "name": "NC_162", + "sectionNumber": "6.10", + "sectionTitle": "Description of Non-Investigational Trial Intervention(s)", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_140", + "NarrativeContent_141", + "NarrativeContent_142" + ], + "previousId": "NarrativeContent_138", + "nextId": "NarrativeContent_140", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_140", + "extensionAttributes": [], + "name": "NC_163", + "sectionNumber": "6.10.1", + "sectionTitle": "{Background Intervention}", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_139", + "nextId": "NarrativeContent_141", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_141", + "extensionAttributes": [], + "name": "NC_164", + "sectionNumber": "6.10.2", + "sectionTitle": "{Rescue Therapy}", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_140", + "nextId": "NarrativeContent_142", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_142", + "extensionAttributes": [], + "name": "NC_165", + "sectionNumber": "6.10.3", + "sectionTitle": "{Other Non-investigational Intervention}", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_141", + "nextId": "NarrativeContent_143", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_143", + "extensionAttributes": [], + "name": "NC_166", + "sectionNumber": "6.11", + "sectionTitle": "Concomitant Therapy", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": ["NarrativeContent_144", "NarrativeContent_145"], + "previousId": "NarrativeContent_142", + "nextId": "NarrativeContent_144", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_144", + "extensionAttributes": [], + "name": "NC_167", + "sectionNumber": "6.11.1", + "sectionTitle": "{Prohibited Concomitant Therapy}", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_143", + "nextId": "NarrativeContent_145", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_145", + "extensionAttributes": [], + "name": "NC_168", + "sectionNumber": "6.11.2", + "sectionTitle": "{Permitted Concomitant Therapy}", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_144", + "nextId": "NarrativeContent_146", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_146", + "extensionAttributes": [], + "name": "NC_169", + "sectionNumber": "7", + "sectionTitle": "PARTICIPANT DISCONTINUATION OF TRIAL INTERVENTION AND DISCONTINUATION OR WITHDRAWAL FROM TRIAL", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_147", + "NarrativeContent_151", + "NarrativeContent_152" + ], + "previousId": "NarrativeContent_145", + "nextId": "NarrativeContent_147", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_147", + "extensionAttributes": [], + "name": "NC_170", + "sectionNumber": "7.1", + "sectionTitle": "Discontinuation of Trial Intervention for Individual Participants", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_148", + "NarrativeContent_149", + "NarrativeContent_150" + ], + "previousId": "NarrativeContent_146", + "nextId": "NarrativeContent_148", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_148", + "extensionAttributes": [], + "name": "NC_171", + "sectionNumber": "7.1.1", + "sectionTitle": "Permanent Discontinuation of Trial Intervention", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_147", + "nextId": "NarrativeContent_149", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_149", + "extensionAttributes": [], + "name": "NC_172", + "sectionNumber": "7.1.2", + "sectionTitle": "Temporary Discontinuation of Trial Intervention", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_148", + "nextId": "NarrativeContent_150", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_150", + "extensionAttributes": [], + "name": "NC_173", + "sectionNumber": "7.1.3", + "sectionTitle": "Rechallenge", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_149", + "nextId": "NarrativeContent_151", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_151", + "extensionAttributes": [], + "name": "NC_174", + "sectionNumber": "7.2", + "sectionTitle": "Discontinuation or Withdrawal from the Trial", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_150", + "nextId": "NarrativeContent_152", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_152", + "extensionAttributes": [], + "name": "NC_175", + "sectionNumber": "7.3", + "sectionTitle": "Lost to Follow-Up", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_151", + "nextId": "NarrativeContent_153", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_153", + "extensionAttributes": [], + "name": "NC_176", + "sectionNumber": "8", + "sectionTitle": "TRIAL ASSESSMENTS AND PROCEDURES", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_154", + "NarrativeContent_155", + "NarrativeContent_156", + "NarrativeContent_157", + "NarrativeContent_164", + "NarrativeContent_165", + "NarrativeContent_169", + "NarrativeContent_170" + ], + "previousId": "NarrativeContent_152", + "nextId": "NarrativeContent_154", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_154", + "extensionAttributes": [], + "name": "NC_177", + "sectionNumber": "8.1", + "sectionTitle": "Trial Assessments and Procedures Considerations", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_153", + "nextId": "NarrativeContent_155", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_155", + "extensionAttributes": [], + "name": "NC_178", + "sectionNumber": "8.2", + "sectionTitle": "Screening/Baseline Assessments and Procedures", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_154", + "nextId": "NarrativeContent_156", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_156", + "extensionAttributes": [], + "name": "NC_179", + "sectionNumber": "8.3", + "sectionTitle": "Efficacy Assessments and Procedures", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_155", + "nextId": "NarrativeContent_157", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_157", + "extensionAttributes": [], + "name": "NC_180", + "sectionNumber": "8.4", + "sectionTitle": "Safety Assessments and Procedures", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_158", + "NarrativeContent_159", + "NarrativeContent_160", + "NarrativeContent_161", + "NarrativeContent_162", + "NarrativeContent_163" + ], + "previousId": "NarrativeContent_156", + "nextId": "NarrativeContent_158", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_158", + "extensionAttributes": [], + "name": "NC_181", + "sectionNumber": "8.4.1", + "sectionTitle": "{Physical Examination}", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_157", + "nextId": "NarrativeContent_159", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_159", + "extensionAttributes": [], + "name": "NC_182", + "sectionNumber": "8.4.2", + "sectionTitle": "{Vital Signs}", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_158", + "nextId": "NarrativeContent_160", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_160", + "extensionAttributes": [], + "name": "NC_183", + "sectionNumber": "8.4.3", + "sectionTitle": "{Electrocardiograms}", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_159", + "nextId": "NarrativeContent_161", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_161", + "extensionAttributes": [], + "name": "NC_184", + "sectionNumber": "8.4.4", + "sectionTitle": "{Clinical Laboratory Assessments}", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_160", + "nextId": "NarrativeContent_162", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_162", + "extensionAttributes": [], + "name": "NC_185", + "sectionNumber": "8.4.5", + "sectionTitle": "{Pregnancy Testing}", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_161", + "nextId": "NarrativeContent_163", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_163", + "extensionAttributes": [], + "name": "NC_186", + "sectionNumber": "8.4.6", + "sectionTitle": "{Suicidal Ideation and Behaviour Risk Monitoring}", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_162", + "nextId": "NarrativeContent_164", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_164", + "extensionAttributes": [], + "name": "NC_187", + "sectionNumber": "8.5", + "sectionTitle": "Pharmacokinetics", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_163", + "nextId": "NarrativeContent_165", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_165", + "extensionAttributes": [], + "name": "NC_188", + "sectionNumber": "8.6", + "sectionTitle": "Biomarkers", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_166", + "NarrativeContent_167", + "NarrativeContent_168" + ], + "previousId": "NarrativeContent_164", + "nextId": "NarrativeContent_166", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_166", + "extensionAttributes": [], + "name": "NC_189", + "sectionNumber": "8.6.1", + "sectionTitle": "Genetics and Pharmacogenomics", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_165", + "nextId": "NarrativeContent_167", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_167", + "extensionAttributes": [], + "name": "NC_190", + "sectionNumber": "8.6.2", + "sectionTitle": "Pharmacodynamic Biomarkers", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_166", + "nextId": "NarrativeContent_168", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_168", + "extensionAttributes": [], + "name": "NC_191", + "sectionNumber": "8.6.3", + "sectionTitle": "{Other Biomarkers}", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_167", + "nextId": "NarrativeContent_169", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_169", + "extensionAttributes": [], + "name": "NC_192", + "sectionNumber": "8.7", + "sectionTitle": "Immunogenicity Assessments", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_168", + "nextId": "NarrativeContent_170", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_170", + "extensionAttributes": [], + "name": "NC_193", + "sectionNumber": "8.8", + "sectionTitle": "Medical Resource Utilisation and Health Economics", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_169", + "nextId": "NarrativeContent_171", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_171", + "extensionAttributes": [], + "name": "NC_194", + "sectionNumber": "9", + "sectionTitle": "ADVERSE EVENTS,SERIOUS ADVERSE EVENTS,PRODUCT COMPLAINTS,PREGNANCY AND POSTPARTUM INFORMATION", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_172", + "NarrativeContent_176", + "NarrativeContent_177", + "NarrativeContent_182", + "NarrativeContent_186" + ], + "previousId": "NarrativeContent_170", + "nextId": "NarrativeContent_172", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_172", + "extensionAttributes": [], + "name": "NC_195", + "sectionNumber": "9.1", + "sectionTitle": "Definitions", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_173", + "NarrativeContent_174", + "NarrativeContent_175" + ], + "previousId": "NarrativeContent_171", + "nextId": "NarrativeContent_173", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_173", + "extensionAttributes": [], + "name": "NC_196", + "sectionNumber": "9.1.1", + "sectionTitle": "Definitions of Adverse Events", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_172", + "nextId": "NarrativeContent_174", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_174", + "extensionAttributes": [], + "name": "NC_197", + "sectionNumber": "9.1.2", + "sectionTitle": "Definitions of Serious Adverse Events", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_173", + "nextId": "NarrativeContent_175", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_175", + "extensionAttributes": [], + "name": "NC_198", + "sectionNumber": "9.1.3", + "sectionTitle": "{Definition of Medical Device Product Complaints}", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_174", + "nextId": "NarrativeContent_176", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_176", + "extensionAttributes": [], + "name": "NC_199", + "sectionNumber": "9.2", + "sectionTitle": "Timing and Mechanism for Collection and Reporting", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_175", + "nextId": "NarrativeContent_177", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_177", + "extensionAttributes": [], + "name": "NC_200", + "sectionNumber": "9.3", + "sectionTitle": "Identification,Recording and Follow-Up", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_178", + "NarrativeContent_179", + "NarrativeContent_180", + "NarrativeContent_181" + ], + "previousId": "NarrativeContent_176", + "nextId": "NarrativeContent_178", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_178", + "extensionAttributes": [], + "name": "NC_201", + "sectionNumber": "9.3.1", + "sectionTitle": "Identification", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_177", + "nextId": "NarrativeContent_179", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_179", + "extensionAttributes": [], + "name": "NC_202", + "sectionNumber": "9.3.2", + "sectionTitle": "Severity", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_178", + "nextId": "NarrativeContent_180", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_180", + "extensionAttributes": [], + "name": "NC_203", + "sectionNumber": "9.3.3", + "sectionTitle": "Causality", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_179", + "nextId": "NarrativeContent_181", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_181", + "extensionAttributes": [], + "name": "NC_204", + "sectionNumber": "9.3.4", + "sectionTitle": "Follow-up", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_180", + "nextId": "NarrativeContent_182", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_182", + "extensionAttributes": [], + "name": "NC_205", + "sectionNumber": "9.4", + "sectionTitle": "Reporting", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_183", + "NarrativeContent_184", + "NarrativeContent_185" + ], + "previousId": "NarrativeContent_181", + "nextId": "NarrativeContent_183", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_183", + "extensionAttributes": [], + "name": "NC_206", + "sectionNumber": "9.4.1", + "sectionTitle": "Regulatory Reporting Requirements", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_182", + "nextId": "NarrativeContent_184", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_184", + "extensionAttributes": [], + "name": "NC_207", + "sectionNumber": "9.4.2", + "sectionTitle": "Adverse Events of Special Interest", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_183", + "nextId": "NarrativeContent_185", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_185", + "extensionAttributes": [], + "name": "NC_208", + "sectionNumber": "9.4.3", + "sectionTitle": "Disease-related Events or Outcomes Not Qualifying as AEs or SAEs", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_184", + "nextId": "NarrativeContent_186", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_186", + "extensionAttributes": [], + "name": "NC_209", + "sectionNumber": "9.5", + "sectionTitle": "Pregnancy and Postpartum Information", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": ["NarrativeContent_187", "NarrativeContent_188"], + "previousId": "NarrativeContent_185", + "nextId": "NarrativeContent_187", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_187", + "extensionAttributes": [], + "name": "NC_210", + "sectionNumber": "9.5.1", + "sectionTitle": "{Participants Who Become Pregnant During the Trial}", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_186", + "nextId": "NarrativeContent_188", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_188", + "extensionAttributes": [], + "name": "NC_211", + "sectionNumber": "9.5.2", + "sectionTitle": "{Participants Whose Partners Become Pregnant}", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_187", + "nextId": "NarrativeContent_189", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_189", + "extensionAttributes": [], + "name": "NC_212", + "sectionNumber": "10", + "sectionTitle": "STATISTICAL CONSIDERATIONS", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_190", + "NarrativeContent_191", + "NarrativeContent_192", + "NarrativeContent_193", + "NarrativeContent_199", + "NarrativeContent_205", + "NarrativeContent_206", + "NarrativeContent_207", + "NarrativeContent_208", + "NarrativeContent_209", + "NarrativeContent_210" + ], + "previousId": "NarrativeContent_188", + "nextId": "NarrativeContent_190", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_190", + "extensionAttributes": [], + "name": "NC_213", + "sectionNumber": "10.1", + "sectionTitle": "General Considerations", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_189", + "nextId": "NarrativeContent_191", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_191", + "extensionAttributes": [], + "name": "NC_214", + "sectionNumber": "10.2", + "sectionTitle": "Analysis Sets", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_190", + "nextId": "NarrativeContent_192", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_192", + "extensionAttributes": [], + "name": "NC_215", + "sectionNumber": "10.3", + "sectionTitle": "Analyses of Demographics and Other Baseline Variables", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_191", + "nextId": "NarrativeContent_193", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_193", + "extensionAttributes": [], + "name": "NC_216", + "sectionNumber": "10.4", + "sectionTitle": "Analyses Associated with the Primary Objective(s)", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_194", + "NarrativeContent_195", + "NarrativeContent_196", + "NarrativeContent_197", + "NarrativeContent_198" + ], + "previousId": "NarrativeContent_192", + "nextId": "NarrativeContent_194", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_194", + "extensionAttributes": [], + "name": "NC_217", + "sectionNumber": "10.4.1", + "sectionTitle": "Statistical Method of Analysis", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_193", + "nextId": "NarrativeContent_195", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_195", + "extensionAttributes": [], + "name": "NC_218", + "sectionNumber": "10.4.2", + "sectionTitle": "Handling of Data in Relation to Primary Estimand(s)", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_194", + "nextId": "NarrativeContent_196", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_196", + "extensionAttributes": [], + "name": "NC_219", + "sectionNumber": "10.4.3", + "sectionTitle": "Handling of Missing Data", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_195", + "nextId": "NarrativeContent_197", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_197", + "extensionAttributes": [], + "name": "NC_220", + "sectionNumber": "10.4.4", + "sectionTitle": "{Sensitivity Analysis}", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_196", + "nextId": "NarrativeContent_198", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_198", + "extensionAttributes": [], + "name": "NC_221", + "sectionNumber": "10.4.5", + "sectionTitle": "{Supplementary Analysis}", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_197", + "nextId": "NarrativeContent_199", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_199", + "extensionAttributes": [], + "name": "NC_222", + "sectionNumber": "10.5", + "sectionTitle": "Analysis Associated with the Secondary Objective(s)", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_200", + "NarrativeContent_201", + "NarrativeContent_202", + "NarrativeContent_203", + "NarrativeContent_204" + ], + "previousId": "NarrativeContent_198", + "nextId": "NarrativeContent_200", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_200", + "extensionAttributes": [], + "name": "NC_223", + "sectionNumber": "10.5.1", + "sectionTitle": "{Statistical Method of Analysis}", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_199", + "nextId": "NarrativeContent_201", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_201", + "extensionAttributes": [], + "name": "NC_224", + "sectionNumber": "10.5.2", + "sectionTitle": "{Handling of Data in Relation to Secondary Estimand(s)}", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_200", + "nextId": "NarrativeContent_202", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_202", + "extensionAttributes": [], + "name": "NC_225", + "sectionNumber": "10.5.3", + "sectionTitle": "{Handling of Missing Data}", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_201", + "nextId": "NarrativeContent_203", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_203", + "extensionAttributes": [], + "name": "NC_226", + "sectionNumber": "10.5.4", + "sectionTitle": "{Sensitivity Analyses}", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_202", + "nextId": "NarrativeContent_204", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_204", + "extensionAttributes": [], + "name": "NC_227", + "sectionNumber": "10.5.5", + "sectionTitle": "{Supplementary Analyses}", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_203", + "nextId": "NarrativeContent_205", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_205", + "extensionAttributes": [], + "name": "NC_228", + "sectionNumber": "10.6", + "sectionTitle": "Analysis Associated with the Exploratory Objective(s)", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_204", + "nextId": "NarrativeContent_206", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_206", + "extensionAttributes": [], + "name": "NC_229", + "sectionNumber": "10.7", + "sectionTitle": "Safety Analyses", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_205", + "nextId": "NarrativeContent_207", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_207", + "extensionAttributes": [], + "name": "NC_230", + "sectionNumber": "10.8", + "sectionTitle": "Other Analyses", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_206", + "nextId": "NarrativeContent_208", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_208", + "extensionAttributes": [], + "name": "NC_231", + "sectionNumber": "10.9", + "sectionTitle": "Interim Analyses", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_207", + "nextId": "NarrativeContent_209", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_209", + "extensionAttributes": [], + "name": "NC_232", + "sectionNumber": "10.10", + "sectionTitle": "Multiplicity Adjustments", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_208", + "nextId": "NarrativeContent_210", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_210", + "extensionAttributes": [], + "name": "NC_233", + "sectionNumber": "10.11", + "sectionTitle": "Sample Size Determination", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_209", + "nextId": "NarrativeContent_211", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_211", + "extensionAttributes": [], + "name": "NC_234", + "sectionNumber": "11", + "sectionTitle": "TRIAL OVERSIGHT AND OTHER GENERAL CONSIDERATIONS", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_212", + "NarrativeContent_213", + "NarrativeContent_216", + "NarrativeContent_219", + "NarrativeContent_220", + "NarrativeContent_221", + "NarrativeContent_222", + "NarrativeContent_223", + "NarrativeContent_224", + "NarrativeContent_225" + ], + "previousId": "NarrativeContent_210", + "nextId": "NarrativeContent_212", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_212", + "extensionAttributes": [], + "name": "NC_235", + "sectionNumber": "11.1", + "sectionTitle": "Regulatory and Ethical Considerations", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_211", + "nextId": "NarrativeContent_213", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_213", + "extensionAttributes": [], + "name": "NC_236", + "sectionNumber": "11.2", + "sectionTitle": "Trial Oversight", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": ["NarrativeContent_214", "NarrativeContent_215"], + "previousId": "NarrativeContent_212", + "nextId": "NarrativeContent_214", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_214", + "extensionAttributes": [], + "name": "NC_237", + "sectionNumber": "11.2.1", + "sectionTitle": "Investigator Responsibilities", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_213", + "nextId": "NarrativeContent_215", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_215", + "extensionAttributes": [], + "name": "NC_238", + "sectionNumber": "11.2.2", + "sectionTitle": "Sponsor Responsibilities", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_214", + "nextId": "NarrativeContent_216", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_216", + "extensionAttributes": [], + "name": "NC_239", + "sectionNumber": "11.3", + "sectionTitle": "Informed Consent Process", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": ["NarrativeContent_217", "NarrativeContent_218"], + "previousId": "NarrativeContent_215", + "nextId": "NarrativeContent_217", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_217", + "extensionAttributes": [], + "name": "NC_240", + "sectionNumber": "11.3.1", + "sectionTitle": "Informed Consent for Rescreening", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_216", + "nextId": "NarrativeContent_218", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_218", + "extensionAttributes": [], + "name": "NC_241", + "sectionNumber": "11.3.2", + "sectionTitle": "Informed Consent for Use of Remaining Samples in Exploratory Research", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_217", + "nextId": "NarrativeContent_219", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_219", + "extensionAttributes": [], + "name": "NC_242", + "sectionNumber": "11.4", + "sectionTitle": "Committees", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_218", + "nextId": "NarrativeContent_220", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_220", + "extensionAttributes": [], + "name": "NC_243", + "sectionNumber": "11.5", + "sectionTitle": "Insurance and Indemnity", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_219", + "nextId": "NarrativeContent_221", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_221", + "extensionAttributes": [], + "name": "NC_244", + "sectionNumber": "11.6", + "sectionTitle": "Risk Management", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_220", + "nextId": "NarrativeContent_222", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_222", + "extensionAttributes": [], + "name": "NC_245", + "sectionNumber": "11.7", + "sectionTitle": "Data Governance", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_221", + "nextId": "NarrativeContent_223", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_223", + "extensionAttributes": [], + "name": "NC_246", + "sectionNumber": "11.8", + "sectionTitle": "Source Data", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_222", + "nextId": "NarrativeContent_224", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_224", + "extensionAttributes": [], + "name": "NC_247", + "sectionNumber": "11.9", + "sectionTitle": "Protocol Deviations", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_223", + "nextId": "NarrativeContent_225", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_225", + "extensionAttributes": [], + "name": "NC_248", + "sectionNumber": "11.10", + "sectionTitle": "Early Site Closure", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_224", + "nextId": "NarrativeContent_226", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_226", + "extensionAttributes": [], + "name": "NC_249", + "sectionNumber": "12", + "sectionTitle": "APPENDIX: SUPPORTING DETAILS", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_227", + "NarrativeContent_228", + "NarrativeContent_229" + ], + "previousId": "NarrativeContent_225", + "nextId": "NarrativeContent_227", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_227", + "extensionAttributes": [], + "name": "NC_250", + "sectionNumber": "12.1", + "sectionTitle": "Clinical Laboratory Tests", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_226", + "nextId": "NarrativeContent_228", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_228", + "extensionAttributes": [], + "name": "NC_251", + "sectionNumber": "12.2", + "sectionTitle": "Country/Region-Specific Differences", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_227", + "nextId": "NarrativeContent_229", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_229", + "extensionAttributes": [], + "name": "NC_252", + "sectionNumber": "12.3", + "sectionTitle": "Prior Protocol Amendment(s)", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_228", + "nextId": "NarrativeContent_230", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_230", + "extensionAttributes": [], + "name": "NC_253", + "sectionNumber": "13", + "sectionTitle": "APPENDIX: GLOSSARY OF TERMS AND ABBREVIATIONS", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_229", + "nextId": "NarrativeContent_231", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_231", + "extensionAttributes": [], + "name": "NC_254", + "sectionNumber": "14", + "sectionTitle": "APPENDIX: REFERENCES", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_230", + "nextId": null, + "contentItemId": null, + "instanceType": "NarrativeContent" + } + ], + "notes": [], + "instanceType": "StudyDefinitionDocumentVersion" + } + ], + "childIds": [], + "notes": [], + "instanceType": "StudyDefinitionDocument" + } + ], + "instanceType": "Study" + }, + "usdmVersion": "4.0.0", + "systemName": "CDISC USDM E2J", + "systemVersion": "0.62.0" +} diff --git a/tests/resources/CoreIssue715/CDISC_Pilot_Study_Invalid.json b/tests/resources/CoreIssue715/CDISC_Pilot_Study_Invalid.json new file mode 100644 index 000000000..906cb2781 --- /dev/null +++ b/tests/resources/CoreIssue715/CDISC_Pilot_Study_Invalid.json @@ -0,0 +1,20688 @@ +{ + "study": { + "id": null, + "name": "CDISC PILOT - LZZT", + "description": null, + "label": null, + "versions": [ + { + "id": "StudyVersion_1", + "extensionAttributes": [], + "versionIdentifier": "2", + "rationale": "The discontinuation rate associated with this oral dosing regimen was 58.6% in previous studies, and alternative clinical strategies have been sought to improve tolerance for the compound. To that end, development of a Transdermal Therapeutic System (TTS) has been initiated.", + "documentVersionIds": [ + "StudyDefinitionDocumentVersion_1", + "StudyDefinitionDocumentVersion_2" + ], + "dateValues": [ + { + "id": "GovernanceDate_1", + "extensionAttributes": [], + "name": "D_APPROVE", + "label": "Design Approval", + "description": "Design approval date", + "type": { + "id": "Code_13", + "extensionAttributes": [], + "code": 71476, + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Approval Date", + "instanceType": "Code" + }, + "dateValue": "2006-06-01", + "geographicScopes": [ + { + "id": "GeographicScope_1", + "extensionAttributes": [], + "type": { + "id": "Code_14", + "extensionAttributes": [], + "code": "C68846", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Global", + "instanceType": "Code" + }, + "code": true, + "instanceType": "GeographicScope" + } + ], + "instanceType": "GovernanceDate" + } + ], + "amendments": [ + { + "id": "StudyAmendment_1", + "extensionAttributes": [], + "name": "AMEND_1", + "label": "Amendment 1", + "description": "The first amendment", + "number": "1", + "summary": "Updated inclusion criteria", + "primaryReason": { + "id": "StudyAmendmentReason_1", + "extensionAttributes": [], + "code": { + "id": "Code_88", + "extensionAttributes": [], + "code": "C99904x3", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "IRB/IEC Feedback", + "instanceType": "Code" + }, + "otherReason": null, + "instanceType": "StudyAmendmentReason" + }, + "secondaryReasons": [ + { + "id": "StudyAmendmentReason_2", + "extensionAttributes": [], + "code": { + "id": "Code_89", + "extensionAttributes": [], + "code": "C17649", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Other", + "instanceType": "Code" + }, + "otherReason": "Fix typographical errors", + "instanceType": "StudyAmendmentReason" + } + ], + "changes": [ + { + "id": "StudyChange_1", + "extensionAttributes": [], + "name": "AMEND_CHG_1", + "label": "", + "description": "", + "summary": "Fixed F", + "rationale": "Disaster!", + "changedSections": [ + { + "id": "DocumentContentReference_1", + "extensionAttributes": [], + "sectionNumber": "1.5", + "sectionTitle": "Header 1.5", + "appliesToId": "StudyDefinitionDocument_1", + "instanceType": "DocumentContentReference" + }, + { + "id": "DocumentContentReference_2", + "extensionAttributes": [], + "sectionNumber": "1.6", + "sectionTitle": "Header 1.6", + "appliesToId": "StudyDefinitionDocument_1", + "instanceType": "DocumentContentReference" + } + ], + "instanceType": "StudyChange" + } + ], + "impacts": [ + { + "id": "StudyAmendmentImpact_1", + "extensionAttributes": [], + "type": { + "id": "Code_93", + "extensionAttributes": [], + "code": "C99912x1", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Study Subject Safety", + "instanceType": "Code" + }, + "text": "Amendment 1", + "isSubstantial": false, + "notes": [], + "instanceType": "StudyAmendmentImpact" + } + ], + "geographicScopes": [ + { + "id": "GeographicScope_5", + "extensionAttributes": [], + "type": { + "id": "Code_92", + "extensionAttributes": [], + "code": "C68846", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Global", + "instanceType": "Code" + }, + "code": null, + "instanceType": "GeographicScope" + } + ], + "enrollments": [ + { + "id": "SubjectEnrollment_1", + "extensionAttributes": [], + "name": "XXX", + "label": null, + "description": null, + "quantity": { + "id": "Quantity_1", + "extensionAttributes": [], + "value": 15.0, + "unit": null, + "instanceType": "Quantity" + }, + "forGeographicScope": { + "id": "GeographicScope_4", + "extensionAttributes": [], + "type": { + "id": "Code_91", + "extensionAttributes": [], + "code": "C41129", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Region", + "instanceType": "Code" + }, + "code": { + "id": "AliasCode_22", + "extensionAttributes": [], + "standardCode": { + "id": "Code_90", + "extensionAttributes": [], + "code": "150", + "codeSystem": "ISO 3166 1 alpha3", + "codeSystemVersion": "2020-08", + "decode": "Europe", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "instanceType": "GeographicScope" + }, + "forStudyCohortId": null, + "forStudySiteId": null, + "instanceType": "SubjectEnrollment" + } + ], + "dateValues": [ + { + "id": "GovernanceDate_3", + "extensionAttributes": [], + "name": "AMEND_DATE_1", + "label": "Protocol Approval", + "description": "Amendment approval date", + "type": { + "id": "Code_18", + "extensionAttributes": [], + "code": "C71476", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Approval Date", + "instanceType": "Code" + }, + "dateValue": "2006-06-01", + "geographicScopes": [ + { + "id": "GeographicScope_3", + "extensionAttributes": [], + "type": { + "id": "Code_19", + "extensionAttributes": [], + "code": "C68846", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Global", + "instanceType": "Code" + }, + "code": null, + "instanceType": "GeographicScope" + } + ], + "instanceType": "GovernanceDate" + } + ], + "previousId": null, + "notes": [], + "instanceType": "StudyAmendment" + } + ], + "businessTherapeuticAreas": [ + { + "id": "Code_8", + "extensionAttributes": [], + "code": "PHARMA", + "codeSystem": "SPONSOR", + "codeSystemVersion": "12", + "decode": "Eli Lilly", + "instanceType": "Code" + } + ], + "studyIdentifiers": [ + { + "id": "StudyIdentifier_1", + "extensionAttributes": [], + "text": "H2Q-MC-LZZT", + "scopeId": "Organization_1", + "instanceType": "StudyIdentifier" + }, + { + "id": "StudyIdentifier_2", + "extensionAttributes": [], + "text": "NCT12345678", + "scopeId": "Organization_2", + "instanceType": "StudyIdentifier" + } + ], + "referenceIdentifiers": [ + { + "id": "ReferenceIdentifier_1", + "extensionAttributes": [], + "text": "LZZT CD Plan 1", + "scopeId": "Organization_1", + "instanceType": "ReferenceIdentifier", + "type": { + "id": "Code_94", + "extensionAttributes": [], + "code": "C142424", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Clinical Development Plan", + "instanceType": "Code" + } + } + ], + "studyDesigns": [ + { + "id": "InterventionalStudyDesign_1", + "extensionAttributes": [], + "name": "Study Design 1", + "label": "USDM Example Study Design", + "description": "The main design for the study", + "studyType": { + "id": "Code_159", + "extensionAttributes": [], + "code": "C98388", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Interventional Study", + "instanceType": "Code" + }, + "studyPhase": { + "id": "AliasCode_24", + "extensionAttributes": [], + "standardCode": { + "id": "Code_160", + "extensionAttributes": [], + "code": "C15601", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Phase II Trial", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "therapeuticAreas": [ + { + "id": "Code_149", + "extensionAttributes": [], + "code": "MILD_MOD_ALZ", + "codeSystem": "SPONSOR", + "codeSystemVersion": "12", + "decode": "Mild to Moderate Alzheimer's Disease", + "instanceType": "Code" + }, + { + "id": "Code_150", + "extensionAttributes": [], + "code": "26929004", + "codeSystem": "SNOMED", + "codeSystemVersion": "'2025-02-01'", + "decode": "Alzheimer's disease", + "instanceType": "Code" + } + ], + "characteristics": [ + { + "id": "Code_157", + "extensionAttributes": [], + "code": "C99907x1", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "EXTENSION", + "instanceType": "Code" + }, + { + "id": "Code_158", + "extensionAttributes": [], + "code": "C98704", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "ADAPTIVE", + "instanceType": "Code" + } + ], + "encounters": [ + { + "id": "Encounter_1", + "extensionAttributes": [], + "name": "E1", + "label": "Screening 1", + "description": "Screening encounter", + "type": { + "id": "Code_98", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": null, + "nextId": "Encounter_2", + "scheduledAtId": null, + "environmentalSettings": [ + { + "id": "Code_99", + "extensionAttributes": [], + "code": "C51282", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "CLINIC", + "instanceType": "Code" + } + ], + "contactModes": { + "id": "Code_100", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "IN PERSON", + "instanceType": "Code" + }, + "transitionStartRule": { + "id": "TransitionRule_1", + "extensionAttributes": [], + "name": "ENCOUNTER_START_RULE_1", + "label": null, + "description": null, + "text": "Subject identifier", + "instanceType": "TransitionRule" + }, + "transitionEndRule": { + "id": "TransitionRule_2", + "extensionAttributes": [], + "name": "ENCOUNTER_START_RULE_1", + "label": null, + "description": null, + "text": "completion of screening activities", + "instanceType": "TransitionRule" + }, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_2", + "extensionAttributes": [], + "name": "E2", + "label": "Screening 2", + "description": "Screening encounter - Ambulatory ECG Placement", + "type": { + "id": "Code_101", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_1", + "nextId": "Encounter_3", + "scheduledAtId": "Timing_2", + "environmentalSettings": [ + { + "id": "Code_102", + "extensionAttributes": [], + "code": "C51282", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "CLINIC", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_103", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "IN PERSON", + "instanceType": "Code" + } + ], + "transitionStartRule": null, + "transitionEndRule": { + "id": "TransitionRule_3", + "extensionAttributes": [], + "name": "ENCOUNTER_START_RULE_2", + "label": null, + "description": null, + "text": "subject leaves clinic after connection of ambulatory ECG machine", + "instanceType": "TransitionRule" + }, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_3", + "extensionAttributes": [], + "name": "E3", + "label": "Baseline", + "description": "Baseline encounter - Ambulatory ECG Removal", + "type": { + "id": "Code_104", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_2", + "nextId": "Encounter_4", + "scheduledAtId": null, + "environmentalSettings": [ + { + "id": "Code_105", + "extensionAttributes": [], + "code": "C51282", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "CLINIC", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_106", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "IN PERSON", + "instanceType": "Code" + } + ], + "transitionStartRule": { + "id": "TransitionRule_4", + "extensionAttributes": [], + "name": "ENCOUNTER_START_RULE_3", + "label": null, + "description": null, + "text": "subject has connection of ambulatory ECG machine removed", + "instanceType": "TransitionRule" + }, + "transitionEndRule": { + "id": "TransitionRule_5", + "extensionAttributes": [], + "name": "ENCOUNTER_START_RULE_3", + "label": null, + "description": null, + "text": "Radomized", + "instanceType": "TransitionRule" + }, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_4", + "extensionAttributes": [], + "name": "E4", + "label": "Week 2", + "description": "Day 14", + "type": { + "id": "Code_107", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_3", + "nextId": "Encounter_5", + "scheduledAtId": "Timing_4", + "environmentalSettings": [ + { + "id": "Code_108", + "extensionAttributes": [], + "code": "C51282", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "CLINIC", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_109", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "IN PERSON", + "instanceType": "Code" + } + ], + "transitionStartRule": null, + "transitionEndRule": null, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_5", + "extensionAttributes": [], + "name": "E5", + "label": "Week 4", + "description": "Day 28", + "type": { + "id": "Code_110", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_4", + "nextId": "Encounter_6", + "scheduledAtId": "Timing_5", + "environmentalSettings": [ + { + "id": "Code_111", + "extensionAttributes": [], + "code": "C51282", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "CLINIC", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_112", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "IN PERSON", + "instanceType": "Code" + } + ], + "transitionStartRule": null, + "transitionEndRule": null, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_6", + "extensionAttributes": [], + "name": "E7", + "label": "Week 6", + "description": "Day 42", + "type": { + "id": "Code_113", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_5", + "nextId": "Encounter_7", + "scheduledAtId": "Timing_6", + "environmentalSettings": [ + { + "id": "Code_114", + "extensionAttributes": [], + "code": "C51282", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "CLINIC", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_115", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "IN PERSON", + "instanceType": "Code" + } + ], + "transitionStartRule": null, + "transitionEndRule": null, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_7", + "extensionAttributes": [], + "name": "E8", + "label": "Week 8", + "description": "Day 56", + "type": { + "id": "Code_116", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_6", + "nextId": "Encounter_8", + "scheduledAtId": "Timing_7", + "environmentalSettings": [ + { + "id": "Code_117", + "extensionAttributes": [], + "code": "C51282", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "CLINIC", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_118", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "IN PERSON", + "instanceType": "Code" + }, + { + "id": "Code_119", + "extensionAttributes": [], + "code": "C171537", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "TELEPHONE CALL", + "instanceType": "Code" + } + ], + "transitionStartRule": null, + "transitionEndRule": null, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_8", + "extensionAttributes": [], + "name": "E9", + "label": "Week 12", + "description": "Day 84", + "type": { + "id": "Code_120", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_7", + "nextId": "Encounter_9", + "scheduledAtId": "Timing_9", + "environmentalSettings": [ + { + "id": "Code_121", + "extensionAttributes": [], + "code": "C51282", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "CLINIC", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_122", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "IN PERSON", + "instanceType": "Code" + }, + { + "id": "Code_123", + "extensionAttributes": [], + "code": "C171537", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "TELEPHONE CALL", + "instanceType": "Code" + } + ], + "transitionStartRule": null, + "transitionEndRule": null, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_9", + "extensionAttributes": [], + "name": "E10", + "label": "Week 16", + "description": "Day 112", + "type": { + "id": "Code_124", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_8", + "nextId": "Encounter_10", + "scheduledAtId": "Timing_11", + "environmentalSettings": [ + { + "id": "Code_125", + "extensionAttributes": [], + "code": "C51282", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "CLINIC", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_126", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "IN PERSON", + "instanceType": "Code" + }, + { + "id": "Code_127", + "extensionAttributes": [], + "code": "C171537", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "TELEPHONE CALL", + "instanceType": "Code" + } + ], + "transitionStartRule": null, + "transitionEndRule": null, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_10", + "extensionAttributes": [], + "name": "E11", + "label": "Week 20", + "description": "Day 140", + "type": { + "id": "Code_128", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_9", + "nextId": "Encounter_11", + "scheduledAtId": "Timing_13", + "environmentalSettings": [ + { + "id": "Code_129", + "extensionAttributes": [], + "code": "C51282", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "CLINIC", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_130", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "IN PERSON", + "instanceType": "Code" + }, + { + "id": "Code_131", + "extensionAttributes": [], + "code": "C171537", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "TELEPHONE CALL", + "instanceType": "Code" + } + ], + "transitionStartRule": null, + "transitionEndRule": null, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_11", + "extensionAttributes": [], + "name": "E12", + "label": "Week 24", + "description": "Day 168", + "type": { + "id": "Code_132", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_10", + "nextId": "Encounter_12", + "scheduledAtId": "Timing_15", + "environmentalSettings": [ + { + "id": "Code_133", + "extensionAttributes": [], + "code": "C51282", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "CLINIC", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_134", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "IN PERSON", + "instanceType": "Code" + } + ], + "transitionStartRule": null, + "transitionEndRule": null, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_12", + "extensionAttributes": [], + "name": "E13", + "label": "Week 26", + "description": "Day 182", + "type": { + "id": "Code_135", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_11", + "nextId": null, + "scheduledAtId": "Timing_16", + "environmentalSettings": [ + { + "id": "Code_136", + "extensionAttributes": [], + "code": "C51282", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "CLINIC", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_137", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "IN PERSON", + "instanceType": "Code" + } + ], + "transitionStartRule": null, + "transitionEndRule": { + "id": "TransitionRule_6", + "extensionAttributes": [], + "name": "ENCOUNTER_START_RULE_12", + "label": null, + "description": null, + "text": "End of treatment", + "instanceType": "TransitionRule" + }, + "notes": [], + "instanceType": "Encounter" + } + ], + "activities": [ + { + "id": "Activity_0", + "extensionAttributes": [], + "name": "ACT_Row1", + "label": "", + "description": "", + "previousId": null, + "nextId": "Activity_1", + "childIds": ["Activity_1", "Activity_2", "Activity_3"], + "definedProcedures": [], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_1", + "extensionAttributes": [], + "name": "ACT_Row2", + "label": "Informed consent", + "description": "", + "previousId": "Activity_0", + "nextId": "Activity_2", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": ["BiomedicalConcept_33"], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_2", + "extensionAttributes": [], + "name": "ACT_Row3", + "label": "Inclusion and exclusion criteria", + "description": "", + "previousId": "Activity_1", + "nextId": "Activity_3", + "childIds": [], + "definedProcedures": [ + { + "id": "Procedure_3", + "extensionAttributes": [], + "name": "PR3", + "label": "Eligibility Check", + "description": "", + "procedureType": "Eligibility", + "code": { + "id": "CodeX_3", + "extensionAttributes": [], + "code": "61871000000107", + "codeSystem": "SNOMED", + "codeSystemVersion": "2025-02-01", + "decode": "Eligibility for treatment", + "instanceType": "Code" + }, + "studyInterventionId": null, + "notes": [], + "instanceType": "Procedure" + } + ], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_3", + "extensionAttributes": [], + "name": "ACT_Row4", + "label": "Patient number assigned", + "description": "", + "previousId": "Activity_2", + "nextId": "Activity_4", + "childIds": [], + "definedProcedures": [ + { + "id": "Procedure_4", + "extensionAttributes": [], + "name": "PR3", + "label": "Assign patient number", + "description": "", + "procedureType": "Administrative", + "code": { + "id": "CodeX_04", + "extensionAttributes": [], + "code": "4561000175109", + "codeSystem": "SNOMED", + "codeSystemVersion": "2025-02-01", + "decode": "Assigned", + "instanceType": "Code" + }, + "studyInterventionId": null, + "notes": [], + "instanceType": "Procedure" + } + ], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_4", + "extensionAttributes": [], + "name": "ACT_Row5", + "label": "Demographics", + "description": "", + "previousId": "Activity_3", + "nextId": "Activity_4b", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_20", + "BiomedicalConcept_21" + ], + "bcCategoryIds": [], + "bcSurrogateIds": ["BiomedicalConceptSurrogate_1"], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_4b", + "extensionAttributes": [], + "name": "ACT_Row6", + "label": "Scores", + "description": "", + "previousId": "Activity_4", + "nextId": "Activity_5", + "childIds": ["Activity_5", "Activity_6"], + "definedProcedures": [], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_5", + "extensionAttributes": [], + "name": "ACT_Row7", + "label": "Hachinski Ischemic Scale", + "description": "", + "previousId": "Activity_4b", + "nextId": "Activity_6", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": ["BiomedicalConceptSurrogate_2"], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_6", + "extensionAttributes": [], + "name": "ACT_Row8", + "label": "MMSE", + "description": "", + "previousId": "Activity_5", + "nextId": "Activity_7", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": ["BiomedicalConceptSurrogate_3"], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_7", + "extensionAttributes": [], + "name": "ACT_Row9", + "label": "Physical examination", + "description": "", + "previousId": "Activity_6", + "nextId": "Activity_8", + "childIds": [], + "definedProcedures": [ + { + "id": "Procedure_5", + "extensionAttributes": [], + "name": "PR5", + "label": "phyiscal examination", + "description": "", + "procedureType": "Examination", + "code": { + "id": "CodeX_5", + "extensionAttributes": [], + "code": "5880005", + "codeSystem": "SNOMED", + "codeSystemVersion": "2025-02-01", + "decode": "Physical examination", + "instanceType": "Code" + }, + "studyInterventionId": null, + "notes": [], + "instanceType": "Procedure" + } + ], + "biomedicalConceptIds": ["BiomedicalConcept_34"], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_8", + "extensionAttributes": [], + "name": "ACT_Row10", + "label": "Medical history", + "description": "", + "previousId": "Activity_7", + "nextId": "Activity_9", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": ["BiomedicalConcept_35"], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_9", + "extensionAttributes": [], + "name": "ACT_Row11", + "label": "Habits", + "description": "", + "previousId": "Activity_8", + "nextId": "Activity_10", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_36", + "BiomedicalConcept_37" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_10", + "extensionAttributes": [], + "name": "ACT_Row12", + "label": "Chest X-ray", + "description": "", + "previousId": "Activity_9", + "nextId": "Activity_11", + "childIds": [], + "definedProcedures": [ + { + "id": "Procedure_6", + "extensionAttributes": [], + "name": "PR6", + "label": "Chest X-Ray", + "description": "", + "procedureType": "Examination", + "code": { + "id": "CodeX_6", + "extensionAttributes": [], + "code": "LA16043-4", + "codeSystem": "LOINC", + "codeSystemVersion": "2.80", + "decode": "Chest x-ray", + "instanceType": "Code" + }, + "studyInterventionId": null, + "notes": [], + "instanceType": "Procedure" + } + ], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_11", + "extensionAttributes": [], + "name": "ACT_Row13", + "label": "Apo E genotyping", + "description": "", + "previousId": "Activity_10", + "nextId": "Activity_12", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": ["BiomedicalConceptSurrogate_4"], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_12", + "extensionAttributes": [], + "name": "ACT_Row14", + "label": "Patient randomised", + "description": "", + "previousId": "Activity_11", + "nextId": "Activity_13", + "childIds": [], + "definedProcedures": [ + { + "id": "Procedure_7", + "extensionAttributes": [], + "name": "PR6", + "label": "Randomisation", + "description": "", + "procedureType": "Administrative", + "code": { + "id": "CodeX_9", + "extensionAttributes": [], + "code": "OMOP4976950", + "codeSystem": "OMOP", + "codeSystemVersion": "Type Concept 20221030", + "decode": "Randomization record", + "instanceType": "Code" + }, + "studyInterventionId": null, + "notes": [], + "instanceType": "Procedure" + } + ], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_13", + "extensionAttributes": [], + "name": "ACT_Row15", + "label": "Vital Signs and Temperature", + "description": "", + "previousId": "Activity_12", + "nextId": "Activity_14", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [], + "bcCategoryIds": ["BCCat_1"], + "bcSurrogateIds": [], + "timelineId": "ScheduleTimeline_3", + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_14", + "extensionAttributes": [], + "name": "ACT_Row16", + "label": "Ambulatory ECG placed", + "description": "", + "previousId": "Activity_13", + "nextId": "Activity_15", + "childIds": [], + "definedProcedures": [ + { + "id": "Procedure_8", + "extensionAttributes": [], + "name": "PR8", + "label": "Ambulatory ECG", + "description": "", + "procedureType": "Device", + "code": { + "id": "CodeX_10", + "extensionAttributes": [], + "code": "164850009", + "codeSystem": "SNOMED", + "codeSystemVersion": "2025-02-01", + "decode": "Ambulatory ECG", + "instanceType": "Code" + }, + "studyInterventionId": null, + "notes": [], + "instanceType": "Procedure" + } + ], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_15", + "extensionAttributes": [], + "name": "ACT_Row17", + "label": "Ambulatory ECG removed", + "description": "", + "previousId": "Activity_14", + "nextId": "Activity_16", + "childIds": [], + "definedProcedures": [ + { + "id": "Procedure_9", + "extensionAttributes": [], + "name": "PR9", + "label": "Ambulatory ECG", + "description": "", + "procedureType": "Device", + "code": { + "id": "CodeX_11", + "extensionAttributes": [], + "code": "164850009", + "codeSystem": "SNOMED", + "codeSystemVersion": "2025-02-01", + "decode": "Ambulatory ECG", + "instanceType": "Code" + }, + "studyInterventionId": null, + "notes": [], + "instanceType": "Procedure" + } + ], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_16", + "extensionAttributes": [], + "name": "ACT_Row18", + "label": "ECG", + "description": "", + "previousId": "Activity_15", + "nextId": "Activity_17", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": ["BiomedicalConcept_38"], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_17", + "extensionAttributes": [], + "name": "ACT_Row19", + "label": "Placebo TTS test", + "description": "", + "previousId": "Activity_16", + "nextId": "Activity_18", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [], + "bcCategoryIds": ["BiomedicalConceptSurrogate_5"], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_18", + "extensionAttributes": [], + "name": "ACT_Row20", + "label": "CT scan", + "description": "", + "previousId": "Activity_17", + "nextId": "Activity_19", + "childIds": [], + "definedProcedures": [ + { + "id": "Procedure_1", + "extensionAttributes": [], + "name": "PR1", + "label": "CT Scan", + "description": "CT Scan", + "procedureType": "CT Scan", + "code": { + "id": "Code_95", + "extensionAttributes": [], + "code": "383371000119108", + "codeSystem": "SNOMED", + "codeSystemVersion": "2025-02-01", + "decode": "CT of head without contrast", + "instanceType": "Code" + }, + "studyInterventionId": null, + "notes": [], + "instanceType": "Procedure" + } + ], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_19", + "extensionAttributes": [], + "name": "ACT_Row21", + "label": "Concomitant medications", + "description": "", + "previousId": "Activity_18", + "nextId": "Activity_20", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": ["BiomedicalConcept_39"], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_20", + "extensionAttributes": [], + "name": "ACT_Row22", + "label": "Hematology", + "description": "", + "previousId": "Activity_19", + "nextId": "Activity_21", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": ["BiomedicalConcept_32"], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_21", + "extensionAttributes": [], + "name": "ACT_Row23", + "label": "Chemistry", + "description": "", + "previousId": "Activity_20", + "nextId": "Activity_22", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [], + "bcCategoryIds": ["BCCat_3"], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_22", + "extensionAttributes": [], + "name": "ACT_Row24", + "label": "Uninalysis", + "description": "", + "previousId": "Activity_21", + "nextId": "Activity_23", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [], + "bcCategoryIds": ["BCCat_4"], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_23", + "extensionAttributes": [], + "name": "ACT_Row25", + "label": "Plasma Specimen (Xanomeline)", + "description": "", + "previousId": "Activity_22", + "nextId": "Activity_24", + "childIds": [], + "definedProcedures": [ + { + "id": "Procedure_10", + "extensionAttributes": [], + "name": "PR10", + "label": "Plasma specimen", + "description": "", + "procedureType": "Sample", + "code": { + "id": "CodeX_14", + "extensionAttributes": [], + "code": "119361006", + "codeSystem": "SNOMED", + "codeSystemVersion": "2025-02-01", + "decode": "Plasma specimen", + "instanceType": "Code" + }, + "studyInterventionId": null, + "notes": [], + "instanceType": "Procedure" + } + ], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_24", + "extensionAttributes": [], + "name": "ACT_Row26", + "label": "Hemoglobin A1C", + "description": "", + "previousId": "Activity_23", + "nextId": "Activity_25", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": ["BiomedicalConcept_32"], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_25", + "extensionAttributes": [], + "name": "ACT_Row27", + "label": "Study drug record , Medications dispensed, Medications returned", + "description": "", + "previousId": "Activity_24", + "nextId": "Activity_26", + "childIds": [], + "definedProcedures": [ + { + "id": "Procedure_11", + "extensionAttributes": [], + "name": "PR11", + "label": "Medication dispensed", + "description": "", + "procedureType": "Medication", + "code": { + "id": "CodeX_15", + "extensionAttributes": [], + "code": "373784005", + "codeSystem": "SNOMED", + "codeSystemVersion": "2025-02-01", + "decode": "Dispensing medication", + "instanceType": "Code" + }, + "studyInterventionId": "StudyIntervention_1", + "notes": [], + "instanceType": "Procedure" + }, + { + "id": "Procedure_12", + "extensionAttributes": [], + "name": "PR12", + "label": "Medication monitoring", + "description": "", + "procedureType": "Medication", + "code": { + "id": "CodeX_15", + "extensionAttributes": [], + "code": "395170001", + "codeSystem": "SNOMED", + "codeSystemVersion": "2025-02-01", + "decode": "Medication monitoring", + "instanceType": "Code" + }, + "studyInterventionId": null, + "notes": [], + "instanceType": "Procedure" + } + ], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_26", + "extensionAttributes": [], + "name": "ACT_Row28", + "label": "TTS Acceptability Survey", + "description": "", + "previousId": "Activity_25", + "nextId": "Activity_27", + "childIds": [], + "definedProcedures": [ + { + "id": "Procedure_13", + "extensionAttributes": [], + "name": "PR13", + "label": "Survey", + "description": "", + "procedureType": "Sample", + "code": { + "id": "CodeX_16", + "extensionAttributes": [], + "code": "725111000000103", + "codeSystem": "SNOMED", + "codeSystemVersion": "2025-02-01", + "decode": "Survey", + "instanceType": "Code" + }, + "studyInterventionId": null, + "notes": [], + "instanceType": "Procedure" + } + ], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_27", + "extensionAttributes": [], + "name": "ACT_Row29", + "label": "ADAS-Cog", + "description": "", + "previousId": "Activity_26", + "nextId": "Activity_28", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": ["BiomedicalConcept_40"], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_28", + "extensionAttributes": [], + "name": "ACT_Row30", + "label": "CIBIC+", + "description": "", + "previousId": "Activity_27", + "nextId": "Activity_29", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_20", + "BiomedicalConcept_21" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_29", + "extensionAttributes": [], + "name": "ACT_Row31", + "label": "DAD", + "description": "", + "previousId": "Activity_28", + "nextId": "Activity_30", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_20", + "BiomedicalConcept_21" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_30", + "extensionAttributes": [], + "name": "ACT_Row32", + "label": "NPI-X", + "description": "", + "previousId": "Activity_29", + "nextId": "Activity_31", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_20", + "BiomedicalConcept_21" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_31", + "extensionAttributes": [], + "name": "ACT_Row33", + "label": "Adverse events", + "description": "", + "previousId": "Activity_30", + "nextId": "Activity_32", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": ["BiomedicalConcept_1"], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_32", + "extensionAttributes": [], + "name": "ACT_Row34", + "label": "Check adverse events", + "description": "", + "previousId": "Activity_31", + "nextId": "Activity_32b", + "childIds": [], + "definedProcedures": [ + { + "id": "Procedure_14", + "extensionAttributes": [], + "name": "PR14", + "label": "AE check", + "description": "", + "procedureType": "Administrative", + "code": { + "id": "CodeX_18", + "extensionAttributes": [], + "code": "453961000124104", + "codeSystem": "SNOMED", + "codeSystemVersion": "2025-02-01", + "decode": "Evaluation of adverse drug event history", + "instanceType": "Code" + }, + "studyInterventionId": null, + "notes": [], + "instanceType": "Procedure" + } + ], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": "ScheduleTimeline_1", + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_32b", + "extensionAttributes": [], + "name": "ACT_Row35", + "label": "Vital Signs Supine/Standing", + "description": "", + "previousId": "Activity_32", + "nextId": "Activity_33", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": "ScheduleTimeline_3", + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_33", + "extensionAttributes": [], + "name": "ACT_Row36", + "label": "Subject supine", + "description": "", + "previousId": "Activity_32b", + "nextId": "Activity_34", + "childIds": [], + "definedProcedures": [ + { + "id": "Procedure_15", + "extensionAttributes": [], + "name": "PR_SUPINE", + "label": "", + "description": "Subject Supine", + "procedureType": "", + "code": { + "id": "Code_96", + "extensionAttributes": [], + "code": "123", + "codeSystem": "SPONSOR", + "codeSystemVersion": "12", + "decode": "Subject Supine", + "instanceType": "Code" + }, + "studyInterventionId": null, + "notes": [], + "instanceType": "Procedure" + } + ], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_34", + "extensionAttributes": [], + "name": "ACT_Row37", + "label": "Vital signs while supine", + "description": "", + "previousId": "Activity_33", + "nextId": "Activity_35", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_14", + "BiomedicalConcept_15", + "BiomedicalConcept_16" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_35", + "extensionAttributes": [], + "name": "ACT_Row38", + "label": "Subject Standing", + "description": "", + "previousId": "Activity_34", + "nextId": "Activity_36", + "childIds": [], + "definedProcedures": [ + { + "id": "Procedure_16", + "extensionAttributes": [], + "name": "PR_STAND", + "label": "", + "description": "Subject Standing", + "procedureType": "", + "code": { + "id": "Code_97", + "extensionAttributes": [], + "code": "124", + "codeSystem": "SPONSOR", + "codeSystemVersion": "12", + "decode": "Subject Standing", + "instanceType": "Code" + }, + "studyInterventionId": null, + "notes": [], + "instanceType": "Procedure" + } + ], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_36", + "extensionAttributes": [], + "name": "ACT_Row39", + "label": "Vital signs while standing", + "description": "", + "previousId": "Activity_35", + "nextId": null, + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_17", + "BiomedicalConcept_18", + "BiomedicalConcept_19" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + } + ], + "arms": [ + { + "id": "StudyArm_1", + "extensionAttributes": [], + "name": "Placebo", + "label": "Placebo", + "description": "Placebo", + "type": { + "id": "Code_138", + "extensionAttributes": [], + "code": "C174268", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Placebo Control Arm", + "instanceType": "Code" + }, + "dataOriginDescription": "Data collected from subjects", + "dataOriginType": { + "id": "Code_139", + "extensionAttributes": [], + "code": "C188866", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Data Generated Within Study", + "instanceType": "Code" + }, + "populationIds": [], + "notes": [], + "instanceType": "StudyArm" + }, + { + "id": "StudyArm_2", + "extensionAttributes": [], + "name": "Xanomeline Low Dose", + "label": "Xanomeline Low Dose", + "description": "Active Substance", + "type": { + "id": "Code_140", + "extensionAttributes": [], + "code": "C174267", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Active Comparator Arm", + "instanceType": "Code" + }, + "dataOriginDescription": "Data collected from subjects", + "dataOriginType": { + "id": "Code_141", + "extensionAttributes": [], + "code": "C188866", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Data Generated Within Study", + "instanceType": "Code" + }, + "populationIds": [], + "notes": [], + "instanceType": "StudyArm" + }, + { + "id": "StudyArm_3", + "extensionAttributes": [], + "name": "Xanomeline High Dose", + "label": "Xanomeline High Dose", + "description": "Active Substance", + "type": { + "id": "Code_142", + "extensionAttributes": [], + "code": "C174267", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Active Comparator Arm", + "instanceType": "Code" + }, + "dataOriginDescription": "Data collected from subjects", + "dataOriginType": { + "id": "Code_143", + "extensionAttributes": [], + "code": "C188866", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Data Generated Within Study", + "instanceType": "Code" + }, + "populationIds": [], + "notes": [], + "instanceType": "StudyArm" + } + ], + "studyCells": [ + { + "id": "StudyCell_1", + "extensionAttributes": [], + "armId": "StudyArm_1", + "epochId": "StudyEpoch_1", + "elementIds": ["StudyElement_1"], + "instanceType": "StudyCell" + }, + { + "id": "StudyCell_2", + "extensionAttributes": [], + "armId": "StudyArm_1", + "epochId": "StudyEpoch_2", + "elementIds": ["StudyElement_2"], + "instanceType": "StudyCell" + }, + { + "id": "StudyCell_3", + "extensionAttributes": [], + "armId": "StudyArm_1", + "epochId": "StudyEpoch_3", + "elementIds": ["StudyElement_2"], + "instanceType": "StudyCell" + }, + { + "id": "StudyCell_4", + "extensionAttributes": [], + "armId": "StudyArm_1", + "epochId": "StudyEpoch_4", + "elementIds": ["StudyElement_2"], + "instanceType": "StudyCell" + }, + { + "id": "StudyCell_5", + "extensionAttributes": [], + "armId": "StudyArm_1", + "epochId": "StudyEpoch_5", + "elementIds": ["StudyElement_7"], + "instanceType": "StudyCell" + }, + { + "id": "StudyCell_6", + "extensionAttributes": [], + "armId": "StudyArm_2", + "epochId": "StudyEpoch_1", + "elementIds": ["StudyElement_1"], + "instanceType": "StudyCell" + }, + { + "id": "StudyCell_7", + "extensionAttributes": [], + "armId": "StudyArm_2", + "epochId": "StudyEpoch_2", + "elementIds": ["StudyElement_3"], + "instanceType": "StudyCell" + }, + { + "id": "StudyCell_8", + "extensionAttributes": [], + "armId": "StudyArm_2", + "epochId": "StudyEpoch_3", + "elementIds": ["StudyElement_3"], + "instanceType": "StudyCell" + }, + { + "id": "StudyCell_9", + "extensionAttributes": [], + "armId": "StudyArm_2", + "epochId": "StudyEpoch_4", + "elementIds": ["StudyElement_3"], + "instanceType": "StudyCell" + }, + { + "id": "StudyCell_10", + "extensionAttributes": [], + "armId": "StudyArm_2", + "epochId": "StudyEpoch_5", + "elementIds": ["StudyElement_7"], + "instanceType": "StudyCell" + }, + { + "id": "StudyCell_11", + "extensionAttributes": [], + "armId": "StudyArm_3", + "epochId": "StudyEpoch_1", + "elementIds": ["StudyElement_1"], + "instanceType": "StudyCell" + }, + { + "id": "StudyCell_12", + "extensionAttributes": [], + "armId": "StudyArm_3", + "epochId": "StudyEpoch_2", + "elementIds": ["StudyElement_4"], + "instanceType": "StudyCell" + }, + { + "id": "StudyCell_13", + "extensionAttributes": [], + "armId": "StudyArm_3", + "epochId": "StudyEpoch_3", + "elementIds": ["StudyElement_5"], + "instanceType": "StudyCell" + }, + { + "id": "StudyCell_14", + "extensionAttributes": [], + "armId": "StudyArm_3", + "epochId": "StudyEpoch_4", + "elementIds": ["StudyElement_6"], + "instanceType": "StudyCell" + }, + { + "id": "StudyCell_15", + "extensionAttributes": [], + "armId": "StudyArm_3", + "epochId": "StudyEpoch_5", + "elementIds": [], + "instanceType": "StudyCell" + } + ], + "rationale": "The discontinuation rate associated with this oral dosing regimen was 58.6% in previous studies, and alternative clinical strategies have been sought to improve tolerance for the compound. To that end, development of a Transdermal Therapeutic System (TTS) has been initiated.", + "epochs": [ + { + "id": "StudyEpoch_1", + "extensionAttributes": [], + "name": "Screening", + "label": "Screening", + "description": "Screening Epoch", + "type": { + "id": "Code_144", + "extensionAttributes": [], + "code": "C202487", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Screening Epoch", + "instanceType": "Code" + }, + "previousId": null, + "nextId": "StudyEpoch_2", + "notes": [], + "instanceType": "StudyEpoch" + }, + { + "id": "StudyEpoch_2", + "extensionAttributes": [], + "name": "Treatment 1", + "label": "Treatment One", + "description": "Treatment Epoch", + "type": { + "id": "Code_145", + "extensionAttributes": [], + "code": "C101526", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Treatment Epoch", + "instanceType": "Code" + }, + "previousId": "StudyEpoch_1", + "nextId": "StudyEpoch_3", + "notes": [], + "instanceType": "StudyEpoch" + }, + { + "id": "StudyEpoch_3", + "extensionAttributes": [], + "name": "Treatment 2", + "label": "Treatment Two", + "description": "Treatment Epoch", + "type": { + "id": "Code_146", + "extensionAttributes": [], + "code": "C101526", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Treatment Epoch", + "instanceType": "Code" + }, + "previousId": "StudyEpoch_2", + "nextId": "StudyEpoch_4", + "notes": [], + "instanceType": "StudyEpoch" + }, + { + "id": "StudyEpoch_4", + "extensionAttributes": [], + "name": "Treatment 3", + "label": "Treatment Three", + "description": "Treatment Epoch", + "type": { + "id": "Code_147", + "extensionAttributes": [], + "code": "C101526", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Treatment Epoch", + "instanceType": "Code" + }, + "previousId": "StudyEpoch_3", + "nextId": "StudyEpoch_5", + "notes": [], + "instanceType": "StudyEpoch" + }, + { + "id": "StudyEpoch_5", + "extensionAttributes": [], + "name": "Follow-Up", + "label": "Follow Up", + "description": "Follow-up Epoch", + "type": { + "id": "Code_148", + "extensionAttributes": [], + "code": "C202578", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Follow-Up Epoch", + "instanceType": "Code" + }, + "previousId": "StudyEpoch_4", + "nextId": null, + "notes": [], + "instanceType": "StudyEpoch" + } + ], + "elements": [ + { + "id": "StudyElement_1", + "extensionAttributes": [], + "name": "EL1", + "label": "Screening", + "description": "Screening Element", + "transitionStartRule": { + "id": "TransitionRule_7", + "extensionAttributes": [], + "name": "ELEMENT_START_RULE_1", + "label": null, + "description": null, + "text": "Informed consent", + "instanceType": "TransitionRule" + }, + "transitionEndRule": { + "id": "TransitionRule_8", + "extensionAttributes": [], + "name": "ELEMENT_END_RULE_1", + "label": null, + "description": null, + "text": "Completion of all screening activities and no more than 2 weeks from informed consent", + "instanceType": "TransitionRule" + }, + "studyInterventionIds": [], + "notes": [], + "instanceType": "StudyElement" + }, + { + "id": "StudyElement_2", + "extensionAttributes": [], + "name": "EL2", + "label": "Placebo", + "description": "Placebo TTS (adhesive patches)", + "transitionStartRule": { + "id": "TransitionRule_9", + "extensionAttributes": [], + "name": "ELEMENT_START_RULE_2", + "label": null, + "description": null, + "text": "Administration\u00a0of\u00a0first\u00a0dose", + "instanceType": "TransitionRule" + }, + "transitionEndRule": null, + "studyInterventionIds": [], + "notes": [], + "instanceType": "StudyElement" + }, + { + "id": "StudyElement_7", + "extensionAttributes": [], + "name": "EL7", + "label": "Follow up", + "description": "Follow Up Element", + "transitionStartRule": { + "id": "TransitionRule_14", + "extensionAttributes": [], + "name": "ELEMENT_START_RULE_7", + "label": null, + "description": null, + "text": "End\u00a0of\u00a0last\u00a0scheduled\u00a0visit\u00a0on\u00a0study\u00a0(including\u00a0early\u00a0termination)", + "instanceType": "TransitionRule" + }, + "transitionEndRule": { + "id": "TransitionRule_15", + "extensionAttributes": [], + "name": "ELEMENT_END_RULE_7", + "label": null, + "description": null, + "text": "Completion\u00a0of\u00a0all\u00a0specified\u00a0followup\u00a0activities\u00a0(which\u00a0vary\u00a0on\u00a0a\u00a0patient-by-patient\u00a0basis)", + "instanceType": "TransitionRule" + }, + "studyInterventionIds": [], + "notes": [], + "instanceType": "StudyElement" + }, + { + "id": "StudyElement_3", + "extensionAttributes": [], + "name": "EL3", + "label": "Low", + "description": "Xanomeline TTS (adhesive patches) 50 cm2, 54 mg", + "transitionStartRule": { + "id": "TransitionRule_10", + "extensionAttributes": [], + "name": "ELEMENT_START_RULE_3", + "label": null, + "description": null, + "text": "Administration\u00a0of\u00a0first\u00a0dose", + "instanceType": "TransitionRule" + }, + "transitionEndRule": null, + "studyInterventionIds": [], + "notes": [], + "instanceType": "StudyElement" + }, + { + "id": "StudyElement_4", + "extensionAttributes": [], + "name": "EL4", + "label": "High - Start", + "description": "Xanomeline TTS (adhesive patches) 50 cm2, 54 mg", + "transitionStartRule": { + "id": "TransitionRule_11", + "extensionAttributes": [], + "name": "ELEMENT_START_RULE_4", + "label": null, + "description": null, + "text": "Randomized", + "instanceType": "TransitionRule" + }, + "transitionEndRule": null, + "studyInterventionIds": [], + "notes": [], + "instanceType": "StudyElement" + }, + { + "id": "StudyElement_5", + "extensionAttributes": [], + "name": "EL5", + "label": "High - Middle", + "description": "Xanomeline TTS (adhesive patches) 50 cm2, 54 mg + 25 cm2, 27 mg", + "transitionStartRule": { + "id": "TransitionRule_12", + "extensionAttributes": [], + "name": "ELEMENT_START_RULE_5", + "label": null, + "description": null, + "text": "Administration\u00a0of\u00a0first\u00a0dose\u00a0(from\u00a0patches\u00a0supplied\u00a0at\u00a0Visit\u00a04)", + "instanceType": "TransitionRule" + }, + "transitionEndRule": null, + "studyInterventionIds": [], + "notes": [], + "instanceType": "StudyElement" + }, + { + "id": "StudyElement_6", + "extensionAttributes": [], + "name": "EL6", + "label": "High - End", + "description": "Xanomeline TTS (adhesive patches) 50 cm2, 54 mg", + "transitionStartRule": { + "id": "TransitionRule_13", + "extensionAttributes": [], + "name": "ELEMENT_START_RULE_6", + "label": null, + "description": null, + "text": "Administration\u00a0of\u00a0first\u00a0dose\u00a0(from\u00a0patches\u00a0supplied\u00a0at\u00a0Visit\u00a012)", + "instanceType": "TransitionRule" + }, + "transitionEndRule": null, + "studyInterventionIds": [], + "notes": [], + "instanceType": "StudyElement" + } + ], + "estimands": [ + { + "id": "Estimand_1", + "extensionAttributes": [], + "name": "EST1", + "label": "EST1", + "description": "", + "populationSummary": "Group mean changes from baseline in the primary efficacy parameters", + "analysisPopulationId": "AnalysisPopulation_1", + "interventionIds": ["StudyIntervention_1"], + "variableOfInterestId": "Endpoint_1", + "intercurrentEvents": [ + { + "id": "IntercurrentEvent_1", + "extensionAttributes": [], + "name": "DISTRUPTION", + "label": "", + "description": "The disruption of treatment to the subject", + "text": "Temporary Treatment Interruption", + "dictionaryId": null, + "notes": [], + "instanceType": "IntercurrentEvent", + "strategy": "Treatment Policy \u2013 Continue to measure effect of treatment assignment regardless of interruption." + } + ], + "notes": [], + "instanceType": "Estimand" + } + ], + "indications": [ + { + "id": "Indication_1", + "extensionAttributes": [], + "name": "IND1", + "label": "Alzheimer's disease", + "description": "Alzheimer's disease", + "codes": [ + { + "id": "Code_604", + "extensionAttributes": [], + "code": "G30.9", + "codeSystem": "ICD-10-CM", + "codeSystemVersion": "1", + "decode": "Alzheimer's disease; unspecified", + "instanceType": "Code" + } + ], + "isRareDisease": false, + "notes": [], + "instanceType": "Indication" + }, + { + "id": "Indication_2", + "extensionAttributes": [], + "name": "IND2", + "label": "Alzheimer's disease", + "description": "Alzheimer's disease", + "codes": [ + { + "id": "Code_605", + "extensionAttributes": [], + "code": "26929004", + "codeSystem": "SNOMED", + "codeSystemVersion": "2025-02-01", + "decode": "Alzheimer's disease", + "instanceType": "Code" + } + ], + "isRareDisease": false, + "notes": [], + "instanceType": "Indication" + } + ], + "studyInterventionIds": ["StudyIntervention_1"], + "objectives": [ + { + "id": "Objective_1", + "extensionAttributes": [], + "name": "OBJ1", + "label": "", + "description": "Main objective", + "text": "

    To determine if there is a statistically significant relationship (overall Type 1 erroralpha=0.05) between the change in both the ADAS-Cog (11) and CIBIC+ scores, and drug dose (0, 50 cm2 [54 mg], and 75 cm2 [81 mg]).

    ", + "dictionaryId": null, + "notes": [], + "instanceType": "Objective", + "level": { + "id": "Code_622", + "extensionAttributes": [], + "code": "C85826", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Primary Objective", + "instanceType": "Code" + }, + "endpoints": [ + { + "id": "Endpoint_1", + "extensionAttributes": [], + "name": "END1", + "label": "", + "description": "", + "text": "

    Alzheimer's Disease Assessment Scale - Cognitive Subscale, total of 11 items [ADAS-Cog (11)] at Week 24

    ", + "dictionaryId": null, + "notes": [], + "instanceType": "Endpoint", + "purpose": "", + "level": { + "id": "Code_621", + "extensionAttributes": [], + "code": "C94496", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Primary Endpoint", + "instanceType": "Code" + } + }, + { + "id": "Endpoint_2", + "extensionAttributes": [], + "name": "END2", + "label": "", + "description": "", + "text": "

    Video-referenced Clinician\u2019s Interview-based Impression of Change (CIBIC+) at Week 24

    ", + "dictionaryId": null, + "notes": [], + "instanceType": "Endpoint", + "purpose": "", + "level": { + "id": "Code_623", + "extensionAttributes": [], + "code": "C94496", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Primary Endpoint", + "instanceType": "Code" + } + } + ] + }, + { + "id": "Objective_2", + "extensionAttributes": [], + "name": "OBJ2", + "label": "", + "description": "Safety", + "text": "

    To document the safety profile of the xanomeline TTS.

    ", + "dictionaryId": null, + "notes": [], + "instanceType": "Objective", + "level": { + "id": "Code_625", + "extensionAttributes": [], + "code": "C85826", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Primary Objective", + "instanceType": "Code" + }, + "endpoints": [ + { + "id": "Endpoint_3", + "extensionAttributes": [], + "name": "END3", + "label": "", + "description": "", + "text": "

    Adverse events

    ", + "dictionaryId": null, + "notes": [], + "instanceType": "Endpoint", + "purpose": "", + "level": { + "id": "Code_624", + "extensionAttributes": [], + "code": "C94496", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Primary Endpoint", + "instanceType": "Code" + } + }, + { + "id": "Endpoint_4", + "extensionAttributes": [], + "name": "END4", + "label": "", + "description": "", + "text": "

    Vital signs (weight, standing and supine blood pressure, heart rate)

    ", + "dictionaryId": null, + "notes": [], + "instanceType": "Endpoint", + "purpose": "", + "level": { + "id": "Code_626", + "extensionAttributes": [], + "code": "C94496", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Primary Endpoint", + "instanceType": "Code" + } + }, + { + "id": "Endpoint_5", + "extensionAttributes": [], + "name": "END5", + "label": "", + "description": "The change from baseline laboratory value will be calculated as the difference between the baseline lab value and the endpoint value (i.e., the value at the specified visit) or the end of treatment observation", + "text": "

    Laboratory evaluations (Change from Baseline)

    ", + "dictionaryId": null, + "notes": [], + "instanceType": "Endpoint", + "purpose": "", + "level": { + "id": "Code_627", + "extensionAttributes": [], + "code": "C94496", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Primary Endpoint", + "instanceType": "Code" + } + } + ] + }, + { + "id": "Objective_3", + "extensionAttributes": [], + "name": "OBJ3", + "label": "", + "description": "Behaviour", + "text": "

    To assess the dose-dependent improvement in behavior. Improved scores on the Revised Neuropsychiatric Inventory (NPI-X) will indicate improvement in these areas.

    ", + "dictionaryId": null, + "notes": [], + "instanceType": "Objective", + "level": { + "id": "Code_629", + "extensionAttributes": [], + "code": "C85827", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Secondary Objective", + "instanceType": "Code" + }, + "endpoints": [ + { + "id": "Endpoint_6", + "extensionAttributes": [], + "name": "END6", + "label": "", + "description": "", + "text": "

    Alzheimer's Disease Assessment Scale - Cognitive Subscale, total of 11 items [ADAS-Cog (11)] at Weeks 8 and 16

    ", + "dictionaryId": null, + "notes": [], + "instanceType": "Endpoint", + "purpose": "", + "level": { + "id": "Code_628", + "extensionAttributes": [], + "code": "C139173", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Secondary Endpoint", + "instanceType": "Code" + } + }, + { + "id": "Endpoint_7", + "extensionAttributes": [], + "name": "END7", + "label": "", + "description": "", + "text": "

    Video-referenced Clinician\u2019s Interview-based Impression of Change (CIBIC+) at Weeks 8 and 16

    ", + "dictionaryId": null, + "notes": [], + "instanceType": "Endpoint", + "purpose": "", + "level": { + "id": "Code_630", + "extensionAttributes": [], + "code": "C139173", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Secondary Endpoint", + "instanceType": "Code" + } + }, + { + "id": "Endpoint_8", + "extensionAttributes": [], + "name": "END8", + "label": "", + "description": "", + "text": "

    Mean Revised Neuropsychiatric Inventory (NPI-X) from Week 4 to Week 24

    ", + "dictionaryId": null, + "notes": [], + "instanceType": "Endpoint", + "purpose": "", + "level": { + "id": "Code_631", + "extensionAttributes": [], + "code": "C139173", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Secondary Endpoint", + "instanceType": "Code" + } + } + ] + }, + { + "id": "Objective_4", + "extensionAttributes": [], + "name": "OBJ4", + "label": "", + "description": "", + "text": "

    To assess the dose-dependent improvements in activities of daily living. Improved scores on the Disability Assessment for Dementia (DAD) will indicate improvement in these areas (see Attachment LZZT.5).

    ", + "dictionaryId": null, + "notes": [], + "instanceType": "Objective", + "level": { + "id": "Code_633", + "extensionAttributes": [], + "code": "C85827", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Secondary Objective", + "instanceType": "Code" + }, + "endpoints": [ + { + "id": "Endpoint_9", + "extensionAttributes": [], + "name": "END9", + "label": "", + "description": "", + "text": "

    *** To be determined from protocol ***

    ", + "dictionaryId": null, + "notes": [], + "instanceType": "Endpoint", + "purpose": "", + "level": { + "id": "Code_632", + "extensionAttributes": [], + "code": "C139173", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Secondary Endpoint", + "instanceType": "Code" + } + } + ] + }, + { + "id": "Objective_5", + "extensionAttributes": [], + "name": "OBJ5", + "label": "", + "description": "", + "text": "

    To assess the dose-dependent improvements in an extended assessment of cognition that integrates attention/concentration tasks. The Alzheimer's Disease Assessment Scale-14 item Cognitive Subscale, hereafter referred to as ADAS-Cog (14), will be used for this assessment (see Attachment LZZT.2).

    ", + "dictionaryId": null, + "notes": [], + "instanceType": "Objective", + "level": { + "id": "Code_635", + "extensionAttributes": [], + "code": "C85827", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Secondary Objective", + "instanceType": "Code" + }, + "endpoints": [ + { + "id": "Endpoint_10", + "extensionAttributes": [], + "name": "END10", + "label": "", + "description": "", + "text": "

    *** To be determined from protocol ***

    ", + "dictionaryId": null, + "notes": [], + "instanceType": "Endpoint", + "purpose": "", + "level": { + "id": "Code_634", + "extensionAttributes": [], + "code": "C139173", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Secondary Endpoint", + "instanceType": "Code" + } + } + ] + }, + { + "id": "Objective_6", + "extensionAttributes": [], + "name": "OBJ6", + "label": "", + "description": "", + "text": "

    To assess the treatment response as a function of Apo E genotype.

    ", + "dictionaryId": null, + "notes": [], + "instanceType": "Objective", + "level": { + "id": "Code_637", + "extensionAttributes": [], + "code": "C85827", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Secondary Objective", + "instanceType": "Code" + }, + "endpoints": [ + { + "id": "Endpoint_11", + "extensionAttributes": [], + "name": "END11", + "label": "", + "description": "", + "text": "

    *** To be determined from protocol ***

    ", + "dictionaryId": null, + "notes": [], + "instanceType": "Endpoint", + "purpose": "", + "level": { + "id": "Code_636", + "extensionAttributes": [], + "code": "C139173", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Secondary Endpoint", + "instanceType": "Code" + } + } + ] + } + ], + "population": { + "id": "StudyDesignPopulation_1", + "extensionAttributes": [], + "name": "POP1", + "label": "", + "description": "Patients with Probable Mild to Moderate Alzheimer's Disease", + "includesHealthySubjects": false, + "plannedEnrollmentNumber": { + "id": "Quantity_8", + "extensionAttributes": [], + "value": 300.0, + "unit": null, + "instanceType": "Quantity" + }, + "plannedCompletionNumber": { + "id": "Quantity_7", + "extensionAttributes": [], + "value": 300.0, + "unit": null, + "instanceType": "Quantity" + }, + "plannedSex": [ + { + "id": "Code_620", + "extensionAttributes": [], + "code": "C49636", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "BOTH", + "instanceType": "Code" + }, + { + "id": "Code_620M", + "extensionAttributes": [], + "code": "C20197", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "M", + "instanceType": "Code" + }, + { + "id": "Code_620F", + "extensionAttributes": [], + "code": "C16576", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "F", + "instanceType": "Code" + } + ], + "criterionIds": [ + "EligibilityCriterion_1", + "EligibilityCriterion_2", + "EligibilityCriterion_3", + "EligibilityCriterion_4", + "EligibilityCriterion_5", + "EligibilityCriterion_6", + "EligibilityCriterion_7", + "EligibilityCriterion_8", + "EligibilityCriterion_9", + "EligibilityCriterion_10", + "EligibilityCriterion_11", + "EligibilityCriterion_12", + "EligibilityCriterion_13", + "EligibilityCriterion_14", + "EligibilityCriterion_15", + "EligibilityCriterion_16", + "EligibilityCriterion_17", + "EligibilityCriterion_18", + "EligibilityCriterion_19", + "EligibilityCriterion_20", + "EligibilityCriterion_21", + "EligibilityCriterion_22", + "EligibilityCriterion_23", + "EligibilityCriterion_24", + "EligibilityCriterion_25", + "EligibilityCriterion_26", + "EligibilityCriterion_27", + "EligibilityCriterion_28", + "EligibilityCriterion_29", + "EligibilityCriterion_30", + "EligibilityCriterion_31" + ], + "plannedAge": { + "id": "Range_1", + "extensionAttributes": [], + "minValue": { + "id": "Quantity_9", + "extensionAttributes": [], + "value": 50.0, + "unit": { + "id": "Code_618", + "extensionAttributes": [], + "code": "C29848", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Year", + "instanceType": "Code" + }, + "instanceType": "Quantity" + }, + "maxValue": { + "id": "Quantity_10", + "extensionAttributes": [], + "value": 100.0, + "unit": { + "id": "AliasCode_252", + "extensionAttributes": [], + "standardCode": { + "id": "Code_619", + "extensionAttributes": [], + "code": "C29848", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Year", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "instanceType": "Quantity" + }, + "isApproximate": "false", + "instanceType": "Range" + }, + "notes": [], + "instanceType": "StudyDesignPopulation", + "cohorts": [] + }, + "scheduleTimelines": [ + { + "id": "ScheduleTimeline_4", + "extensionAttributes": [], + "name": "Main Timeline", + "label": "Main Timeline", + "description": "This is the main timeline for the study design.", + "mainTimeline": true, + "entryCondition": "Potential subject identified", + "entryId": "ScheduledActivityInstance_9", + "exits": [ + { + "id": "ScheduleTimelineExit_4", + "extensionAttributes": [], + "instanceType": "ScheduleTimelineExit" + } + ], + "timings": [ + { + "id": "Timing_1", + "extensionAttributes": [], + "name": "TIM1", + "label": "Screening", + "description": "Screening timing", + "type": { + "id": "Code_20", + "extensionAttributes": [], + "code": "C201357", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Before", + "instanceType": "Code" + }, + "value": "P2W", + "valueLabel": "2 weeks", + "relativeToFrom": { + "id": "Code_21", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_9", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_11", + "windowLower": null, + "windowUpper": null, + "windowLabel": "", + "instanceType": "Timing" + }, + { + "id": "Timing_2", + "extensionAttributes": [], + "name": "TIM2", + "label": "Pre dose", + "description": "Pre dose timing", + "type": { + "id": "Code_22", + "extensionAttributes": [], + "code": "C201357", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Before", + "instanceType": "Code" + }, + "value": "P2D", + "valueLabel": "2 days", + "relativeToFrom": { + "id": "Code_23", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_10", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_11", + "windowLower": "PT4H", + "windowUpper": "PT0H", + "windowLabel": "-4..0 hours", + "instanceType": "Timing" + }, + { + "id": "Timing_3", + "extensionAttributes": [], + "name": "TIM3", + "label": "Dosing", + "description": "Dosing anchor", + "type": { + "id": "Code_26", + "extensionAttributes": [], + "code": "C201358", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Fixed Reference", + "instanceType": "Code" + }, + "value": "P1D", + "valueLabel": "1 Day", + "relativeToFrom": { + "id": "Code_27", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_11", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_11", + "windowLower": null, + "windowUpper": null, + "windowLabel": "", + "instanceType": "Timing" + }, + { + "id": "Timing_4", + "extensionAttributes": [], + "name": "TIM4", + "label": "Week 2", + "description": "Week 2 timing", + "type": { + "id": "Code_28", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "After", + "instanceType": "Code" + }, + "value": "P2W", + "valueLabel": "2 Weeks", + "relativeToFrom": { + "id": "Code_29", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_12", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_11", + "windowLower": "P3D", + "windowUpper": "P3D", + "windowLabel": "-3..3 days", + "instanceType": "Timing" + }, + { + "id": "Timing_5", + "extensionAttributes": [], + "name": "TIM5", + "label": "Week 4", + "description": "Week 4 timing", + "type": { + "id": "Code_32", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "After", + "instanceType": "Code" + }, + "value": "P4W", + "valueLabel": "4 Weeks", + "relativeToFrom": { + "id": "Code_33", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_13", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_11", + "windowLower": "P3D", + "windowUpper": "P3D", + "windowLabel": "-3..3 days", + "instanceType": "Timing" + }, + { + "id": "Timing_6", + "extensionAttributes": [], + "name": "TIM6", + "label": "Week 6", + "description": "Week 6 timing", + "type": { + "id": "Code_36", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "After", + "instanceType": "Code" + }, + "value": "P6W", + "valueLabel": "6 Weeks", + "relativeToFrom": { + "id": "Code_37", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_14", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_11", + "windowLower": "P3D", + "windowUpper": "P3D", + "windowLabel": "-3..3 days", + "instanceType": "Timing" + }, + { + "id": "Timing_7", + "extensionAttributes": [], + "name": "TIM7", + "label": "Week 8", + "description": "Week 8 timing", + "type": { + "id": "Code_40", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "After", + "instanceType": "Code" + }, + "value": "P8W", + "valueLabel": "8 Weeks", + "relativeToFrom": { + "id": "Code_41", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_15", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_11", + "windowLower": "P3D", + "windowUpper": "P3D", + "windowLabel": "-3..3 days", + "instanceType": "Timing" + }, + { + "id": "Timing_9", + "extensionAttributes": [], + "name": "TIM9", + "label": "Week 12", + "description": "Week 12 timing", + "type": { + "id": "Code_46", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "After", + "instanceType": "Code" + }, + "value": "P12W", + "valueLabel": "12 Weeks", + "relativeToFrom": { + "id": "Code_47", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_17", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_11", + "windowLowerValue": 4, + "windowLowerUnit": "Days", + "windowUpper": "P4D", + "windowLabel": "-4..4 days", + "instanceType": "Timing" + }, + { + "id": "Timing_11", + "extensionAttributes": [], + "name": "TIM11", + "label": "Week 16", + "description": "Week 16 timing", + "type": { + "id": "Code_52", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "After", + "instanceType": "Code" + }, + "value": "P16W", + "valueLabel": "16 Weeks", + "relativeToFrom": { + "id": "Code_53", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_19", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_11", + "windowLower": "P4D", + "windowUpper": "P4D", + "windowLabel": "-4..4 days", + "instanceType": "AfterTiming" + }, + { + "id": "Timing_13", + "extensionAttributes": [], + "name": "TIM13", + "label": "Week 20", + "description": "Week 20 timing", + "type": { + "id": "Code_58", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "After", + "instanceType": "Code" + }, + "value": "P20W", + "valueLabel": "20 Weeks", + "relativeToFrom": { + "id": "Code_59", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_21", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_11", + "windowLower": "P4D", + "windowUpper": "P4D", + "windowLabel": "-4..4 days", + "instanceType": "Timing" + }, + { + "id": "Timing_15", + "extensionAttributes": [], + "name": "TIM15", + "label": "Week 24", + "description": "Week 24 timing", + "type": { + "id": "Code_64", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "After", + "instanceType": "Code" + }, + "value": "P24W", + "valueLabel": "24 Weeks", + "relativeToFrom": { + "id": "Code_65", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_23", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_11", + "windowLower": "P4D", + "windowUpper": "P4D", + "windowLabel": "-4..4 days", + "instanceType": "Timing" + }, + { + "id": "Timing_16", + "extensionAttributes": [], + "name": "TIM16", + "label": "Week 26", + "description": "Week 26 timing", + "type": { + "id": "Code_68", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "After", + "instanceType": "Code" + }, + "value": "P26W", + "valueLabel": "26 Weeks", + "relativeToFrom": { + "id": "Code_69", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_24", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_11", + "windowLower": "P3D", + "windowUpper": "P3D", + "windowLabel": "-3..3 days", + "instanceType": "Timing" + }, + { + "id": "Timing_8", + "extensionAttributes": [], + "name": "TIM8", + "label": "Week 8 Home", + "description": "Week 8 at home timing", + "type": { + "id": "Code_44", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "After", + "instanceType": "Code" + }, + "value": "P2W", + "valueLabel": "2 Weeks", + "relativeToFrom": { + "id": "Code_45", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_16", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_15", + "windowLower": null, + "windowUpper": null, + "windowLabel": "", + "instanceType": "Timing" + }, + { + "id": "Timing_10", + "extensionAttributes": [], + "name": "TIM10", + "label": "Week 12 Home", + "description": "Week 12 at home timing", + "type": { + "id": "Code_50", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "After", + "instanceType": "Code" + }, + "value": "P2W", + "valueLabel": "2 Weeks", + "relativeToFrom": { + "id": "Code_51", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_18", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_17", + "windowLower": null, + "windowUpper": null, + "windowLabel": "", + "instanceType": "Timing" + }, + { + "id": "Timing_12", + "extensionAttributes": [], + "name": "TIM12", + "label": "Week 16 Home", + "description": "Week 16 at home timing", + "type": { + "id": "Code_56", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "After", + "instanceType": "Code" + }, + "value": "P2W", + "valueLabel": "2 Weeks", + "relativeToFrom": { + "id": "Code_57", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_20", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_19", + "windowLower": null, + "windowUpper": null, + "windowLabel": "", + "instanceType": "Timing" + }, + { + "id": "Timing_12b", + "extensionAttributes": [], + "name": "TIM12b", + "label": "Week 16 Home decision", + "description": "Decide if Week 16 at home timing", + "type": { + "id": "Code_56", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "After", + "instanceType": "Code" + }, + "value": "P0D", + "valueLabel": "0 Days", + "relativeToFrom": { + "id": "Code_57", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledDecisionInstance_1", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_19", + "windowLower": null, + "windowUpper": null, + "windowLabel": "", + "instanceType": "Timing" + }, + { + "id": "Timing_14", + "extensionAttributes": [], + "name": "TIM14", + "label": "Week 20 Home", + "description": "Week 20 at home timing", + "type": { + "id": "Code_62", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "After", + "instanceType": "Code" + }, + "value": "P2W", + "valueLabel": "2 Weeks", + "relativeToFrom": { + "id": "Code_63", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_22", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_21", + "windowLower": null, + "windowUpper": null, + "windowLabel": "", + "instanceType": "Timing" + } + ], + "instances": [ + { + "id": "ScheduledActivityInstance_9", + "extensionAttributes": [], + "name": "SCREEN1", + "label": "Screen One", + "description": "-", + "defaultConditionId": "ScheduledActivityInstance_10", + "epochId": "StudyEpoch_1", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [ + "Activity_1", + "Activity_2", + "Activity_3", + "Activity_4", + "Activity_5", + "Activity_6", + "Activity_7", + "Activity_8", + "Activity_9", + "Activity_10", + "Activity_13", + "Activity_16", + "Activity_17", + "Activity_18", + "Activity_19", + "Activity_20", + "Activity_21", + "Activity_22", + "Activity_24", + "Activity_27", + "Activity_28", + "Activity_29", + "Activity_30" + ], + "encounterId": "Encounter_1" + }, + { + "id": "ScheduledActivityInstance_10", + "extensionAttributes": [], + "name": "SCREEN2", + "label": "Screen Two", + "description": "-", + "defaultConditionId": "ScheduledActivityInstance_11", + "epochId": "StudyEpoch_1", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": ["Activity_13", "Activity_14"], + "encounterId": "Encounter_2" + }, + { + "id": "ScheduledActivityInstance_11", + "extensionAttributes": [], + "name": "DOSE", + "label": "Dose", + "description": "-", + "defaultConditionId": "ScheduledActivityInstance_12", + "epochId": "StudyEpoch_2", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [ + "Activity_12", + "Activity_13", + "Activity_15", + "Activity_19", + "Activity_23", + "Activity_25", + "Activity_27", + "Activity_28", + "Activity_29", + "Activity_30" + ], + "encounterId": "Encounter_3" + }, + { + "id": "ScheduledActivityInstance_12", + "extensionAttributes": [], + "name": "WK2", + "label": "Week 2", + "description": "-", + "defaultConditionId": "ScheduledActivityInstance_13", + "epochId": "StudyEpoch_2", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [ + "Activity_11", + "Activity_13", + "Activity_16", + "Activity_19", + "Activity_20", + "Activity_21", + "Activity_22", + "Activity_23", + "Activity_25", + "Activity_30" + ], + "encounterId": "Encounter_4" + }, + { + "id": "ScheduledActivityInstance_13", + "extensionAttributes": [], + "name": "WK4", + "label": "Week 4", + "description": "-", + "defaultConditionId": "ScheduledActivityInstance_14", + "epochId": "StudyEpoch_3", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [ + "Activity_13", + "Activity_16", + "Activity_19", + "Activity_20", + "Activity_21", + "Activity_23", + "Activity_25", + "Activity_30" + ], + "encounterId": "Encounter_5" + }, + { + "id": "ScheduledActivityInstance_14", + "extensionAttributes": [], + "name": "WK6", + "label": "Week 6", + "description": "-", + "defaultConditionId": "ScheduledActivityInstance_15", + "epochId": "StudyEpoch_3", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [ + "Activity_13", + "Activity_16", + "Activity_19", + "Activity_20", + "Activity_21", + "Activity_23", + "Activity_25", + "Activity_30" + ], + "encounterId": "Encounter_6" + }, + { + "id": "ScheduledActivityInstance_15", + "extensionAttributes": [], + "name": "WK8", + "label": "Week 8", + "description": "-", + "defaultConditionId": "ScheduledActivityInstance_16", + "epochId": "StudyEpoch_3", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [ + "Activity_13", + "Activity_16", + "Activity_19", + "Activity_20", + "Activity_21", + "Activity_25", + "Activity_27", + "Activity_28", + "Activity_29", + "Activity_30" + ], + "encounterId": "Encounter_7" + }, + { + "id": "ScheduledActivityInstance_16", + "extensionAttributes": [], + "name": "WK8N", + "label": "Week NPI", + "description": "-", + "defaultConditionId": "ScheduledActivityInstance_17", + "epochId": "StudyEpoch_3", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": ["Activity_30"], + "encounterId": "Encounter_7" + }, + { + "id": "ScheduledActivityInstance_17", + "extensionAttributes": [], + "name": "WK12", + "label": "Week 12", + "description": "-", + "defaultConditionId": "ScheduledActivityInstance_18", + "epochId": "StudyEpoch_3", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [ + "Activity_13", + "Activity_16", + "Activity_19", + "Activity_20", + "Activity_21", + "Activity_22", + "Activity_23", + "Activity_25", + "Activity_30" + ], + "encounterId": "Encounter_8" + }, + { + "id": "ScheduledActivityInstance_18", + "extensionAttributes": [], + "name": "WK12N", + "label": "Week 12 NPI", + "description": "-", + "defaultConditionId": "ScheduledActivityInstance_19", + "epochId": "StudyEpoch_3", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": ["Activity_30"], + "encounterId": "Encounter_8" + }, + { + "id": "ScheduledActivityInstance_19", + "extensionAttributes": [], + "name": "WK16", + "label": "Week 16", + "description": "-", + "defaultConditionId": "ScheduledDecisionInstance_1", + "epochId": "StudyEpoch_3", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [ + "Activity_13", + "Activity_16", + "Activity_19", + "Activity_20", + "Activity_21", + "Activity_25", + "Activity_27", + "Activity_28", + "Activity_29", + "Activity_30" + ], + "encounterId": "Encounter_9" + }, + { + "id": "ScheduledDecisionInstance_1", + "extensionAttributes": [], + "name": "WK16_Dec", + "label": "Decision Week 16 NPI", + "description": "-", + "defaultConditionId": "ScheduledActivityInstance_20", + "epochId": "StudyEpoch_3", + "instanceType": "ScheduledDecisionInstance", + "conditionAssignments": [ + { + "id": "ConditionAssignment_1", + "extensionAttributes": [], + "condition": "not willing to do online questionnaire", + "conditionTargetId": "ScheduledActivityInstance_21", + "instanceType": "ConditionAssignment" + } + ] + }, + { + "id": "ScheduledActivityInstance_20", + "extensionAttributes": [], + "name": "WK16N", + "label": "Week 16 NPI", + "description": "-", + "defaultConditionId": "ScheduledActivityInstance_21", + "epochId": "StudyEpoch_3", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": ["Activity_30"], + "encounterId": "Encounter_9" + }, + { + "id": "ScheduledActivityInstance_21", + "extensionAttributes": [], + "name": "WK20", + "label": "Week 20", + "description": "-", + "defaultConditionId": "ScheduledActivityInstance_22", + "epochId": "StudyEpoch_3", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [ + "Activity_13", + "Activity_16", + "Activity_19", + "Activity_20", + "Activity_21", + "Activity_23", + "Activity_25", + "Activity_30" + ], + "encounterId": "Encounter_10" + }, + { + "id": "ScheduledActivityInstance_22", + "extensionAttributes": [], + "name": "WK20N", + "label": "Week 20 NPI", + "description": "-", + "defaultConditionId": "ScheduledActivityInstance_23", + "epochId": "StudyEpoch_3", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": ["Activity_30"], + "encounterId": "Encounter_10" + }, + { + "id": "ScheduledActivityInstance_23", + "extensionAttributes": [], + "name": "WK24", + "label": "Week 24", + "description": "-", + "defaultConditionId": "ScheduledActivityInstance_24", + "epochId": "StudyEpoch_4", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [ + "Activity_13", + "Activity_16", + "Activity_19", + "Activity_20", + "Activity_21", + "Activity_22", + "Activity_25", + "Activity_27", + "Activity_28", + "Activity_29", + "Activity_30" + ], + "encounterId": "Encounter_11" + }, + { + "id": "ScheduledActivityInstance_24", + "extensionAttributes": [], + "name": "WK26", + "label": "Week 26", + "description": "-", + "defaultConditionId": null, + "epochId": "StudyEpoch_5", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": "ScheduleTimelineExit_4", + "activityIds": [ + "Activity_7", + "Activity_13", + "Activity_16", + "Activity_19", + "Activity_20", + "Activity_21", + "Activity_25", + "Activity_26", + "Activity_30" + ], + "encounterId": "Encounter_12" + } + ], + "plannedDuration": { + "id": "Duration_11", + "extensionAttributes": [], + "text": "It will be approximately 36 weeks.", + "quantity": null, + "durationWillVary": true, + "reasonDurationWillVary": "A good reason", + "instanceType": "Duration" + }, + "instanceType": "ScheduleTimeline" + }, + { + "id": "ScheduleTimeline_1", + "extensionAttributes": [], + "name": "Adverse Event Timeline", + "label": "Adverse Event Timeline", + "description": "This is the adverse event timeline", + "mainTimeline": false, + "entryCondition": "Subject suffers an adverse event", + "entryId": "ScheduledActivityInstance_1", + "exits": [ + { + "id": "ScheduleTimelineExit_1", + "extensionAttributes": [], + "instanceType": "ScheduleTimelineExit" + } + ], + "timings": [ + { + "id": "Timing_17", + "extensionAttributes": [], + "name": "TIM17", + "label": "Adverse Event", + "description": "Adverse Event", + "type": { + "id": "Code_72", + "extensionAttributes": [], + "code": "C201358", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Fixed Reference", + "instanceType": "Code" + }, + "value": "P1D", + "valueLabel": "1 Day", + "relativeToFrom": { + "id": "Code_73", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_1", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_1", + "windowLower": null, + "windowUpper": null, + "windowLabel": "", + "instanceType": "Timing" + } + ], + "instances": [ + { + "id": "ScheduledActivityInstance_1", + "extensionAttributes": [], + "name": "AE", + "label": "Adevers Event", + "description": "-", + "defaultConditionId": null, + "epochId": null, + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": "ScheduleTimelineExit_1", + "activityIds": ["Activity_31"], + "encounterId": null + } + ], + "plannedDuration": null, + "instanceType": "ScheduleTimeline" + }, + { + "id": "ScheduleTimeline_2", + "extensionAttributes": [], + "name": "Early Termination Timeline", + "label": "Early Termination Timeline", + "description": "This is the early termination processing", + "mainTimeline": false, + "entryCondition": "Subject terminates the study early", + "entryId": "ScheduledActivityInstance_2", + "exits": [ + { + "id": "ScheduleTimelineExit_2", + "extensionAttributes": [], + "instanceType": "ScheduleTimelineExit" + } + ], + "timings": [ + { + "id": "Timing_18", + "extensionAttributes": [], + "name": "TIM18", + "label": "Early Termination", + "description": "Early Termination", + "type": { + "id": "Code_74", + "extensionAttributes": [], + "code": "C201358", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Fixed Reference", + "instanceType": "Code" + }, + "value": "P1D", + "valueLabel": "1 Day", + "relativeToFrom": { + "id": "Code_75", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_2", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_2", + "windowLower": null, + "windowUpper": null, + "windowLabel": "", + "instanceType": "Timing" + } + ], + "instances": [ + { + "id": "ScheduledActivityInstance_2", + "extensionAttributes": [], + "name": "ET", + "label": "Early Termination", + "description": "-", + "defaultConditionId": null, + "epochId": null, + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": "ScheduleTimelineExit_2", + "activityIds": [ + "Activity_7", + "Activity_13", + "Activity_16", + "Activity_19", + "Activity_20", + "Activity_21", + "Activity_22", + "Activity_23", + "Activity_25", + "Activity_26", + "Activity_27", + "Activity_28", + "Activity_29", + "Activity_30", + "Activity_32" + ], + "encounterId": null + } + ], + "plannedDuration": null, + "instanceType": "ScheduleTimeline" + }, + { + "id": "ScheduleTimeline_3", + "extensionAttributes": [], + "name": "Vital Sign Blood Pressure Timeline", + "label": "Vital Sign Blood Pressure Timeline", + "description": "BP Profile", + "mainTimeline": false, + "entryCondition": "Automatic execution", + "entryId": "ScheduledActivityInstance_3", + "exits": [ + { + "id": "ScheduleTimelineExit_3", + "extensionAttributes": [], + "instanceType": "ScheduleTimelineExit" + } + ], + "timings": [ + { + "id": "Timing_19", + "extensionAttributes": [], + "name": "TIM19", + "label": "Supine", + "description": "Supine", + "type": { + "id": "Code_76", + "extensionAttributes": [], + "code": "C201358", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Fixed Reference", + "instanceType": "Code" + }, + "value": "PT0M", + "valueLabel": "0 mins", + "relativeToFrom": { + "id": "Code_77", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_3", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_3", + "windowLower": null, + "windowUpper": null, + "windowLabel": "", + "instanceType": "Timing" + }, + { + "id": "Timing_20", + "extensionAttributes": [], + "name": "TIM20", + "label": "VS while supine", + "description": "VS while supine", + "type": { + "id": "Code_78", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "After", + "instanceType": "Code" + }, + "value": "PT5M", + "valueLabel": "5 mins", + "relativeToFrom": { + "id": "Code_79", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_4", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_3", + "windowLower": null, + "windowUpper": null, + "windowLabel": "", + "instanceType": "Timing" + }, + { + "id": "Timing_21", + "extensionAttributes": [], + "name": "TIM21", + "label": "Standing", + "description": "Standing", + "type": { + "id": "Code_80", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "After", + "instanceType": "Code" + }, + "value": "PT0M", + "valueLabel": "0 min", + "relativeToFrom": { + "id": "Code_81", + "extensionAttributes": [], + "code": "C201353", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "End to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_5", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_4", + "windowLower": null, + "windowUpper": null, + "windowLabel": "", + "instanceType": "Timing" + }, + { + "id": "Timing_22", + "extensionAttributes": [], + "name": "TIM22", + "label": "VS while standing", + "description": "VS while standing", + "type": { + "id": "Code_82", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "After", + "instanceType": "Code" + }, + "value": "PT1M", + "valueLabel": "1 min", + "relativeToFrom": { + "id": "Code_83", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_6", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_5", + "windowLower": null, + "windowUpper": null, + "windowLabel": "", + "instanceType": "Timing" + }, + { + "id": "Timing_23", + "extensionAttributes": [], + "name": "TIM23", + "label": "Standing", + "description": "Standing", + "type": { + "id": "Code_84", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "After", + "instanceType": "Code" + }, + "value": "PT0M", + "valueLabel": "0 min", + "relativeToFrom": { + "id": "Code_85", + "extensionAttributes": [], + "code": "C201353", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "End to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_7", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_6", + "windowLower": null, + "windowUpper": null, + "windowLabel": "", + "instanceType": "Timing" + }, + { + "id": "Timing_24", + "extensionAttributes": [], + "name": "TIM24", + "label": "VS while standing", + "description": "VS while standing", + "type": { + "id": "Code_86", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "After", + "instanceType": "Code" + }, + "value": "PT2M", + "valueLabel": "2 min", + "relativeToFrom": { + "id": "Code_87", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_8", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_7", + "windowLower": null, + "windowUpper": null, + "windowLabel": "", + "instanceType": "Timing" + } + ], + "instances": [ + { + "id": "ScheduledActivityInstance_3", + "extensionAttributes": [], + "name": "VS_5MIN", + "label": "5 minute supine", + "description": "", + "defaultConditionId": "ScheduledActivityInstance_4", + "epochId": null, + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": ["Activity_33"], + "encounterId": null + }, + { + "id": "ScheduledActivityInstance_4", + "extensionAttributes": [], + "name": "VS_SUPINE", + "label": "Vital signs supine", + "description": "", + "defaultConditionId": "ScheduledActivityInstance_5", + "epochId": null, + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": ["Activity_34"], + "encounterId": null + }, + { + "id": "ScheduledActivityInstance_5", + "extensionAttributes": [], + "name": "VS_1MIN", + "label": "1 minute standing", + "description": "", + "defaultConditionId": "ScheduledActivityInstance_6", + "epochId": null, + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": ["Activity_35"], + "encounterId": null + }, + { + "id": "ScheduledActivityInstance_6", + "extensionAttributes": [], + "name": "VS_STAND1", + "label": "Vital signs after 1 min standing", + "description": "", + "defaultConditionId": "ScheduledActivityInstance_7", + "epochId": null, + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": ["Activity_36"], + "encounterId": null + }, + { + "id": "ScheduledActivityInstance_7", + "extensionAttributes": [], + "name": "VS_2MIN", + "label": "2 minute standing", + "description": "", + "defaultConditionId": "ScheduledActivityInstance_8", + "epochId": null, + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": ["Activity_35"], + "encounterId": null + }, + { + "id": "ScheduledActivityInstance_8", + "extensionAttributes": [], + "name": "VS_STAND3", + "label": "Vital signs after 3 min standing", + "description": "", + "defaultConditionId": null, + "epochId": null, + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": "ScheduleTimelineExit_3", + "activityIds": ["Activity_36"], + "encounterId": null + } + ], + "plannedDuration": null, + "instanceType": "ScheduleTimeline" + } + ], + "biospecimenRetentions": [], + "documentVersionIds": [], + "eligibilityCriteria": [ + { + "id": "EligibilityCriterion_1", + "extensionAttributes": [], + "name": "IN01", + "label": "Age greater than 50", + "description": "", + "category": { + "id": "Code_638", + "extensionAttributes": [], + "code": "C25532", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "INCLUSION", + "instanceType": "Code" + }, + "identifier": "01", + "criterionItemId": "EligibilityCriterionItem_1", + "nextId": "EligibilityCriterion_2", + "previousId": null, + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_2", + "extensionAttributes": [], + "name": "IN02", + "label": "Diagnosis of Alzheimer's", + "description": "", + "category": { + "id": "Code_639", + "extensionAttributes": [], + "code": "C25532", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "INCLUSION", + "instanceType": "Code" + }, + "identifier": "02", + "criterionItemId": "EligibilityCriterionItem_2", + "nextId": "EligibilityCriterion_3", + "previousId": "EligibilityCriterion_1", + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_3", + "extensionAttributes": [], + "name": "IN03", + "label": "MMSE Score", + "description": "", + "category": { + "id": "Code_640", + "extensionAttributes": [], + "code": "C25532", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "INCLUSION", + "instanceType": "Code" + }, + "identifier": "03", + "criterionItemId": "EligibilityCriterionItem_3", + "nextId": "EligibilityCriterion_4", + "previousId": "EligibilityCriterion_2", + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_4", + "extensionAttributes": [], + "name": "IN04", + "label": "Hachinski Ischemic Score", + "description": "", + "category": { + "id": "Code_641", + "extensionAttributes": [], + "code": "C25532", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "INCLUSION", + "instanceType": "Code" + }, + "identifier": "04", + "criterionItemId": "EligibilityCriterionItem_4", + "nextId": "EligibilityCriterion_5", + "previousId": "EligibilityCriterion_3", + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_5", + "extensionAttributes": [], + "name": "IN05", + "label": "CNS imaging comptaible with Alzheimer's", + "description": "", + "category": { + "id": "Code_642", + "extensionAttributes": [], + "code": "C25532", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "INCLUSION", + "instanceType": "Code" + }, + "identifier": "05", + "criterionItemId": "EligibilityCriterionItem_5", + "nextId": "EligibilityCriterion_6", + "previousId": "EligibilityCriterion_4", + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_6", + "extensionAttributes": [], + "name": "IN06", + "label": "Informed consent criteria", + "description": "", + "category": { + "id": "Code_643", + "extensionAttributes": [], + "code": "C25532", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "INCLUSION", + "instanceType": "Code" + }, + "identifier": "06", + "criterionItemId": "EligibilityCriterionItem_6", + "nextId": "EligibilityCriterion_7", + "previousId": "EligibilityCriterion_5", + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_7", + "extensionAttributes": [], + "name": "IN07", + "label": "Geographic proximity criteria", + "description": "", + "category": { + "id": "Code_644", + "extensionAttributes": [], + "code": "C25532", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "INCLUSION", + "instanceType": "Code" + }, + "identifier": "07", + "criterionItemId": "EligibilityCriterionItem_7", + "nextId": "EligibilityCriterion_8", + "previousId": "EligibilityCriterion_6", + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_8", + "extensionAttributes": [], + "name": "IN08", + "label": "Reliable caregiver criteria", + "description": "", + "category": { + "id": "Code_645", + "extensionAttributes": [], + "code": "C25532", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "INCLUSION", + "instanceType": "Code" + }, + "identifier": "08", + "criterionItemId": "EligibilityCriterionItem_8", + "nextId": "EligibilityCriterion_9", + "previousId": "EligibilityCriterion_7", + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_9", + "extensionAttributes": [], + "name": "EX01", + "label": "Previous study criteria", + "description": "", + "category": { + "id": "Code_646", + "extensionAttributes": [], + "code": "C25370", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "EXCLUSION", + "instanceType": "Code" + }, + "identifier": "09", + "criterionItemId": "EligibilityCriterionItem_9", + "nextId": "EligibilityCriterion_10", + "previousId": "EligibilityCriterion_8", + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_10", + "extensionAttributes": [], + "name": "EX02", + "label": "Other Alzheimer's therapy criteria", + "description": "", + "category": { + "id": "Code_647", + "extensionAttributes": [], + "code": "C25370", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "EXCLUSION", + "instanceType": "Code" + }, + "identifier": "10", + "criterionItemId": "EligibilityCriterionItem_10", + "nextId": "EligibilityCriterion_11", + "previousId": "EligibilityCriterion_9", + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_11", + "extensionAttributes": [], + "name": "EX03", + "label": "Serious illness criteria", + "description": "", + "category": { + "id": "Code_648", + "extensionAttributes": [], + "code": "C25370", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "EXCLUSION", + "instanceType": "Code" + }, + "identifier": "11", + "criterionItemId": "EligibilityCriterionItem_11", + "nextId": "EligibilityCriterion_12", + "previousId": "EligibilityCriterion_10", + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_12", + "extensionAttributes": [], + "name": "EX04", + "label": "Serious neurolocal conditions criteria", + "description": "", + "category": { + "id": "Code_649", + "extensionAttributes": [], + "code": "C25370", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "EXCLUSION", + "instanceType": "Code" + }, + "identifier": "12", + "criterionItemId": "EligibilityCriterionItem_12", + "nextId": "EligibilityCriterion_13", + "previousId": "EligibilityCriterion_11", + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_13", + "extensionAttributes": [], + "name": "EX05", + "label": "Depression criteria", + "description": "", + "category": { + "id": "Code_650", + "extensionAttributes": [], + "code": "C25370", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "EXCLUSION", + "instanceType": "Code" + }, + "identifier": "13", + "criterionItemId": "EligibilityCriterionItem_13", + "nextId": "EligibilityCriterion_14", + "previousId": "EligibilityCriterion_12", + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_14", + "extensionAttributes": [], + "name": "EX06", + "label": "Schizophrenia, Bipolar, Ethanol or psychoactive abuse criteria", + "description": "", + "category": { + "id": "Code_651", + "extensionAttributes": [], + "code": "C25370", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "EXCLUSION", + "instanceType": "Code" + }, + "identifier": "14", + "criterionItemId": "EligibilityCriterionItem_14", + "nextId": "EligibilityCriterion_15", + "previousId": "EligibilityCriterion_13", + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_15", + "extensionAttributes": [], + "name": "EX07", + "label": "Syncope criteria", + "description": "", + "category": { + "id": "Code_652", + "extensionAttributes": [], + "code": "C25370", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "EXCLUSION", + "instanceType": "Code" + }, + "identifier": "15", + "criterionItemId": "EligibilityCriterionItem_15", + "nextId": "EligibilityCriterion_16", + "previousId": "EligibilityCriterion_14", + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_16", + "extensionAttributes": [], + "name": "EX08", + "label": "ECG Criteria", + "description": "", + "category": { + "id": "Code_653", + "extensionAttributes": [], + "code": "C25370", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "EXCLUSION", + "instanceType": "Code" + }, + "identifier": "16b", + "criterionItemId": "EligibilityCriterionItem_16", + "nextId": "EligibilityCriterion_17", + "previousId": "EligibilityCriterion_15", + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_17", + "extensionAttributes": [], + "name": "EX09", + "label": "Cardiovascular criteria", + "description": "", + "category": { + "id": "Code_654", + "extensionAttributes": [], + "code": "C25370", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "EXCLUSION", + "instanceType": "Code" + }, + "identifier": "17", + "criterionItemId": "EligibilityCriterionItem_17", + "nextId": "EligibilityCriterion_18", + "previousId": "EligibilityCriterion_16", + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_18", + "extensionAttributes": [], + "name": "EX10", + "label": "Gastrointensinal criteria", + "description": "", + "category": { + "id": "Code_655", + "extensionAttributes": [], + "code": "C25370", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "EXCLUSION", + "instanceType": "Code" + }, + "identifier": "18", + "criterionItemId": "EligibilityCriterionItem_18", + "nextId": "EligibilityCriterion_19", + "previousId": "EligibilityCriterion_17", + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_19", + "extensionAttributes": [], + "name": "EX11", + "label": "Endocrine criteria", + "description": "", + "category": { + "id": "Code_656", + "extensionAttributes": [], + "code": "C25370", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "EXCLUSION", + "instanceType": "Code" + }, + "identifier": "19", + "criterionItemId": "EligibilityCriterionItem_19", + "nextId": "EligibilityCriterion_20", + "previousId": "EligibilityCriterion_18", + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_20", + "extensionAttributes": [], + "name": "EX12", + "label": "Resporatory criteria", + "description": "", + "category": { + "id": "Code_657", + "extensionAttributes": [], + "code": "C25370", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "EXCLUSION", + "instanceType": "Code" + }, + "identifier": "20", + "criterionItemId": "EligibilityCriterionItem_20", + "nextId": "EligibilityCriterion_21", + "previousId": "EligibilityCriterion_19", + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_21", + "extensionAttributes": [], + "name": "EX13", + "label": "Genitourinary criteria", + "description": "", + "category": { + "id": "Code_658", + "extensionAttributes": [], + "code": "C25370", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "EXCLUSION", + "instanceType": "Code" + }, + "identifier": "21", + "criterionItemId": "EligibilityCriterionItem_21", + "nextId": "EligibilityCriterion_22", + "previousId": "EligibilityCriterion_20", + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_22", + "extensionAttributes": [], + "name": "EX14", + "label": "Rheumatologic criteria", + "description": "", + "category": { + "id": "Code_659", + "extensionAttributes": [], + "code": "C25370", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "EXCLUSION", + "instanceType": "Code" + }, + "identifier": "22", + "criterionItemId": "EligibilityCriterionItem_22", + "nextId": "EligibilityCriterion_23", + "previousId": "EligibilityCriterion_21", + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_23", + "extensionAttributes": [], + "name": "EX15", + "label": "HIV criteria", + "description": "", + "category": { + "id": "Code_660", + "extensionAttributes": [], + "code": "C25370", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "EXCLUSION", + "instanceType": "Code" + }, + "identifier": "23", + "criterionItemId": "EligibilityCriterionItem_23", + "nextId": "EligibilityCriterion_24", + "previousId": "EligibilityCriterion_22", + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_24", + "extensionAttributes": [], + "name": "EX16", + "label": "Neurosyphilis, Meningitis,Encephalitis criteria", + "description": "", + "category": { + "id": "Code_661", + "extensionAttributes": [], + "code": "C25370", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "EXCLUSION", + "instanceType": "Code" + }, + "identifier": "24", + "criterionItemId": "EligibilityCriterionItem_24", + "nextId": "EligibilityCriterion_25", + "previousId": "EligibilityCriterion_23", + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_25", + "extensionAttributes": [], + "name": "EX17", + "label": "Malignant disease criteria", + "description": "", + "category": { + "id": "Code_662", + "extensionAttributes": [], + "code": "C25370", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "EXCLUSION", + "instanceType": "Code" + }, + "identifier": "25", + "criterionItemId": "EligibilityCriterionItem_25", + "nextId": "EligibilityCriterion_26", + "previousId": "EligibilityCriterion_24", + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_26", + "extensionAttributes": [], + "name": "EX18", + "label": "Ability to participate in study criteria", + "description": "", + "category": { + "id": "Code_663", + "extensionAttributes": [], + "code": "C25370", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "EXCLUSION", + "instanceType": "Code" + }, + "identifier": "26", + "criterionItemId": "EligibilityCriterionItem_26", + "nextId": "EligibilityCriterion_27", + "previousId": "EligibilityCriterion_25", + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_27", + "extensionAttributes": [], + "name": "EX19", + "label": "Laboratory values criteria", + "description": "", + "category": { + "id": "Code_664", + "extensionAttributes": [], + "code": "C25370", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "EXCLUSION", + "instanceType": "Code" + }, + "identifier": "27b", + "criterionItemId": "EligibilityCriterionItem_27", + "nextId": "EligibilityCriterion_28", + "previousId": "EligibilityCriterion_26", + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_28", + "extensionAttributes": [], + "name": "EX20", + "label": "Central laboratory values criteria", + "description": "", + "category": { + "id": "Code_665", + "extensionAttributes": [], + "code": "C25370", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "EXCLUSION", + "instanceType": "Code" + }, + "identifier": "28b", + "criterionItemId": "EligibilityCriterionItem_28", + "nextId": "EligibilityCriterion_29", + "previousId": "EligibilityCriterion_27", + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_29", + "extensionAttributes": [], + "name": "EX21", + "label": "Syphilia criteria", + "description": "", + "category": { + "id": "Code_666", + "extensionAttributes": [], + "code": "C25370", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "EXCLUSION", + "instanceType": "Code" + }, + "identifier": "29b", + "criterionItemId": "EligibilityCriterionItem_29", + "nextId": "EligibilityCriterion_30", + "previousId": "EligibilityCriterion_28", + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_30", + "extensionAttributes": [], + "name": "EX22", + "label": "Hemoglobin criteria", + "description": "", + "category": { + "id": "Code_667", + "extensionAttributes": [], + "code": "C25370", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "EXCLUSION", + "instanceType": "Code" + }, + "identifier": "30b", + "criterionItemId": "EligibilityCriterionItem_30", + "nextId": "EligibilityCriterion_31", + "previousId": "EligibilityCriterion_29", + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_31", + "extensionAttributes": [], + "name": "EX23", + "label": "Medications Criteria", + "description": "", + "category": { + "id": "Code_668", + "extensionAttributes": [], + "code": "C25370", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "EXCLUSION", + "instanceType": "Code" + }, + "identifier": "31b", + "criterionItemId": "EligibilityCriterionItem_31", + "nextId": null, + "previousId": "EligibilityCriterion_30", + "notes": [], + "instanceType": "EligibilityCriterion" + } + ], + "analysisPopulations": [ + { + "id": "AnalysisPopulation_1", + "extensionAttributes": [], + "name": "AP_1", + "label": null, + "description": null, + "text": "Patients with Mild to Moderate Alzheimer\u2019s Disease.", + "subsetOfIds": ["StudyDesignPopulation_1"], + "notes": [], + "instanceType": "AnalysisPopulation" + } + ], + "notes": [], + "instanceType": "InterventionalStudyDesign", + "subTypes": [ + { + "id": "Code_153", + "extensionAttributes": [], + "code": "C49666", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Efficacy Study", + "instanceType": "Code" + }, + { + "id": "Code_154", + "extensionAttributes": [], + "code": "C49667", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Safety Study", + "instanceType": "Code" + }, + { + "id": "Code_155", + "extensionAttributes": [], + "code": "C49663", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Pharmacokinetic Study", + "instanceType": "Code" + } + ], + "model": { + "id": "Code_156", + "extensionAttributes": [], + "code": "C82639", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Parallel Study", + "instanceType": "Code" + }, + "intentTypes": [ + { + "id": "Code_152", + "extensionAttributes": [], + "code": "C49656", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Treatment Study", + "instanceType": "Code" + } + ], + "blindingSchema": { + "id": "AliasCode_23", + "extensionAttributes": [], + "standardCode": { + "id": "Code_151", + "extensionAttributes": [], + "code": "C15228", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Double Blind Study", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + } + } + ], + "titles": [ + { + "id": "StudyTitle_1", + "extensionAttributes": [], + "text": "LZZT", + "type": { + "id": "Code_7", + "extensionAttributes": [], + "code": "C94108", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Study Acronym", + "instanceType": "Code" + }, + "instanceType": "StudyTitle" + }, + { + "id": "StudyTitle_2", + "extensionAttributes": [], + "text": "Xanomeline (LY246708)", + "type": { + "id": "Code_9", + "extensionAttributes": [], + "code": "C99905x1", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Brief Study Title", + "instanceType": "Code" + }, + "instanceType": "StudyTitle" + }, + { + "id": "StudyTitle_3", + "extensionAttributes": [], + "text": "Safety and Efficacy of the Xanomeline Transdermal Therapeutic System (TTS) in Patients with Mild to Moderate Alzheimer's Disease", + "type": { + "id": "Code_10", + "extensionAttributes": [], + "code": "C99905x2", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Official Study Title", + "instanceType": "Code" + }, + "instanceType": "StudyTitle" + }, + { + "id": "StudyTitle_4", + "extensionAttributes": [], + "text": "Safety and Efficacy of the Xanomeline Transdermal Therapeutic System (TTS) in Patients with Mild to Moderate Alzheimer's Disease", + "type": { + "id": "Code_11", + "extensionAttributes": [], + "code": "C99905x3", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Public Study Title", + "instanceType": "Code" + }, + "instanceType": "StudyTitle" + } + ], + "eligibilityCriterionItems": [ + { + "id": "EligibilityCriterionItem_1", + "extensionAttributes": [], + "name": "IN01", + "label": null, + "description": null, + "text": "

    Males and postmenopausal females at least years of age.

    ", + "dictionaryId": "SyntaxTemplateDictionary_1", + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_2", + "extensionAttributes": [], + "name": "IN02", + "label": null, + "description": null, + "text": "

    as defined by National Institute of Neurological and Communicative Disorders and Stroke (NINCDS) and the Alzheimer's Disease and Related Disorders Association (ADRDA) guidelines (Attachment LZZT.7).

    ", + "dictionaryId": "SyntaxTemplateDictionary_1", + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_3", + "extensionAttributes": [], + "name": "IN03", + "label": null, + "description": null, + "text": "

    score of 10 to 23.

    ", + "dictionaryId": "SyntaxTemplateDictionary_2", + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_4", + "extensionAttributes": [], + "name": "IN04", + "label": null, + "description": null, + "text": "

    score of \u22644 (Attachment LZZT.8).

    ", + "dictionaryId": "SyntaxTemplateDictionary_2", + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_5", + "extensionAttributes": [], + "name": "IN05", + "label": null, + "description": null, + "text": "

    CNS imaging (CT scan or MRI of brain) compatible with AD within past 1 year.

    \n

    The following findings are incompatible with AD:

    \n
      \n
    1. \n

      Large vessel strokes

      \n
        \n
      1. \n

        Any definite area of encephalomalacia consistent with ischemic necrosis in any cerebral artery territory.

        \n
      2. \n
      3. \n

        Large, confluent areas of encephalomalacia in parieto-occipital or frontal regions consistent with watershed\n infarcts.

        \n

        The above are exclusionary. Exceptions are made for small areas of cortical asymmetry which may represent a\n small cortical stroke or a focal area of atrophy provided there is no abnormal signal intensity in the\n immediately underlying parenchyma. Only one such questionable area allowed per scan, and size is restricted to\n \u22641cm in frontal/parietal/temporal cortices and \u22642 cm in occipital cortex.

        \n
      4. \n
      \n
    2. \n
    3. \n

      Small vessel ischemia

      \n
        \n
      1. \n

        Lacunar infarct is defined as an area of abnormal intensity seen on CT scan or on both T1 and T2 weighted MRI\n images in the basal ganglia, thalamus or deep white matter which is \u22641 cm in maximal diameter. A maximum of\n one\n lacune is allowed per scan.

        \n
      2. \n
      3. \n

        Leukoariosis or leukoencephalopathy is regarded as an abnormality seen on T2 but not T1 weighted MRIs, or on\n CT. This is accepted if mild or moderate in extent, meaning involvement of less than 25% of cortical white\n matter.\n

      4. \n
      \n
    4. \n
    5. \n

      Miscellaneous

      \n
        \n
      1. \n

        Benign small extra-axial tumors (ie, meningiomas) are accepted if they do not contact or indent the brain\n parenchyma.

        \n
      2. \n
      3. \n

        Small extra-axial arachnoid cysts are accepted if they do not indent or deform the brain parenchyma.

        \n
      4. \n
      \n
    6. \n
    ", + "dictionaryId": null, + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_6", + "extensionAttributes": [], + "name": "IN06", + "label": null, + "description": null, + "text": "

    Investigator has obtained informed consent signed by the patient (and/or legal representative) and by the caregiver.

    ", + "dictionaryId": null, + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_7", + "extensionAttributes": [], + "name": "IN07", + "label": null, + "description": null, + "text": "

    Geographic proximity to investigator's site that allows adequate follow-up.

    ", + "dictionaryId": null, + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_8", + "extensionAttributes": [], + "name": "IN08", + "label": null, + "description": null, + "text": "

    A reliable caregiver who is in frequent or daily contact with the patient and who will accompany the patient to the office and/or be available by telephone at designated times, will monitor administration of prescribed medications, and will be responsible for the overall care of the patient at home. The caregiver and the patient must be able to communicate in English and willing to comply with 26 weeks of transdermal therapy.

    ", + "dictionaryId": null, + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_9", + "extensionAttributes": [], + "name": "EX01", + "label": null, + "description": null, + "text": "

    Persons who have previously completed or withdrawn from this study or any other study investigating xanomeline TTS or the oral formulation of xanomeline.

    ", + "dictionaryId": null, + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_10", + "extensionAttributes": [], + "name": "EX02", + "label": null, + "description": null, + "text": "

    Use of any investigational agent or approved Alzheimer's therapeutic medication within 30 days prior to enrollment into the study.

    ", + "dictionaryId": null, + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_11", + "extensionAttributes": [], + "name": "EX03", + "label": null, + "description": null, + "text": "

    Serious illness which required hospitalization within 3 months of screening.

    ", + "dictionaryId": null, + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_12", + "extensionAttributes": [], + "name": "EX04", + "label": null, + "description": null, + "text": "

    Diagnosis of serious neurological conditions, including

    \n
      \n
    1. Stroke or vascular dementia documented by clinical history and/or radiographic findings interpretable by the investigator as indicative of these disorders

    2. \n
    3. Seizure disorder other than simple childhood febrile seizures

    4. \n
    5. Severe head trauma resulting in protracted loss of consciousness within the last 5 years, or multiple episodes of head trauma

    6. \n
    7. Parkinson's disease

    8. \n
    9. Multiple sclerosis

    10. \n
    11. Amyotrophic lateral sclerosis

    12. \n
    13. Myasthenia gravis.

    14. \n
    ", + "dictionaryId": null, + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_13", + "extensionAttributes": [], + "name": "EX05", + "label": null, + "description": null, + "text": "

    Episode of depression meeting DSM-IV criteria within 3 months of screening.

    ", + "dictionaryId": null, + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_14", + "extensionAttributes": [], + "name": "EX06", + "label": null, + "description": null, + "text": "

    A history within the last 5 years of the following:

    \n
      \n
    1. Schizophrenia

    2. \n
    3. Bipolar Disease

    4. \n
    5. Ethanol or psychoactive drug abuse or dependence.

    6. \n
    ", + "dictionaryId": null, + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_15", + "extensionAttributes": [], + "name": "EX07", + "label": null, + "description": null, + "text": "

    A history of syncope within the last 5 years.

    ", + "dictionaryId": null, + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_16", + "extensionAttributes": [], + "name": "EX08", + "label": null, + "description": null, + "text": "

    Evidence from ECG recording at screening of any of the following conditions :

    \n
      \n
    1. Left bundle branch block

    2. \n
    3. Bradycardia \u226450 beats per minute

    4. \n
    5. Sinus pauses >2 seconds

    6. \n
    7. Second or third degree heart block unless treated with a pacemaker

    8. \n
    9. Wolff-Parkinson-White syndrome

    10. \n
    11. Sustained supraventricular tachyarrhythmia including SVT\u226510 sec, atrial fibrillation, atrial flutter.

    12. \n
    13. Ventricular tachycardia at a rate of \u2265120 beats per minute lasting\u226510 seconds.

    14. \n
    ", + "dictionaryId": null, + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_17", + "extensionAttributes": [], + "name": "EX09", + "label": null, + "description": null, + "text": "

    A history within the last 5 years of a serious cardiovascular disorder, including

    \n
      \n
    1. Clinically significant arrhythmia

    2. \n
    3. Symptomatic sick sinus syndrome not treated with a pacemaker

    4. \n
    5. Congestive heart failure refractory to treatment

    6. \n
    7. Angina except angina controlled with PRN nitroglycerin

    8. \n
    9. Resting heart rate <50 or >100 beats per minute, on physical exam

    10. \n
    11. Uncontrolled hypertension.

    12. \n
    ", + "dictionaryId": null, + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_18", + "extensionAttributes": [], + "name": "EX10", + "label": null, + "description": null, + "text": "

    A history within the last 5 years of a serious gastrointestinal disorder, including

    \n
      \n
    1. Chronic peptic/duodenal/gastric/esophageal ulcer that are untreated or refractory to treatment

    2. \n
    3. Symptomatic diverticular disease

    4. \n
    5. Inflammatory bowel disease

    6. \n
    7. Pancreatitis

    8. \n
    9. Hepatitis

    10. \n
    11. Cirrhosis of the liver.

    12. \n
    ", + "dictionaryId": null, + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_19", + "extensionAttributes": [], + "name": "EX11", + "label": null, + "description": null, + "text": "

    A history within the last 5 years of a serious endocrine disorder, including

    \n
      \n
    1. Uncontrolled Insulin Dependent Diabetes Mellitus (IDDM)

    2. \n
    3. Diabetic ketoacidosis

    4. \n
    5. Untreated hyperthyroidism

    6. \n
    7. Untreated hypothyroidism

    8. \n
    9. Other untreated endocrinological disorder

    10. \n
    ", + "dictionaryId": null, + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_20", + "extensionAttributes": [], + "name": "EX12", + "label": null, + "description": null, + "text": "

    A history within the last 5 years of a serious respiratory disorder, including

    \n
      \n
    1. Asthma with bronchospasm refractory to treatment

    2. \n
    3. Decompensated chronic obstructive pulmonary disease.

    4. \n
    ", + "dictionaryId": null, + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_21", + "extensionAttributes": [], + "name": "EX13", + "label": null, + "description": null, + "text": "

    A history within the last 5 years of a serious genitourinary disorder, including

    \n
      \n
    1. Renal failure

    2. \n
    3. Uncontrolled urinary retention.

    4. \n
    ", + "dictionaryId": null, + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_22", + "extensionAttributes": [], + "name": "EX14", + "label": null, + "description": null, + "text": "

    A history within the last 5 years of a serious rheumatologic disorder, including

    \n
      \n
    1. Lupus

    2. \n
    3. Temporal arteritis

    4. \n
    5. Severe rheumatoid arthritis.

    6. \n
    ", + "dictionaryId": null, + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_23", + "extensionAttributes": [], + "name": "EX15", + "label": null, + "description": null, + "text": "

    A known history of human immunodeficiency virus (HIV) within the last 5 years.

    ", + "dictionaryId": null, + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_24", + "extensionAttributes": [], + "name": "EX16", + "label": null, + "description": null, + "text": "

    A history within the last 5 years of a serious infectious disease including

    \n
      \n
    1. a) Neurosyphilis

    2. \n
    3. b) Meningitis

    4. \n
    5. c) Encephalitis.

    6. \n
    ", + "dictionaryId": null, + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_25", + "extensionAttributes": [], + "name": "EX17", + "label": null, + "description": null, + "text": "

    A history within the last 5 years of a primary or recurrent malignant disease with the exception of resected cutaneous squamous cell carcinoma in situ, basal cell carcinoma, cervical carcinoma in situ, or in situ prostate cancer with a normal PSA postresection.

    ", + "dictionaryId": null, + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_26", + "extensionAttributes": [], + "name": "EX18", + "label": null, + "description": null, + "text": "

    Visual, hearing, or communication disabilities impairing the ability to participate in the study; (for example, inability to speak or understand English, illiteracy).

    ", + "dictionaryId": null, + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_27", + "extensionAttributes": [], + "name": "EX19", + "label": null, + "description": null, + "text": "

    Laboratory test values exceeding the Lilly Reference Range III for the patient's age in any of the following analytes: \u2191 creatinine, \u2191 total bilirubin, \u2191 SGOT, \u2191 SGPT, \u2191 alkaline phosphatase, \u2191 GGT, \u2191\u2193 hemoglobin, \u2191\u2193 white blood cell count, \u2191\u2193 platelet count, \u2191\u2193 serum sodium, potassium, or calcium.

    \n

    If values exceed these laboratory reference ranges, clinical significance will be judged by the monitoring physicians. If the monitoring physician determines that the deviation from the reference range is not clinically significant, the patient may be included in the study. This decision will be documented.

    ", + "dictionaryId": null, + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_28", + "extensionAttributes": [], + "name": "EX20", + "label": null, + "description": null, + "text": "

    Central laboratory test values below reference range for folate, and Vitamin B 12 , and outside reference range for thyroid function tests.

    \n
      \n
    1. \n

      Folate reference range 2.0 to 25.0 ng/mL. Patients will be allowed to enroll if their folate levels are above the upper end of the range if patients are taking vitamin supplements.

      \n
    2. \n
    3. \n

      Vitamin B 12 reference range 130 to 900 pg/mL. Patients will be allowed to enroll if their B 12 levels are above the upper reference range if patients are taking oral vitamin supplements.

      \n
    4. \n
    5. \n

      Thyroid functions

      \n
        \n
      1. \n

        Thyroid Uptake reference range 25 to 38%. Patients will be allowed to enroll with results of 23 to 51% provided the remainder of the thyroid profile is normal and there are no clinical signs or symptoms of thyroid abnormality.

        \n
      2. \n
      3. \n

        TSH reference range 0.32 to 5.0. Patients will be allowed to enroll with results of 0.03 to 6.2 if patients are taking stable doses of exogenous thyroid supplements, with normal free thyroid index, and show no clinical signs or symptoms of thyroid abnormality.

        \n
      4. \n
      5. \n

        Total T4 reference range 4.5 to 12.5. Patients will be allowed to enroll with results of 4.1 to 13.4 if patients are taking stable doses of exogenous thyroid hormone, with normal free thyroid index, and show no clinical signs or symptoms of thyroid abnormality.

        \n
      6. \n
      7. \n

        Free Thyroid Index reference range 1.1 to 4.6.

        \n
      8. \n
      \n
    6. \n
    ", + "dictionaryId": null, + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_29", + "extensionAttributes": [], + "name": "EX21", + "label": null, + "description": null, + "text": "

    Positive syphilis screening.

    \n

    Positive syphilis screening. As determined by positive RPR followed up by confirmatory FTA-Abs. Confirmed patients are excluded unless there is a documented medical history of an alternative disease (for example, yaws) which caused the lab abnormality.

    ", + "dictionaryId": null, + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_30", + "extensionAttributes": [], + "name": "EX22", + "label": null, + "description": null, + "text": "

    Glycosylated hemoglobin (A1C). Required only on patients with known diabetes mellitus or random blood sugar >200 on screening labs. Patients will be excluded if levels are >9.5%

    ", + "dictionaryId": null, + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_31", + "extensionAttributes": [], + "name": "EX23", + "label": null, + "description": null, + "text": "

    Treatment with the following medications within the specified washout periods prior to enrollment and during the\n study:

    \n
      \n
    1. \n

      Anticonvulsants including but not limited to

      \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
      Depakote® (valproic acid) 2 weeks
      Dilantin® (phenytoin)2 weeks
      Felbatol®\n (felbamate)1 month
      Klonopin® (clonazepam)2\n weeks
      Lamictal® (lamotrigine)2 weeks
      Mysoline® (primidone)1 month
      Neurontin®\n (gabapentin)2 weeks
      Phenobarbitol1 month
      Tegretol® (carbamazepine)2 weeks
      \n
    2. \n
    3. \n

      Alpha receptor blockers including but not limited to

      \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
      Aldomet® (methyldopa) 2 weeks
      Cardura®\n (doxazosin) 2 weeks
      Catapres® (clonidine)\n 2 weeks
      Hytrin® (terazosin) 2 weeks
      Minipress® (prazosin)2 weeks
      Tenex® (guanfacine)2 weeks
      Wytensin®\n (guanabenz) 2 weeks
      \n

      The use of low doses\n (2 mg daily) of either Hytrin® or Cardura® for relief of\n urinary retention for patients with prostatic hypertrophy will be considered\n on a case-by-case basis provided blood pressure is stable and the medication\n has not had demonstrable effect on dementia symptoms in the opinion of the treating\n physician. Contact CRO medical monitor.

      \n
    4. \n
    5. \n

      Calcium channel blockers\n that are CNS active including but not limited to

      \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
      Calan® , Isoptin® , Verelan® (verapamil) 2 weeks
      Cardizem® (diltiazem) 2 weeks
      Nimotop®\n (nimodipine) 2 weeks
      Adalat® , Procardia XL®\n (nifedipine) 2 weeks
      \n

      Cardene® (nicardipine),\n Norvasc® , (amlodipine), and DynaCirc® (isradipine) will\n be allowed during the study. If a patient is taking an excluded calcium channel\n blocker and is changed to an equivalent dose of an allowed calcium channel blocker,\n enrollment may proceed in as little as 24 hours though 1 week is preferred when\n possible.

      \n
    6. \n
    7. \n

      Beta blockers including but not limited to

      \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
      Betapace® (sotalol) 2 weeks
      Inderal® (propranolol) 2 weeks
      Lopressor®\n , Toprol XL® (metoprolol) 2 weeks
      Corgard® (nadolol) 2 weeks
      Sectral® (acebutolol)2 weeks
      Tenormin® (atenolol) 2 weeks
      Visken® (pindolol)2 weeks
      \n

      Beta\n blocker eye drops for glaucoma will be considered on a case-by-case basis. Call\n medical monitor.

      \n
    8. \n
    9. \n

      Beta sympathomimetics (unless inhaled) including\n but not limited to

      \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
      Alupent® tablets\n (metaproterenol) 2 weeks
      Brethine® tablets\n (terbutaline) 2 weeks
      Dopamine 2 weeks
      Proventil Repetabs® , Ventolin® tablets (albuterol tablets)\n 2 weeks
      \n
    10. \n
    11. Parasympathomimetics (cholinergics) (unless opthalmic) including but not limited to\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
      Antilirium® (physostigmine) 1 month
      Aricept® (donepezil) 1 month
      Cognex® (tacrine) 1\n month
      Mestinon® (pyridostigmine) 1 week
      Reglan® (metoclopramide)2 weeks
      Urecholine®\n , Duvoid (bethanechol) 2 weeks
      \n

      Cholinergic eye drops for treatment of glaucoma will be allowed during the study on a case-by-case basis.\n Please contact the CRO medical monitor.

      \n
    12. \n
    13. \n

      Muscle relaxants-centrally active including but not limited to

      \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
      Equanil® (meprobamate) 2 weeks
      Flexeril® (cyclobenzaprine)2 weeks
      Lioresal® (baclofen) 2 weeks
      Norflex® (orphenadrine) 2 weeks
      Parafon Forte® (chlorzoxazone)2 weeks
      Robaxin® (methocarbamol) 2 weeks
      Skelaxin® (metaxalone)\n 2 weeks
      Soma® (carisoprodol) 2 weeks
      \n
    14. \n
    15. \n

      Monamine oxidase inhibitors (MAOI) including but not limited to

      \n \n \n \n \n \n \n \n \n \n \n \n \n \n
      Eldepryl® (selegiline)1 month
      Nardil® (phenelzine) 1 month
      Parnate® (tranylcypromine) 1 month
      \n
    16. \n
    17. \n

      Parasympatholytics including but not limited to

      \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
      Antivert® , Bonine® , Dramamine II® (meclizine)3 days
      Artane® (trihexyphenidyl)2 weeks
      Bellergal-S® (alkaloids of belladonna and ergotamine) 2 weeks
      Bentyl® (dicyclomine) 3 days
      Cogentin® (benztropine) 2 weeks
      Cystospaz®, Levsin® , Levsinex® (hyoscyamine)2 weeks
      Ditropan®\n (oxybutynin) 2 weeks
      Donnatal® , Hyosophen®\n (atropine, scopolamine, hyoscyamine and phenobarbitol) 1 month
      Dramamine® (dimenhydrinate)3 days
      Lomotil®, Lonox® (atropine, diphenoxylate) 2 weeks
      Pro-Banthine®(propantheline) 2 weeks
      Robinul® (glycopyrrolate)3 days
      Tigan® (trimethobenzamide) 3 days
      Transderm-Scop® (scopolamine) 2 weeks
      Urispas® (flavoxate)2 weeks
      \n
    18. \n
    19. \n

      Antidepressants including but not limited to

      \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
      Anafranil® (clomipramine) 1 month
      Asendin®\n (amoxapine) 1 month
      Desyrel® (trazodone)\n 1 month
      Effexor® (venlafaxine) 1 month
      Elavil® (amitriptyline) 1 month
      Ludiomil®\n (maprotiline) 1 month
      Norpramin® (desipramine)\n 1 month
      Pamelor® , Aventyl® (nortriptyline) 1\n month
      Paxil® (paroxetine) 1 month
      Prozac®\n (fluoxetine 1 month
      Remeron® (mirtazapine)\n 1 month
      Serzone® (nefazodone) 1 month
      Sinequan®\n (doxepin) 1 month
      Tofranil® (imipramine)\n 1 month
      Vivactil® (protriptyline) 1 month
      Wellbutrin® (bupropion) 1 month
      Zoloft®\n (sertraline) 1 month
      \n
    20. \n
    21. \n

      Systemic corticosteroids including but not limited to

      \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
      Cortisone2 weeks
      Decadron® (dexamethasone)2 weeks
      Depo-Medrol® (methylprednisolone)1 month\n
      Prednisone2 weeks
      \n
    22. \n
    23. \n

      Xanthine derivatives\n including but not limited to

      \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
      Aminophylline2 weeks\n
      Fioricet® , Esgic® , Phrenilin Forte® (caffeine, butalbital)3 days\n
      Theo-Dur® (theophylline)2 weeks\n
      Wigraine® , Cafergot® (caffeine, ergotamine)3 days\n
      \n
    24. \n
    25. \n

      Histamine (H2 ) antagonists including but not limited to

      \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
      Axid® (nizatidine)1 week
      Pepcid® (famotidine)1 week
      Tagamet® (cimetidine)1 week
      Zantac® (ranitidine)1 week
      \n

      If an H 2 antagonist is needed by the patient, Axid® will be allowed on a case-by-case\n basis. Please consult CRO medical monitor.

      \n
    26. \n
    27. \n

      Narcotic Analgesics including but not limited to

      \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
      Darvocet-N\n 100® , (propoxyphene)1 week
      Demerol® (meperidine)1\n week
      Dilaudid® (hydromorphone)1 week
      Duragesic® (fentanyl)1 week
      MS\n Contin® , Roxanol® , Oramorph® (morphine) 1 week
      Percocet® , Roxicet® (oxycodone with acetaminophen)3\n days
      Percodan® , Roxiprin1 week
      Stadol® (butorphanol)1 week
      Talacen®\n (pentazocine)1 week
      Tylenol #2® , #3®\n , #4® (codeine and acetaminophen) 3 days
      Tylox®\n , Roxilox® (oxycodone)3 days
      Vicodin®, Lorcet® (hydrocodone)1 week
      \n

      Percocet\n (oxycodone with acetaminophen) and Tylenol® with codeine #2, #3, #4\n (acetaminophen + codeine) ARE allowed in the month prior to enrollment, but\n are not permitted in the 3 days prior to enrollment.

      \n
    28. \n
    29. \n

      Neuroleptics\n (antipsychotics) including but not limited to

      \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
      Clozaril®\n (clozapine)2 weeks
      Haldol® (haloperidol)2\n weeks
      Loxitane® (loxapine)2 weeks
      Mellaril® (thioridazine)2 weeks
      Moban®\n (molindone)2 weeks
      Navane® (thiothixene)2\n weeks
      Orap® (pimozide)2 weeks
      Prolixin® (fluphenazine)1 month
      Risperdal®\n (risperidone)2 weeks
      Stelazine® (trifluoperazine)2\n weeks
      Thorazine® (chlorpromazine)2 weeks
      Trilafon® (perphenazine)2 weeks
      Serentil®\n (mesoridazine)2 weeks
      \n

      The use of neuroleptics\n on a daily basis must be discontinued 2 to 4 weeks prior to enrollment. The\n use of neuroleptics on an as-needed basis is allowable during the screening\n period, but the last dose must be at least 7 days prior to enrollment.

      \n
    30. \n
    31. \n

      Antianxiety agents including but not limited to

      \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
      Atarax® (hydroxyzine)2 weeks
      BuSpar®\n (buspirone)2 weeks
      Librium® (chlordiazepoxide)2 weeks
      Serax® (oxazepam)2 weeks
      Tranxene® (clorazepate)2 weeks
      Valium® (diazepam)2 weeks
      Vistaril® (hydroxyzine pamoate)2 weeks
      Xanax® (alprazolam)2 weeks
      \n

      Ativan® (lorazepam) should be discontinued on a daily\n basis 2 weeks

      \n

      prior to enrollment. It may be used on an as-needed\n basis during the screening period, but is not permitted in the 24 hours prior\n to enrollment.

      \n
    32. \n
    33. \n

      Hypnotics/Sedatives including but not limited to

      \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
      Ambien® (zolpidem) 3 days\n
      Dalmane® (flurazepam)3 days
      Doral® (quazepam)3 days
      Halcion® (triazolam)3 days
      Nembutal® 2 weeks
      ProSom® (estazolam)3 days
      Restoril®\n (temazepam)3 days
      Seconal®2 weeks
      \n

      Chloral Hydrate is allowed on an as-needed basis during screening, but is not permitted in the 24 hours prior to enrollment.

      \n
    34. \n
    35. \n

      Histamine (H1 ) antagonists including but not limited to

      \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
      Actifed® , Actifed Plus® (triprolidine) Benadryl®\n , Unisom® , Tylenol P.M.® 3 days
      (diphenhydramine)3 days
      Compazine® (prochlorperazine)3 days
      Contac® , Coricidin D® , Sinutab® , Novahistine® , Alka\n Seltzer Plus® , Naldecon® , Sudafed Plus® , Tylenol Cold® , Tylenol\n Cold and Flu® (chlorpheniramine)3 days
      Dimetapp®\n (brompheniramine)3 days
      Drixoral® (dexbrompheniramine)3 days
      Hismanal® (astemizole)1 week
      Phenergan®\n (promethazine)3 days
      Seldane® (terfenadine)1\n week
      Tavist® (clemastine fumarate)3 days
      Zyrtec® (cetrizine) 1 week
      \n

      Allegra®\n (fexofenadine hydrochloride) or Claritin® (loratadine) may be taken\n on as-needed basis during screening but must be discontinued within 24 hours\n of enrollment.\n

      \n
    36. \n
    37. \n

      Stimulants including but not limited to

      \n \n \n \n \n \n \n \n \n \n
      Cylert® (pemoline) 1 month
      Ritalin® (methylphenidate)1 month
      \n
    38. \n
    39. \n

      Antiarrhythmics including but not limited to the following

      \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
      Adenocard® (adenosine)
      Cordarone®\n (amiodarone)
      Ethmozine® (moricizine)
      Mexitil® (mexiletine)
      Norpace® (disopyramide)\n
      Procan® (procainamide)
      Quinaglute®\n (quinidine)
      Rythmol® (propafenone)
      Tambocor®\n (flecainide)
      Tonocard® (tocainide)
      \n

      Requirement of these drugs for control of cardiac arrhythmia indicates that\n the patient should be excluded from the study. If discontinuation of an antiarrhythmic\n is considered, please discuss case with CRO medical monitor.

      \n
    40. \n
    41. \n

      Miscellaneous drugs including but not limited to

      \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
      Coenzyme\n Q2 weeks
      Eskalith® , Lithobid® (lithium)2\n weeks
      Ginkgo biloba1 week
      Lecithin\n 1 week
      Lecithin 1 week
      Lupron2 weeks
      Tamoxifen1 month
      \n
    42. \n
    43. \n

      Estrogen supplements are permitted during the study, but dosage must be stable for at least 3 months prior to\n enrollment.

      \n
    44. \n
    ", + "dictionaryId": null, + "notes": [], + "instanceType": "EligibilityCriterionItem" + } + ], + "narrativeContentItems": [ + { + "id": "NarrativeContentItem_1", + "extensionAttributes": [], + "name": "NCI_1", + "text": "
    \n
    \n
    \n

    The information contained in this clinical study protocol is

    Copyright \u00a9 2006 Eli Lilly and Company.

    \n
    \n
    \n
    \n
    \n

    \n
    \n
    \n
    \n
    \n

    \n
    \n
    \n
    \n
    \n

    \n
    \n
    \n
    ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_2", + "extensionAttributes": [], + "name": "NCI_2", + "text": "

    The M1 muscarinic-cholinergic receptor is 1 of 5 characterized muscarinic-cholinergic receptor subtypes (Fisher and Barak 1994). M1 receptors in the cerebral cortex and hippocampus are, for the most part, preserved in Alzheimer's disease (AD), while the presynaptic neurons projecting to these receptors from the nucleus basalis of Meynert degenerate (Bierer et al. 1995). The presynaptic loss of cholinergic neurons has been correlated to the antimortum cognitive impairment in AD patients, prompting speculation that replacement therapy with cholinomimetics will alleviate the cognitive dysfunction of the disorder (Fisher and Barak 1994).

    \n

    Xanomeline is a novel M1 agonist which has shown high affinity for the M1 receptor subtype (in transfected cells), and substantially less or no affinity for other muscarinic subtypes. Positron emission tomography (PET) studies of 11C-labeled xanomeline in cynomolgus monkeys have suggested that the compound crosses the blood-brain barrier and preferentially binds the striatum and neocortex.

    \n

    Clinical development of an oral formulation of xanomeline for the indication of mild and moderate AD was initiated approximately 4 years ago. A large-scale study of safety and efficacy provided evidence that an oral dosing regimen of 75 mg three times daily (TID) may be associated with enhanced cognition and improved clinical global impression, relative to placebo. As well, a dramatic reduction in psychosis, agitation, and other problematic behaviors, which often complicate the course of the disease, was documented. However, the discontinuation rate associated with this oral dosing regimen was 58.6%, and alternative clinical strategies have been sought to improve tolerance for the compound.

    \n

    To that end, development of a Transdermal Therapeutic System (TTS) has been initiated. Relative to the oral formulation, the transdermal formulation eliminates high concentrations of xanomeline in the gastrointestinal (GI) tract and presystemic (firstpass) metabolism. Three transdermal delivery systems, hereafter referred to as the xanomeline TTS Formulation A, xanomeline TTS Formulation B, and xanomeline TTS formulation E have been manufactured by Lohman Therapy Systems GmbH of Andernach Germany. TTS Formulation A is 27 mg xanomeline freebase in a 25-cm2 matrix. TTS Formulation B is 57.6 mg xanomeline freebase in a 40-cm2 matrix. Formulation E has been produced in 2 patch sizes: 1) 54 mg xanomeline freebase with 0.06 mg Vitamin E USP in a 50-cm2 matrix and 2) 27 mg xanomeline freebase with 0.03 mg Vitamin E USP in a 25-cm2 matrix. For a detailed description of the composition of these formulations please refer to Part II, Section 14 of the Xanomeline (LY246708) Clinical Investigator's Brochure. For characterization of the safety, tolerance, and pharmacokinetics of xanomeline TTS Formulations A, B, and E, please refer to Part II, Sections 7, 8, and 10 of the Xanomeline (LY246708) Clinical Investigator's Brochure. Formulation E will be studied in this protocol, H2Q-MC-LZZT(c).

    ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_3", + "extensionAttributes": [], + "name": "NCI_3", + "text": "
    ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_4", + "extensionAttributes": [], + "name": "NCI_4", + "text": "

    The primary objectives of this study are

    \n
    ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_5", + "extensionAttributes": [], + "name": "NCI_5", + "text": "

    The secondary objectives of this study are

    \n
    ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_6", + "extensionAttributes": [], + "name": "NCI_6", + "text": "
    ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_7", + "extensionAttributes": [], + "name": "NCI_7", + "text": "

    Patients with probable mild to moderate AD will be studied in a randomized, double-blind, parallel (3 arm), placebo-controlled trial of 26 weeks duration. The study will be conducted on an outpatient basis. Approximately 300 patients will be enrolled (see Schedule of Events for Protocol H2Q-MC-LZZT(c), Attachment LZZT.1).

    \n

    Following informed consent, patients will be screened at Visit 1. At screening, patients will undergo complete neuropsychiatric assessment, psychometric testing, and general medical assessment (including medical history, pre-existing conditions, physical examination). In addition, vital signs, temperature, medication history, electrocardiogram (ECG), chest x-ray, and safety laboratories will be obtained. During the screening visit, patients will wear a placebo TTS to determine willingness and ability to comply with transdermal administration procedures. If patients have not had central nervous system (CNS) imaging in the previous 12 months, a computed tomography (CT) or magnetic resonance imaging (MRI) scan will be obtained. If patients are insulin dependent diabetics, a hemoglobin A 1c will be obtained. Screening exams and procedures may be performed after Visit 1; however, their results must be completed and available prior to randomization. The screening process should occur within 2 weeks of randomization (Visit 3 of the study).

    \n

    Patients who meet enrollment criteria from Visit 1 will proceed to Visit 2 at which time they will undergo a 24-hour Ambulatory ECG. At Visit 3 the Ambulatory ECG will be removed and patients will be randomized to 1 of 3 treatment arms. The treatment arms will include a placebo arm, a low-dose xanomeline arm (50 cm 2 TTS Formulation E, 54 mg xanomeline), and a high-dose xanomeline arm (75 cm 2 TTS Formulation E, 81 mg xanomeline). All patients receiving xanomeline will be started at 50 cm 2 TTS Formulation E. For the first 8 weeks of treatment, patients will be assessed at clinic visits every 2 weeks and, thereafter, at clinic visits every 4 weeks. Patients who discontinue prior to Visit 12 (Week 24) will be brought back for full efficacy assessments at or near to 24 weeks, whenever possible.

    \n

    A Data Safety Monitoring Board (DSMB), chaired by an external cardiologist, will meet after 75, 150, 225, and 300 patients have completed 1 month of treatment. The DSMB will review cardiovascular findings to decide if discontinuation of the study or any treatment arm is appropriate, if additional cardiovascular monitoring is required, if further cardiovascular monitoring is unnecessary, or if adjustment of dose within a treatment arm (or arms) is appropriate (see Section 3.9.4).

    \n

    At Visits 3, 8, 10, and 12, efficacy instruments (ADAS-Cog, CIBIC+, and DAD) will be administered. NPI-X will be administered at 2-week intervals either at clinic visits or via a telephone interview. Vital signs, temperature, and an assessment of adverse events will

    \n

    be obtained at all clinic visits. An electrocardiogram (ECG), and chemistry/hematology safety labs will be obtained at Visits 4, 5, 7, 8, 9, 10, 11, 12, and 13. Urinalysis will be done at Visits 4, 9, and 12. Use of concomitant medications will be collected at Visits 3, 4, 5, 7, 8, 9, 10, 11, 12, and 13. Plasma levels of xanomeline and metabolites will be obtained at Visits 3, 4, 5, 7, 9, and 11. At Visits 3, 4, 5, 7, 8, 9, 10, 11, and 12, medications will be dispensed to the patients.

    \n

    Visits 1 through 13 should be scheduled relative to Visit 3 (Week 0 - randomization). Visits 4, 5, 7, 8, and 13 should occur within 3 days of their scheduled date. Visits 9, 10, 11, and 12 should occur within 4 days of their scheduled date. At Visit 13 patients will be given the option to enter the open-label extension phase (see Section 3.10.3. Study Extensions).

    \n\"Alt\n

    Figure LZZT.1. Illustration of study design for Protocol H2Q-MC-LZZT(c).

    ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_8", + "extensionAttributes": [], + "name": "NCI_8", + "text": "

    Previous studies of the oral formulation have shown that xanomeline tartrate may improve behavior and cognition. Effects on behavior are manifest within 2 to 4 weeks of initiation of treatment. The same studies have shown that 8 to 12 weeks are required to demonstrate effects on cognition and clinical global assessment. This study is intended to determine the acute and chronic effects of the TTS formulation in AD; for that reason, the study is of 26 weeks duration. Dosage specification has been made on the basis of tolerance to the xanomeline TTS in a clinical pharmacology study (H2Q-EW-LKAA), and target plasma levels as determined in studies of the oral formulation of xanomeline (H2Q-MC-LZZA).

    \n

    The parallel dosing regimen maximizes the ability to make direct comparisons between the treatment groups. The use of placebo allows for a blinded, thus minimally biased, study. The placebo treatment group is a comparator group for efficacy and safety assessment.

    \n

    Two interim analyses are planned for this study. The first interim analysis will occur when 50% of the patients have completed Visit 8 (8 weeks). If required, the second interim analysis will occur when 50% of the patients have completed Visit 12 (24 weeks). (See Section 4.6, Interim Analyses.)

    ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_9", + "extensionAttributes": [], + "name": "NCI_9", + "text": "

    The name, title, and institution of the investigator(s) is/are listed on the Investigator/Contacts cover pages provided with this protocol. If the investigator is changed after the study has been approved by an ethical review board, or a regulatory agency, or by Lilly, this addition will not be considered a change to the protocol. However, the Investigator/Contacts cover pages will be updated to provide this information.

    ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_10", + "extensionAttributes": [], + "name": "NCI_10", + "text": "

    The final report coordinating investigator will sign the final clinical study report for this study, indicating agreement with the analyses, results, and conclusions of the report.

    \n

    The investigator who will serve as the final report coordinating investigator will be an individual that is involved with the design and analysis of the study. This final report coordinating investigator will be named by the sponsor of the study.

    ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_11", + "extensionAttributes": [], + "name": "NCI_11", + "text": "
    ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_12", + "extensionAttributes": [], + "name": "NCI_12", + "text": "

    An Ethical Review Board (ERB) approved informed consent will be signed by the patient (and/or legal representative) and caregiver after the nature of the study is explained.

    ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_13", + "extensionAttributes": [], + "name": "NCI_13", + "text": "

    For Lilly studies, the following definitions are used:

    \n
    \n
    Screen
    \n
    \n

    Screening is the act of determining if an individual meets minimum requirements to become part of a pool of potential candidates for participation in a clinical study.

    \n

    In this study, screening will include asking the candidate preliminary questions (such as age and general health status) and conducting invasive or diagnostic procedures and/or tests (for example, diagnostic psychological tests, x-rays, blood draws). Patients will sign the consent at their screening visit, thereby consenting to undergo the screening procedures and to participate in the study if they qualify.

    \n
    \n
    \n
    \n
    To enter
    \n
    \n

    Patients entered into the study are those from whom informed consent for the study has been obtained. Adverse events will be reported for each patient who has entered the study, even if the patient is never assigned to a treatment group (enrolled).

    \n
    \n
    \n
    \n
    To enroll
    \n
    \n

    Patients who are enrolled in the study are those who have been assigned to a treatment group. Patients who are entered into the study but fail to meet criteria specified in the protocol for treatment assignment will not be enrolled in the study.

    \n
    \n
    \n

    At Visit 1, patients who meet the enrollment criteria of Mini-Mental State Examination (MMSE) score of 10 to 23 (Attachment LZZT.6), Hachinski Ischemia Score \u22644 (Attachment LZZT.8), a physical exam, safety labs, ECG, and urinalysis, will proceed to Visit 2 and Visit 3. At Visit 3, patients whose CNS imaging and other pending labs from Visit 1 satisfy the inclusion criteria (Section 3.4.2.1) will be enrolled in the study. Approximately 300 patients with a diagnosis of probable mild to moderate AD will be enrolled in the study.

    ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_14", + "extensionAttributes": [], + "name": "NCI_14", + "text": "

    Patients may be included in the study only if they meet all the following criteria:

    \n
    01
    02
    03
    04
    05
    06
    07
    08
    ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_15", + "extensionAttributes": [], + "name": "NCI_15", + "text": "

    Patients will be excluded from the study for any of the following reasons:

    \n
    09
    10
    11
    12
    13
    14
    15
    16b
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27b
    28b
    29b
    30b
    31b
    ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_16", + "extensionAttributes": [], + "name": "NCI_16", + "text": "

    The criteria for enrollment must be followed explicitly. If there is inadvertent enrollment of individuals who do not meet enrollment criteria, these individuals should be discontinued from the study. Such individuals can remain in the study only if there are ethical reasons to have them continue. In these cases, the investigator must obtain approval from the Lilly research physician for the study participant to continue in the study (even if the study is being conducted through a contract research organization).

    ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_17", + "extensionAttributes": [], + "name": "NCI_17", + "text": "

    Probable AD will be defined clinically by NINCDS/ADRDA guidelines as follows:

    \n
    ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_18", + "extensionAttributes": [], + "name": "NCI_18", + "text": "

    Approximately 100 patients will be randomized to each of the 3 treatment groups. Previous experience with the oral formulation of xanomeline suggests that this sample size has 90% power to detect a 3.0 mean treatment difference in ADAS-Cog (p<.05, two-sided), based on a standard deviation of 6.5. Furthermore, this sample size has 80% power to detect a 0.36 mean treatment difference in CIBIC+ (p<.05, two-sided), based on a standard deviation of 0.9.

    ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_19", + "extensionAttributes": [], + "name": "NCI_19", + "text": "

    Commencing at Visit 1, all patients will be assigned an identification number. This identification number and the patient's three initials must appear on all patient-related documents submitted to Lilly.

    \n

    When qualified for enrollment at Visit 3 the patient will be randomized to 1 of 3 treatment arms.

    ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_20", + "extensionAttributes": [], + "name": "NCI_20", + "text": "
    ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_21", + "extensionAttributes": [], + "name": "NCI_21", + "text": "
    \n\n\n\n\n\n\n

    Primary Study Material:

    Xanomeline

    TTS (adhesive patches)

    50 cm 2 , 54 mg* 25 cm 2 , 27 mg*

    Comparator Material:

    Placebo

    TTS

    Identical in appearance to primary study material

    \n

    *All doses are measured in terms of the xanomeline base.

    \n

    Patches should be stored at controlled room temperature, and all used patches must be handled and disposed of as biohazardous waste.

    \n

    For a detailed description of the composition of these formulations please refer to Part II, Section 14 of the Xanomeline (LY246708) Clinical Investigator's Brochure.

    ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_22", + "extensionAttributes": [], + "name": "NCI_22", + "text": "

    To test acute tolerance of transdermal formulation, patients will have a TTS (placebo) administered at the start of Visit 1, and removed at the conclusion of Visit 1. The patient's and caregiver's willingness to comply with 26 weeks of transdermal therapy should be elicited, and those patients/caregivers unwilling to comply should be excluded.

    \n

    Upon enrollment at Visit 3, and on the morning of each subsequent day of therapy , xanomeline or placebo will be administered with the application of 2 adhesive patches, one 50 cm2 in area, the other 25 cm2 in area. Each morning, prior to the application of the patches, hydrocortisone cream (1%) should be applied to the skin at the intended site of administration, rubbed in, and allowed to penetrate for approximately 30 minutes. Thereafter, excess cream should be wiped away and the patches applied.

    \n

    The patches are to be worn continuously throughout the day, for a period of approximately 12 to 14 hours, and removed in the evening. After removal of the patches, hydrocortisone cream (1%) should be applied locally to the site of administration.

    \n

    Patches should be applied to a dry, intact, non-hairy area. Applying the patch to a shaved area is not recommended. The application site of the patches should be rotated according to the following schedule:

    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n

    Day

    Patch Location

    Sunday

    right or left upper arm

    Monday

    right or left upper back

    Tuesday

    right or left lower back (above belt line)

    Wednesday

    right or left buttocks

    Thursday

    right or left mid-axillary region

    Friday

    right or left upper thigh

    Saturday

    right or left upper chest

    \n

    Patients and caregivers are free to select either the left or right site within the constraints of the rotation schedule noted above. Patches should be applied at approximately the same time each day. For patients who habitually bathe in the morning, the patient should bathe prior to application of new patches. Every effort should be taken to allow for morning administration of the patches. Exceptions allowing administration of TTS patches at night instead of in the morning will be made on a case-by-case basis by the CRO medical monitor. In the event that some adhesive remains on the patient's skin and cannot be removed with normal bathing, a special solution will be provided to remove the adhesive.

    \n

    Following randomization at Visit 3, patients will be instructed to call the site if they have difficulty with application or wearing of patches. In the event that a patch becomes detached, a new patch of the same size should be applied (at earliest convenience) to an area of the dermis adjacent to the detachment site, and the rotation schedule should be resumed the following morning. If needed, the edges of the patch may be secured with a special adhesive tape that will be provided. If daily doses are reduced, improperly administered, or if a patch becomes detached and requires application of a new patch on three or more days in any 30-day period, the CRO research physician will be notified.

    \n

    If the daily dose is reduced or improperly administered in the 24 hours prior to any scheduled clinic visit, the visit should be rescheduled (except for early termination and retrieval visits).

    \n

    Patients must be instructed to return all used and unused study drug to the investigator at each visit for proper disposal and CT reconciliation by the investigator.

    ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_23", + "extensionAttributes": [], + "name": "NCI_23", + "text": "

    The study will be double-blind. To further preserve the blinding of the study, only a minimum number of Lilly and CRO personnel will see the randomization table and codes before the study is complete.

    \n

    Emergency codes generated by a computer drug-labeling system will be available to the investigator. These codes, which reveal the patients treatment group, may be opened during the study only if the choice of follow-up treatment depends on the patient's therapy assignment.

    \n

    The investigator should make every effort to contact the clinical research physician prior to unblinding a patient's therapy assignment. If a patient's therapy assignment is unblinded, Lilly must be notified immediately by telephone. After the study, the investigator must return all sealed and any opened codes.

    ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_24", + "extensionAttributes": [], + "name": "NCI_24", + "text": "

    Intermittent use of chloral hydrate, zolpidem, or lorazepam is permitted during this clinical trial as indicated for agitation or sleep. If medication is required for agitation for a period exceeding 1 week, a review of the patient's status should be made in consultation with the CRO research physician. Caregivers and patients should be reminded that these medications should not be taken within 24 hours of a clinic visit (including the enrollment visit), and administration of efficacy measures should be deferred if the patient has been treated with these medications within the previous 24 hours.

    \n

    If an antihistamine is required during the study, Claritin\u00ae (loratadine) or Allegra\u00ae (fexofenadine hydrochloride) are the preferred agents, but should not be taken within 24 hours of a clinic visit. Intermittent use (per package insert) of antitussives (containing antihistamines or codeine) and select narcotic analgesics (acetaminophen with oxycodone, acetaminophen with codeine) are permitted during the trial. Caregivers and patients should be reminded that antihistamines and narcotics should not be taken within 3 days of a clinic efficacy visit (including enrollment visit). If an H 2 blocker is required during the study, Axid\u00ae (nizatidine) will be permitted on a case-by-case basis by the CRO medical monitor. For prostatic hypertrophy, small doses (2 mg per day) of Hytrin\u00ae (terazosin) or Cardura\u00ae (doxazosin) will be permitted on a case-by-case basis. Please consult the medical monitor. The calcium channel blockers Cardene\u00ae (nicardipine),

    \n

    Norvasc\u00ae (amlodipine), and DynaCirc\u00ae (isradipine) are allowed during the study. If a patient has been treated with any medication within disallowed time periods prior to the clinic visit, efficacy measures should be deferred.

    \n

    Other classes of medications not stated in Exclusion Criteria, Section 3.4.2.2, will be permitted. Patients who require treatment with an excluded medication (Section 3.4.2.2) will be discontinued from the study following consultation with the CRO research physician.

    ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_25", + "extensionAttributes": [], + "name": "NCI_25", + "text": "
    ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_26", + "extensionAttributes": [], + "name": "NCI_26", + "text": "

    See Schedule of Events, Attachment LZZT.1 for the times of the study at which efficacy data will be collected.

    ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_27", + "extensionAttributes": [], + "name": "NCI_27", + "text": "

    The following measures will be performed in the course of the study. At Visits 3, 8, 10, and 12, ADAS-Cog, CIBIC+, and DAD will be administered. NPI-X will be administered at 2-week intervals either at clinic visits or via a telephone interview. Efficacy measures will also be collected at early termination visits, and at the retrieval visit. The neuropsychological assessment should be performed first; other protocol requirements, such as labs and the physical, should follow.

    \n
      \n
    1. Alzheimer's Disease Assessment Scale - Cognitive Subscale (ADAS-Cog): ADAS-Cog is an established measure of cognitive function in Alzheimer's Disease. This scale has been incorporated into this study by permission of Dr. Richard C. Mohs and the American Journal of Psychiatry and was adapted from an article entitled, \u201cThe Alzheimer's Disease Assessment Scale (ADAS),\u201d which was published in the American Journal of Psychiatry, Volume No.141, pages 1356-1364, November, 1984, Copyright 1984.

      \n

      The ADAS-Cog (11) and the ADAS-Cog (14): The ADAS-Cog (11) is a standard 11-item instrument used to assess word recall, naming objects, commands, constructional praxis, ideational praxis, orientation, word recognition tasks, spoken language ability, comprehension, word finding difficulty, and recall of test instructions. For the purposes of this study, three items (delayed word recall, attention/visual search task, and maze solution) have been added to the ADAS-Cog (11) to assess the patient's attention and concentration. The 14 item instrument will be referred to as the ADAS-Cog (14). At each efficacy visit, all 14 items will be assessed, and in subsequent data analyses, performance on the ADAS-Cog (14) and performance on the subset ADAS-Cog (11) will be considered.

    2. \n
    3. Video-referenced Clinician's Interview-Based Impression of Change (CIBIC+): The CIBIC+ is an assessment of the global clinical status relative to baseline. The CIBIC+ used in this study is derived from the Clinical Global Impression of Change, an instrument in the public domain, developed by the National Institute on Aging Alzheimer's Disease Study Units Program (1 U01 AG10483; Leon Thal, Principal Investigator). The instrument employs semi-structured interviews with the patient and caregiver, to assess mental/cognitive state, behavior, and function. These domains are not individually scored, but rather are aggregated in the assignment of a global numeric score on a 1 to 7 scale (1 = marked improvement; 4 = no change; and 7 = marked worsening).

      \n

      The clinician assessing CIBIC+ will have at least one year of experience with the instrument and will remain blinded to all other efficacy and safety measures.

    4. \n
    5. Revised Neuropsychiatric Inventory (NPI-X): The NPI-X is an assessment of change in psychopathology in patients with dementia. The NPI-X is administered to the designated caregiver. This instrument has been revised from its original version (Cummings et al. 1994) and incorporated into this study with the permission of Dr. Jeffrey L. Cummings.

    6. \n
    7. Disability Assessment for Dementia (DAD): The DAD is used to assess functional abilities of activities of daily living (ADL) in individuals with cognitive impairment. This scale has been revised and incorporated into this study by permission of Louise Gauthier, M.Sc., and Dr. Isabelle Gelinas. The DAD is administered to the designated caregiver.

    8. \n
    \n

    For each instrument, each assessment is to be performed by the same trained health care professional. If circumstances preclude meeting this requirement, the situation is to be documented on the Clinical Report Form (CRF), and the CRO research physician is to be notified.

    \n

    In addition to the efficacy measures noted above, a survey form will be used to collect information from the caregiver on TTS acceptability (Attachment LZZT.9).

    ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_28", + "extensionAttributes": [], + "name": "NCI_28", + "text": "

    Group mean changes from baseline in the primary efficacy parameters will serve as efficacy criteria. The ADAS-Cog (11) and the video-referenced CIBIC+ will serve as the primary efficacy instruments. Secondary efficacy instruments will include the DAD, the NPI-X, and the ADAS-Cog (14). The procedures and types of analyses to be done are outlined in Section 4.

    \n

    The primary analysis of efficacy will include only the data obtained up to and including the visit of discontinuation of study drug. Furthermore, the primary analysis will not include efficacy data obtained at any visit where the study drug was not administered in the preceding three days. Analyses that include the retrieved dropouts are considered secondary.

    ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_29", + "extensionAttributes": [], + "name": "NCI_29", + "text": "

    Blood samples (7 mL) for the determination of xanomeline concentrations in plasma will be collected from each patient at Visits 3, 4, 5, 7, 9, and 11. The blood sample drawn at Visit 3 is a baseline sample. The remaining 5 clinic visits should be scheduled so that 1 blood sample is collected at any time during each of the following intervals: early AM visit (hold application of new patch until after blood sample is collected); 9AM to 11AM; 11AM to 1PM; 1PM to 3PM; and 3PM to 5PM. Collection of blood samples during each of these intervals should not occur in any particular order, nor should they occur in the same order for each patient. Every effort should be made to comply with the suggested sampling times. This blood-sampling schedule is based on a sparse sampling strategy where only a few samples will be collected from each patient. The most crucial aspect of the sampling design is to record the date and exact time the sample was drawn and to record the date and time of patch application on the day of the clinic visit and the previous 2 days.

    \n

    If a patient is discontinued from the study prior to protocol completion, a pharmacokinetic blood sample should be drawn at the early discontinuation visit. The date and exact time the sample was drawn and the date of the last patch application should be recorded.

    \n

    Immediately after collection, each sample will be centrifuged at approximately 177 \u00d7 G for 15 minutes. The plasma will be transferred into a polypropylene tube bearing the identical label as the blood collection tube. Samples will be capped and frozen at approximately \u221220\u00b0C. Care must be taken to insure that the samples remain frozen during transit.

    \n

    The samples will be shipped on dry ice to Central Laboratory.

    ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_30", + "extensionAttributes": [], + "name": "NCI_30", + "text": "

    Investigators are responsible for monitoring the safety of patients who have entered this study and for alerting CRO to any event that seems unusual, even if this event may be considered an unanticipated benefit to the patient. See Section 3.9.3.2.1.

    \n

    Investigators must ensure that appropriate medical care is maintained throughout the study and after the trial (for example, to follow adverse events).

    ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_31", + "extensionAttributes": [], + "name": "NCI_31", + "text": "

    Safety measures will be performed at designated times by recording adverse events, laboratory test results, vital signs (including supine/standing pulse and blood pressure readings) ECG monitoring, and Ambulatory ECGs (see Schedule of Events, Attachment LZZT.1).

    ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_32", + "extensionAttributes": [], + "name": "NCI_32", + "text": "

    Lilly has standards for reporting adverse events that are to be followed, regardless of applicable regulatory requirements that are less stringent. For purposes of collecting and evaluating all information about Lilly drugs used in clinical trials, an adverse event is defined as any undesirable experience or an unanticipated benefit (see Section 3.9.3.2.1) that occurs after informed consent for the study has been obtained, without regard to treatment group assignment, even if no study medication has been taken. Lack of drug effect is not an adverse event in clinical trials, because the purpose of the clinical trial is to establish drug effect.

    \n

    At the first visit, study site personnel will question the patient and will note the occurrence and nature of presenting condition(s) and of any preexisting condition(s). At subsequent visits, site personnel will again question the patient and will note any change in the presenting condition(s), any change in the preexisting condition(s), and/or the occurrence and nature of any adverse events.

    ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_33", + "extensionAttributes": [], + "name": "NCI_33", + "text": "

    All adverse events must be reported to CRO via case report form.

    \n

    Study site personnel must report to CRO immediately, by telephone, any serious adverse event (see Section 3.9.3.2.2 below), or if the investigator unblinds a patient's treatment group assignment because of an adverse event or for any other reason.

    \n

    If a patient's dosage is reduced or if a patient is discontinued from the study because of any significant laboratory abnormality, inadequate response to treatment, or any other reason, the circumstances and data leading to any such dosage reduction or discontinuation must be reported and clearly documented by study site personnel on the clinical report form.

    \n

    An event that may be considered an unanticipated benefit to the patient (for example, sleeping longer) should be reported to CRO as an adverse event on the clinical report form. \u201cUnanticipated benefit\u201d is a COSTART classification term. In cases where the investigator notices an unanticipated benefit to the patient, study site personnel should enter the actual term such as \u201csleeping longer,\u201d and code \u201cunanticipated benefit\u201d in the clinical report form adverse event section.

    \n

    Solicited adverse events from the skin rash questionnaire (see Section 3.9.3.4) should be reported on the questionnaire only and not also on the adverse event clinical report form

    ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_34", + "extensionAttributes": [], + "name": "NCI_34", + "text": "

    Study site personnel must report to CRO immediately, by telephone, any adverse event from this study that is alarming or that:

    \n\n

    Definition of overdose: For a drug under clinical investigation, an overdose is any intentional or unintentional consumption of the drug (by any route) that exceeds the dose recommended in the Clinical Investigator's Brochure or in an investigational protocol, whichever dose is larger. For a marketed drug, a drug overdose is any intentional or unintentional consumption of the drug (by any route) that exceeds the dose listed in product labeling, even if the larger dose is prescribed by a physician.

    ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_35", + "extensionAttributes": [], + "name": "NCI_35", + "text": "

    Table LZZT.1 lists the clinical laboratory tests that will be performed at Visit 1.

    \n

    Table LZZT.1. Laboratory Tests Performed at Admission (Visit 1)

    \n\n

    Safety Laboratory Tests

    \n\n\n\n\n\n
    \n

    Hematology:

    \n

      \n
    • Hemoglobin
    • \n
    • Hematocrit
    • \n
    • Erythrocyte count (RBC)
    • \n
    • Mean cell volume (MCV)
    • \n
    • Mean cell hemoglobin (MCH)
    • \n
    • Mean cell hemoglobin concentration (MCHC)
    • \n
    • Leukocytes (WBC)
    • \n
    • Neutrophils, segmented
    • \n
    • Neutrophils, juvenile (bands)
    • \n
    • Lymphocytes
    • \n
    • Monocytes
    • \n
    • Eosinophils
    • \n
    • Basophils
    • \n
    • Platelet
    • \n
    • Cell morphology
    • \n

    \n

    Urinalysis:

    \n

      \n
    • Color
    • \n
    • Specific gravity
    • \n
    • pH
    • \n
    • Protein
    • \n
    • Glucose
    • \n
    • Ketones
    • \n
    • Bilirubin
    • \n
    • Urobilinogen
    • \n
    • Blood
    • \n
    • Nitrite
    • \n
    • Microscopic examination of sediment
    • \n

    \n
    \n

    Clinical Chemistry - Serum Concentration of:

    \n

      \n
    • Sodium
    • \n
    • Potassium
    • \n
    • Bicarbonate
    • \n
    • Total bilirubin
    • \n
    • Alkaline phosphatase (ALP)
    • \n
    • Gamma-glutamyl transferase (GGT)
    • \n
    • Alanine transaminase (ALT/SGPT)
    • \n
    • Aspartate transaminase (AST/SGOT)
    • \n
    • Blood urea nitrogen (BUN)
    • \n
    • Serum creatinine
    • \n
    • Uric acid
    • \n
    • Phosphorus
    • \n
    • Calcium
    • \n
    • Glucose, nonfasting
    • \n
    • Total protein
    • \n
    • Albumin
    • \n
    • Cholesterol
    • \n
    • Creatine kinase (CK)
    • \n

    \n

    Thyroid Function Test (Visit 1 only):

    \n
      \n
    • Free thyroid index
    • \n
    • T3 Uptake
    • \n
    • T4
    • \n
    • Thyroid-stimulating hormone (TSH)
    • \n
    \n

    Other Tests (Visit 1 only):

    \n
      \n
    • Folate
    • \n
    • Vitamin B 12
    • \n
    • Syphilis screening
    • \n
    • Hemoglobin A1C (IDDM patients only)
    \n
    \n

    Laboratory values that fall outside a clinically accepted reference range or values that differ significantly from previous values must be evaluated and commented on by the investigator by marking CS (for clinically significant) or NCS (for not clinically significant) next to the values. Any clinically significant laboratory values that are outside a clinically acceptable range or differ importantly from a previous value should be further commented on in the clinical report form comments page.

    \n

    Hematology, and clinical chemistry will also be performed at Visits 4, 5, 7, 8, 9, 10, 11, 12, and 13. Patients that experience a rash and/or eosinophilia may have additional hematology samples obtained as described in 3.9.3.4 (Other Safety Measures).

    \n

    Urinalysis will also be performed at Visits 4, 9, and 12. The following criteria have been developed to monitor hepatic function.

    \n
    ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_36", + "extensionAttributes": [], + "name": "NCI_36", + "text": "
    Patients experiencing Rash and/or Eosinophilia\n

    The administration of placebo and xanomeline TTS is associated with a rash and/or eosinophilia in some patients. The rash is characterized in the following ways:

    \n\n

    It does not appear that the rash constitutes a significant safety risk; however, it could affect the well-being of the patients. The following monitoring is specified:

    \n

    Skin Rash Follow-up

    \n

    For patients who exit the study or its extension with rash at the site(s) of application:

    \n
      \n
    1. Approximately 2 weeks after the last visit, the study site personnel should contact the patient/caregiver by phone and complete the skin rash questionnaire. (Note: those patients with rash who have previously exited the study or its extension should be contacted at earliest convenience.)

    2. \n
    3. If caregiver states unequivocally that skin problems have completely resolved, no further follow-up is needed.

    4. \n
    5. If caregiver reports scarring and/or other problems, patient should return to clinic for a follow-up visit. The skin rash questionnaire should again be completed. If in the opinion of the investigator, further follow-up is required, contact the CRO medical monitor. Completed skin rash questionnaires should be faxed to CRO.

    6. \n
    \n

    Completion of the questionnaires will create a separate data set for solicited adverse events. In completing these forms please note the following:

    \n
      \n
    1. Solicited events (events discovered as result of completion of follow-up questionnaires) should be reported on questionnaire page only.

    2. \n
    3. Spontaneously reported adverse events (events presented by the patient without direct questioning of the event) should be reported as described in 3.9.3.2 .1 (Adverse Event Reporting Requirements).

    4. \n
    \n

    Serious adverse events should be handled and reported as described in 3.9.3.2.1 without regard to whether the event is solicited or spontaneously reported.

    \n

    Eosinophilia Follow-up

    \n
      \n
    1. For patients that are currently in the study with eosinophil counts greater than 0. 6x10 3 /microliter:

      \n
      • Repeat hematology at each visit until resolved in the opinion of the investigator.

      \n
    2. For patients that are currently in the study with eosinophil counts greater than 1.5x10 3 /microliter:

      \n
      • Obtain hematology profile every 2 weeks until resolved or explained by other causes in the opinion of the investigator.

      • \n
      • Notify CRO medical monitor.

      • \n
      \n
    3. For patients with eosinophil counts greater than 0.6x10 3 /microliter at exit \nfrom the study or its extension:

      \n
        \n
      • Obtain hematology profile approximately every 2 weeks until resolved or, in the opinion of the investigator, explained by other causes. (Note: patients with eosinophil counts greater than 0.6x10 3 /microliter who have previously exited the study or its extension should return for hematology profile at earliest convenience.)

      • \n
      \n
      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_37", + "extensionAttributes": [], + "name": "NCI_37", + "text": "

      Patient should lie supine quietly for at least 5 minutes prior to vital signs measurement. Blood pressure should be measured in the dominant arm with a standardized mercury manometer according to the American Heart Association standard recommendations. Diastolic blood pressure will be measured as the point of disappearance of the Korotkoff sounds (phase V). Heart rate will be measured by auscultation. Patient should then stand up. Blood pressure should again be measured in the dominant arm and heart rate should be measured after approximately 1 and 3 minutes.

      \n

      An automated blood pressure cuff may be used in place of a mercury manometer if it is regularly (at least monthly) standardized against a mercury manometer.

      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_38", + "extensionAttributes": [], + "name": "NCI_38", + "text": "

      Cardiovascular status will be assessed during the trial with the following measures:

      \n
      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_39", + "extensionAttributes": [], + "name": "NCI_39", + "text": "

      The CRO research physician will monitor safety data throughout the course of the study.

      \n

      Cardiovascular measures, including ECGs and 24-hour Ambulatory ECGs (see Section 3.9.3.4.2) will be monitored on an ongoing basis as follows:

      \n\n

      In addition to ongoing monitoring of cardiac measures, a comprehensive, periodic review of cardiovascular safety data will be conducted by the DSMB, which will be chaired by an external cardiologist with expertise in arrhythmias, their pharmacological bases, and their clinical implications. The membership of the board will also include two other external cardiologists, a cardiologist from Lilly, a statistician from Lilly, and the Lilly research physician. Only the three external cardiologists will be voting members.

      \n

      After approximately 75 patients have completed 1 month of treatment, the DSMB will meet to decide:

      \n\n

      If necessary, this analysis will be repeated after 150 patients have completed 1 month of treatment, after 225 patients have completed 1 month of treatment, and after 300 patients have completed 1 month of treatment. Primary consideration will be given to the frequency of pauses documented in Ambulatory ECG reports. The number of pauses greater than or equal to 2, 3, 4, 5, and 6 seconds will be tabulated. Primary analysis will focus on the number of pauses greater than or equal to 3 seconds.

      \n

      In the event of a high incidence of patient discontinuation due to syncope, the following guideline may be employed by the DSMB in determining if discontinuation of any treatment arm is appropriate. If the frequency of syncope in a xanomeline treatment arm relative to the frequency of syncope in the placebo arm equals or exceeds the following numbers, then consideration will be given to discontinuing that treatment arm. The Type I error rate for this rule is approximately 0.032 if the incidence in each group is 0.04. The power of this rule is 0.708 if the incidence is 0.04 for placebo and 0.16 for xanomeline TTS.

      \n\n\n\n\n\n\n\n\n

      Placebo

      Xanomeline

      PlaceboXanomeline

      0

      6

      615

      1

      7

      716

      2

      9

      817

      3

      11

      918

      4

      12

      1020

      5

      13

      X2X (2-fold)
      \n

      This rule has been used in other studies for monitoring spontaneous events with an incidence of less than 10%. This rule is constructed assuming a 2-group comparison with each group having a final sample size of 100. Unblinding which occurs during these analyses will be at the group level and will be documented.

      \n

      The stopping rule based on Ambulatory ECG findings is as follows:

      \n\n

      If the number of patients experiencing a pause of \u22656 seconds in a xanomeline treatment arm relative to the number of patients in the placebo arm equals or exceeds the numbers in the following table, then that treatment arm will be discontinued. The Type I error rate for this rule is approximately 0.044 if the incidence in each group is 0.01. The power of this rule is 0.500 if the incidence is 0.01 for placebo and 0.04 for xanomeline TTS.

      \n\n\n\n\n\n\n\n\n

      Placebo

      Xanomeline

      0

      3

      1

      5

      2

      6

      3

      7

      4

      8

      x

      2x

      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_40", + "extensionAttributes": [], + "name": "NCI_40", + "text": "

      The medications and efficacy measurements have been used in other studies in elderly subjects and patients.

      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_41", + "extensionAttributes": [], + "name": "NCI_41", + "text": "
      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_42", + "extensionAttributes": [], + "name": "NCI_42", + "text": "

      Participation in the study shall be terminated for any patient who is unable or unwilling to comply with the study protocol or who develops a serious adverse event.

      \n

      In addition, patients may be discontinued for any of the following reasons:

      \n\n

      If a patient's participation terminates early, an early termination visit should be scheduled. Upon decision to discontinue a patient from the study, the patient's dose should be titrated down by instructing the patient to immediately remove the 25-cm2 patch. Patients should be instructed to continue to apply a 50-cm2 patch daily until the early termination visit, at which time the drug will be discontinued. Physical exam, vital signs, temperature, use of concomitant medications, chemistry/hematology/urinalysis labs, xanomeline plasma sample, TTS acceptability survey, efficacy measures, adverse events, and an ECG will be collected at the early termination visit.

      \n

      In the event that a patient's participation or the study itself is terminated, the patient shall return all study drug(s) to the investigator.

      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_43", + "extensionAttributes": [], + "name": "NCI_43", + "text": "

      If possible, patients who have terminated early will be retrieved on the date which would have represented Visit 12 (Week 24). Vital signs, temperature, use of concomitant medications, adverse events, and efficacy measure assessment will be gathered at this visit. If the patient is not retrievable, this will be documented in the source record.

      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_44", + "extensionAttributes": [], + "name": "NCI_44", + "text": "

      All patients who are enrolled in the study will be included in the efficacy analysis and the safety analysis. Patients will not be excluded from the efficacy analysis for reasons such as non-compliance or ineligibility, except for the time period immediately preceding the efficacy assessment (see Section 3.9.1.2).

      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_45", + "extensionAttributes": [], + "name": "NCI_45", + "text": "

      Patients who successfully complete the study will be eligible for participation in an openlabel extension phase, where every patient will be treated with active agent. The patients who elect to participate in the open-label extension phase will be titrated to their maximally titrated dose. This open-label extension phase will continue until the time the product becomes marketed and is available to the public or until the project is discontinued by the sponsor. Patients may terminate at any time at their request.

      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_46", + "extensionAttributes": [], + "name": "NCI_46", + "text": "

      Because patients enrolled in this study will be outpatients, the knowledge that patients have taken the medication as prescribed will be assured in the following ways:

      \n
        \n
      1. Investigators will attempt to select those patients and caregivers who \nhave been judged to be compliant.

      2. \n
      3. Study medication including unused, partially used, and empty patch \ncontainers will be returned at each clinical visit so that the remaining \nmedication can be counted by authorized investigator staff (nurse, \npharmacist, or physician). The number of patches remaining will be \nrecorded on the CRF.

      4. \n
      5. Following randomization at Visit 3, patients will be instructed to call \nthe site if they have difficulty with application or wearing of patches. If \ndaily doses are reduced, improperly administered, or if a patch becomes \ndetached and requires application of a new patch on three or more days \nin any 30-day period, the CRO research physician will be notified.

      6. \n
      \n

      If the daily dose is reduced or improperly administered in the 24 hours prior to any scheduled clinic visit, the visit should be rescheduled (except for early termination and retrieval visits).

      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_47", + "extensionAttributes": [], + "name": "NCI_47", + "text": "

      To ensure both the safety of participants in the study, and the collection of accurate, complete, and reliable data, Lilly or its representatives will perform the following activities:

      \n\n

      To ensure the safety of participants in the study and to ensure accurate, complete, and reliable data, the investigator will do the following:

      \n\n

      Lilly or its representatives may periodically check a sample of the patient data recorded against source documents at the study site. The study may be audited by Lilly Medical Quality Assurance (MQA) and/or regulatory agencies at any time. Investigators will be given notice before an MQA audit occurs.

      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_48", + "extensionAttributes": [], + "name": "NCI_48", + "text": "
      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_49", + "extensionAttributes": [], + "name": "NCI_49", + "text": "

      In general, all patients will be included in all analyses of efficacy if they have a baseline measurement and at least one postrandomization measurement. Refer to Section 3.9.1.2. for a discussion of which specific efficacy data will be included in the primary analysis.

      \n

      In the event that the doses of xanomeline TTS are changed after the study starts, the analysis will be of three treatment groups (high dose, low dose, and placebo), even though patients within the high dose treatment group, for example, may not all be at exactly the same dose. Also, if the dose is changed midway through the study, the mean dose within each group will be used in the dose response analysis described in Section 4.3.3.

      \n

      All analyses described below will be conducted using the most current production version of SAS\u00ae available at the time of analysis.

      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_50", + "extensionAttributes": [], + "name": "NCI_50", + "text": "

      All measures (for example, age, gender, origin) obtained at either Visits 1, 2, or 3, prior to randomization, will be summarized by treatment group and across all treatment groups. The groups will be compared by analysis of variance (ANOVA) for continuous variables and by Pearson's chi-square test for categorical variables. Note that because patients are randomized to 1 of the 3 treatment groups, any statistically significant treatment group differences are by definition a Type I error; however, the resulting p-values will be used as another descriptive statistic to help focus possible additional analyses (for example, analysis of covariance, subset analyses) on those factors that are most imbalanced (that is, that have the smallest p-values).

      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_51", + "extensionAttributes": [], + "name": "NCI_51", + "text": "
      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_52", + "extensionAttributes": [], + "name": "NCI_52", + "text": "

      Efficacy measures are described in Section 3.9.1.1. As stated in Section 3.9.1.2, the primary outcome measures are the ADAS-Cog (11) and CIBIC+ instruments. Because both of these variables must reach statistical significance, an adjustment to the nominal p-values is necessary in order to maintain a .05 Type I error rate for this study. This adjustment is described in detail in Section 4.3.5.

      \n

      The DAD will be analyzed with respect to the total score, as well as the subscores of \ninitiation, planning and organization, and effective performance. This variable is \nconsidered a secondary variable in the US, but is a third primary variable in Europe.

      \n

      The NPI-X is a secondary variable. The primary assessment of this instrument will be for the total score, not including the sleep, appetite, and euphoria domains. This total score is computed by taking the product of the frequency and severity scores and summing them up across the domains. Secondary variables derived from the NPI-X include evaluating each domain/behavior separately. Also, caregiver distress from the NPI-X will be analyzed.

      \n

      ADAS-Cog (14) and each of the 14 individual components will also be analyzed. In addition, a subscore of the ADAS-Cog will be computed and analyzed, based on results from a previous large study of oral xanomeline. This subscore, referred to as ADAS-Cog (4), will be the sum of constructional praxis, orientation, spoken language ability, and word finding difficulty in spontaneous speech.

      \n

      Any computed total score will be treated as missing if more than 30% of the items are missing or scored \u201cnot applicable\u201d. For example, when computing ADAS-Cog(11), if 4 or more items are missing, then the total score will not be computed. When one or more items are missing (but not more than 30%), the total score will be adjusted in order to maintain the full range of the scale. For example, ADAS-Cog(11) is a 0-70 scale. If the first item, Word Recall (ranges from 0 to 10), is missing, then the remaining 10 items of the ADAS-Cog(11) will be summed and multiplied by (70 / (70-10) ), or 7/6. This computation will occur for all totals and subtotals of ADAS-Cog and NPI-X. DAD is a 40 item questionnaire where each question is scored as either \u201c0\u201d or \u201c1\u201d. The DAD total score and component scores are reported as percentage of items that are scored \u201c1\u201d. So if items of the DAD are \u201cnot applicable\u201d or missing, the percentage will be computed for only those items that are scored. As an example, if two items are missing (leaving 38 that are scored), and there are 12 items scored as \u201c1\u201d, the rest as \u201c0\u201d, then the DAD score is 12/38=.316.

      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_53", + "extensionAttributes": [], + "name": "NCI_53", + "text": "

      Baseline data will be collected at Visit 3.

      \n

      The primary analysis of ADAS-Cog (11) and CIBIC+ will be the 24-week endpoint, which is defined for each patient and variable as the last measurement obtained postrandomization (prior to protocol defined reduction in dose).

      \n

      Similar analyses at 24 weeks will be conducted for the secondary efficacy variables. Analysis of patients who complete the 24-week study will also be conducted for all efficacy variables; this is referred to as a \u201ccompleter\u201d analysis.

      \n

      Additionally, each of the efficacy variables will be analyzed at each time point both as \u201cactual cases,\u201d that is, analyzing the data collected at the various time points, and also as a last-observation-carried-forward (LOCF). Note that the LOCF analysis at 24 weeks is the same as the endpoint analysis described previously.

      \n

      Several additional analyses of NPI-X will be conducted. Data from this instrument will be collected every 2 weeks, and represent not the condition of the patient at that moment in time, but rather the worst condition of the patient in the time period since the most recent NPI-X administration. For this reason, the primary analysis of the NPI-X will be of the average of all postrandomization NPI-X subscores except for the one obtained at Week 2. In the event of early discontinuations, those scores that correspond to the interval between Weeks 2 to 24 will be averaged. The reason for excluding Week 2 data from this analysis is that patients could be confused about when a behavior actually stops after randomization; the data obtained at Week 2 could be somewhat \u201ctainted.\u201d Also, by requiring 2 weeks of therapy prior to use of the NPI-X data, the treatment difference should be maximized by giving the drug 2 weeks to work, thereby increasing the statistical power. Secondary analyses of the NPI-X will include the average of all postrandomization weeks, including measures obtained at Weeks 2 and 26.

      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_54", + "extensionAttributes": [], + "name": "NCI_54", + "text": "

      The primary method to be used for the primary efficacy variables described in Sections 4.3.1 and 4.3.2 will be analysis of covariance (ANCOVA), except for CIBIC+ which is a score that reflects change from baseline, so there is no corresponding baseline CIBIC+ score. Effects in the ANCOVA model will be the corresponding baseline score, investigator, and treatment. CIBIC+ will be analyzed by analysis of variance (ANOVA), with effects in the model being investigator and treatment. Investigator-by-treatment interaction will be tested in a full model prior to conducting the primary ANCOVA or ANOVA (see description below).

      \n

      Because 3 treatment groups are involved, the primary analysis will be the test for linear dose response in the ANCOVA and ANOVA models described in the preceding paragraph. The result is then a single p-value for each of ADAS-Cog and CIBIC+.

      \n

      Analysis of the secondary efficacy variables will also be ANCOVA. Pairwise treatment comparisons of the adjusted means for all efficacy variables will be conducted using a LSMEANS statement within the GLM procedure.

      \n

      Investigator-by-treatment interaction will be tested in a full ANCOVA or ANOVA model, which takes the models described above, and adds the interaction term to the model. Interaction will be tested at \u03b1 = .10 level. When the interaction is significant at this level, the data will be examined for each individual investigator to attempt to identify the source of the significant interaction. When the interaction is not significant, this term will be dropped from the model as described above, to test for investigator and treatment main effects. By doing so, all ANCOVA and ANOVA models will be able to validly test for treatment differences without weighting each investigator equally, which is what occurs when using Type III sums of squares (cell means model) with the interaction term present in the model. This equal weighting of investigators can become a serious problem when sample sizes are dramatically different between investigators.

      \n

      For all ANOVA and ANCOVA models, data collected from investigators who enrolled fewer than 3 patients in any one treatment group will be combined prior to analysis. If this combination still results in a treatment group having fewer than 3 patients in any one treatment group, then this group of patients will be combined with the next fewestenrolling investigator. In the event that there is a tie for fewest-enrolling investigator, one of these will be chosen at random by a random-number generator.

      \n

      The inherent assumption of normally distributed data will be evaluated by generating output for the residuals from the full ANCOVA and ANOVA models, which include the interaction term, and by testing for normality using the Shapiro-Wilk test from PROC UNIVARIATE. In the event that the data are predominantly nonnormally distributed, analyses will also be conducted on the ranked data. This rank transformation will be applied by ranking all the data for a particular variable, across all investigators and treatments, from lowest to highest. Integer ranks will be assigned starting at 1; mean ranks will be assigned when ties occur.

      \n

      In addition, the NPI-X will be analyzed in a manner similar to typical analyses of adverse events. In this analysis, each behavior will be considered individually. This analysis is referred to as \u201ctreatment-emergent signs and symptoms\u201d (TESS) analysis. For each behavior, the patients will be dichotomized into 1 of 2 groups: those who experienced the behavior for the first time postrandomization, or those who had the quotient between frequency and severity increase relative to the baseline period defines one group. All other patients are in the second group. Treatments will be compared for overall differences by Cochran-Mantel-Haentzel (CMH) test referred to in SAS\u00ae as \u201crow mean scores differ,\u201d 2 degrees of freedom. The CMH correlation statistic (1 degree of freedom test), will test for increasing efficacy with increasing dose (trend test).

      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_55", + "extensionAttributes": [], + "name": "NCI_55", + "text": "

      All comparisons between xanomeline and placebo with respect to efficacy variables should be one-sided. The justification for this follows.

      \n

      The statistical hypothesis that is tested needs to be consistent with the ultimate data-based decision that is reached. When conducting placebo-controlled trials, it is imperative that the drug be demonstrated to be superior in efficacy to placebo, since equivalent or worse efficacy than placebo will preclude approvability. Consequently, a one-sided test for efficacy is required.

      \n

      The null hypothesis is that the drug is equal or worse than placebo. The alternative hypothesis is that the drug has greater efficacy than placebo. A Type I error occurs only when it is concluded that a study drug is effective when in fact it is not. This can occur in only one tail of the distribution of the treatment difference. Further details of the arguments for one-sided tests in placebo-controlled trials are available in statistical publications (Fisher 1991; Koch 1991; Overall 1991; and Peace 1991).

      \n

      The argument for one-sided tests does not necessarily transfer to safety measures, in general, because one can accept a certain level of toxicity in the presence of strong efficacy. That is, safety is evaluated as part of a benefit/risk ratio.

      \n

      Note that this justification is similar to that used by regulatory agencies worldwide that routinely require one-sided tests for toxicological oncogenicity studies. In that case, the interest is not in whether a drug seems to lessen the occurrence of cancer; the interest is in only one tail of the distribution, namely whether the drug causes cancer to a greater extent than the control.

      \n

      Different regulatory agencies require different type I error rates. Treatment differences that are significant at the .025 \u03b1-level will be declared to be \u201cstatistically significant.\u201d When a computed p-value falls between .025 and .05, the differences will be described as \u201cmarginally statistically significant.\u201d This approach satisfies regulatory agencies who have accepted a one-sided test at the .05 level, and other regulatory agencies who have requested a two-sided test at the .05 level, or equivalently, a one-sided test at the .025 level. In order to facilitate the review of the final study report, two-sided p-values will be presented in addition to the one-sided p-values.

      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_56", + "extensionAttributes": [], + "name": "NCI_56", + "text": "

      When there are multiple outcomes, and the study drug is declared to be effective when at least one of these outcomes achieves statistical significance in comparison with a placebo control, a downward adjustment to the nominal \u03b1-level is necessary. A well-known simple method is the Bonferroni method, that divides the overall Type I error rate, usually .05, by the number of multiple outcomes. So, for example, if there are two multiple outcomes, the study drug is declared to be effective if at least one of the two outcomes is significant at the .05/2 or .025 level.

      \n

      However, when one has the situation that is present in this study, where there are 2 (or 3 for Europe) outcome variables, each of which must be statistically significant, then the adjustment of the nominal levels is in the opposite direction, that is upwards, in order to maintain an overall Type 1 error rate of .05.

      \n

      In the case of two outcomes, ADAS-Cog (11) and CIBIC+, if the two variables were completely independent, then each variable should be tested at the nominal \u03b1-level of .05 1/2 = .2236 level. So if both variables resulted in a nominal p-value less than or equal to .2236, then we would declare the study drug to be effective at the overall Type 1 error rate of .05.

      \n

      We expect these two outcome measures to be correlated. From the first large-scale \nefficacy study of oral xanomeline, Study MC-H2Q-LZZA, the correlation between \nCIBIC+ and the change in ADAS-Cog(11) from baseline was .252. Consequently, we

      \n

      plan to conduct a randomization test to combine these two dependent dose-response p-values into a single test, which will then be at the .05 Type I error level. Because there will be roughly 300!/(3 * 100!) possible permutations of the data, random data permutations will be sampled (10,000 random permutations).

      \n

      Designate the dose response p-values as p1 and p2 (computed as one-sided p-values), for ADAS-Cog(11) and CIBIC+, respectively. The rejection region is defined as

      \n

      [ {p1 \u2264 \u03b1 and p2 \u2264 \u03b1} ].

      \n

      The critical value, \u03b1, will be determined from the 10,000 random permutations by choosing the value of \u03b1 to be such that 2.5% of the 10,000 computed pairs of dose response p-values fall in the rejection region. This will correspond to a one-sided test at the .025 level, or equivalently a two-sided test at the .05 level. In addition, by determining the percentage of permuted samples that are more extreme than the observed data, a single p-value is obtained.

      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_57", + "extensionAttributes": [], + "name": "NCI_57", + "text": "

      Although safety data is collected at the 24 week visit for retrieved dropouts, these data will not be included in the primary analysis of safety.

      \n

      Pearson's chi-square test will be used to analyze 3 reasons for study discontinuation (protocol completed, lack of efficacy, and adverse event), the incidence of abnormal (high or low) laboratory measures during the postrandomization phase, and the incidence of treatment-emergent adverse events. The analysis of laboratory data is conducted by comparing the measures to the normal reference ranges (based on a large Lilly database), and counting patients in the numerator if they ever had a high (low) value during the postrandomization phase.

      \n

      Additionally, for the continuous laboratory tests, an analysis of change from baseline to endpoint will be conducted using the same ANOVA model described for the efficacy measures in Section 4.3. Because several laboratory analytes are known to be nonnormally distributed (skewed right), these ANOVAs will be conducted on the ranks.

      \n

      Several outcome measures will be extracted and analyzed from the Ambulatory ECG tapes, including number of pauses, QT interval, and AV block (first, second, or third degree). The primary consideration will be the frequency of pauses. The number of pauses greater than or equal to 2, 3, 4, 5 and 6 seconds will be tabulated. Primary analysis will focus on the number of pauses greater than or equal to 3 seconds. Due to possible outliers, these data will be analyzed as the laboratory data, by ANOVA on the ranks.

      \n

      Treatment-emergent adverse events (also referred to as treatment-emergent signs and symptoms, or TESS) are defined as any event reported during the postrandomization period (Weeks 0 - 26) that is worse in severity than during the baseline period, or one that occurs for the first time during the postrandomization period.

      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_58", + "extensionAttributes": [], + "name": "NCI_58", + "text": "

      The effect of age, gender, origin, baseline disease severity as measured by MMSE, Apo E, and patient education level upon efficacy will be evaluated if sample sizes are sufficient to warrant such analyses. For example, if all patients are Caucasian, then there is no need to evaluate the co-factor origin. The ANCOVA and ANOVA models described above will be supplemented with terms for the main effect and interaction with treatment. Each co-factor will be analyzed in separate models. The test for treatment-bysubgroup interaction will address whether the response to xanomeline, compared with placebo, is different or consistent between levels of the co-factor.

      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_59", + "extensionAttributes": [], + "name": "NCI_59", + "text": "

      Two interim efficacy analyses are planned. The first interim analysis will occur when approximately 50% of the patients have completed 8 weeks; the second interim analysis is to be conducted when approximately 50% of the patients have completed 24 weeks of the study. The purpose of these interim analyses is to provide a rationale for the initiation of subsequent studies of xanomeline TTS, or if the outcome is negative to stop development of xanomeline TTS. The method developed by Enas and Offen (1993) will be used as a guideline as to whether or not to stop one treatment arm, or the study, to declare ineffectiveness. The outcome of the interim analyses will not affect in any way the conduct, results, or analysis of the current study, unless the results are so negative that they lead to a decision to terminate further development of xanomeline TTS in AD. Hence, adjustments to final computed p-values are not appropriate.

      \n

      Planned interim analyses, and any unplanned interim analyses, will be conducted under the auspices of the data monitoring board assigned to this study. Only the data monitoring board is authorized to review completely unblinded interim efficacy and safety analyses and, if necessary, to disseminate those results. The data monitoring board will disseminate interim results only if absolutely necessary. Any such dissemination will be documented and described in the final study report. Study sites will not receive information about interim results unless they need to know for the safety of their patients.

      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_60", + "extensionAttributes": [], + "name": "NCI_60", + "text": "

      An analysis of the cardiovascular safety monitoring (see section 3.9.4) will be performed when approximately 25 patients from each treatment arm have completed at least 2 weeks at the treatment arms' respective full dosage (Visit 5). If necessary, this analysis will be repeated every 25 patients per arm. This analysis will be conducted under the auspices of the DSMB. This board membership will be composed of 3 external cardiologists who will be the voting members of the board, a Lilly cardiologist, a Lilly statistician, and the Lilly research physician in charge of the study. Only the DSMB is authorized to review completely unblinded cardiovascular safety analyses and, if necessary, to disseminate those results. The outcome of the cardiovascular safety analyses will determine the need for further Ambulatory ECGs.

      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_61", + "extensionAttributes": [], + "name": "NCI_61", + "text": "

      Plasma concentrations of xanomeline will be determined from samples obtained at selected visits (Section 3.9.2). The plasma concentration data for xanomeline, dosing information, and patient characteristics such as weight, gender and origin will be pooled and analyzed using a population pharmacokinetic analysis approach (for example, NONMEM). This approach preserves the individual pharmacokinetic differences through structural and statistical models. The population pharmacokinetic parameters through the structural model, and the interindividual and random residual variability through the components of the statistical models will be estimated. An attempt will also be made to correlate plasma concentrations with efficacy and safety data by means of population pharmacokinetic/pharmacodynamic modeling.

      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_62", + "extensionAttributes": [], + "name": "NCI_62", + "text": "
      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_63", + "extensionAttributes": [], + "name": "NCI_63", + "text": "

      In the United States and Canada, the investigator is responsible for preparing the informed consent document. The investigator will use information provided in the current [Clinical Investigator's Brochure or product information] to prepare the informed consent document.

      \n

      The informed consent document will be used to explain in simple terms, before the patient is entered into the study, the risks and benefits to the patient. The informed consent document must contain a statement that the consent is freely given, that the patient is aware of the risks and benefits of entering the study, and that the patient is free to withdraw from the study at any time.

      \n

      As used in this protocol, the term \u201cinformed consent\u201d includes all consent and/or assent given by subjects, patients, or their legal representatives.

      \n

      In addition to the elements required by all applicable laws, the 3 numbered paragraphs below must be included in the informed consent document. The language may be altered to match the style of the informed consent document, providing the meaning is unchanged. In some circumstances, local law may require that the text be altered in a way that changes the meaning. These changes can be made only with specific Lilly approval. In these cases, the ethical review board may request from the investigator documentation evidencing Lilly's approval of the language in the informed consent document, which would be different from the language contained in the protocol. Lilly shall, upon request, provide the investigator with such documentation.

      \n
        \n
      1. \u201cI understand that the doctors in charge of this study, or Lilly, may \nstop the study or stop my participation in the study at any time, for any \nreason, without my consent.\u201d

      2. \n
      3. \u201cI hereby give permission for the doctors in charge of this study to \nrelease the information regarding, or obtained as a result of, my \nparticipation in this study to Lilly, including its agents and contractors; \nthe US Food and Drug Administration (FDA) and other governmental \nagencies; and to allow them to inspect all my medical records. I \nunderstand that medical records that reveal my identity will remain \nconfidential, except that they will be provided as noted above or as \nmay be required by law.\u201d

      4. \n
      5. \u201cIf I follow the directions of the doctors in charge of this study and I \nam physically injured because of any substance or procedure properly \ngiven me under the plan for this study, Lilly will pay the medical \nexpenses for the treatment of that injury which are not covered by my \nown insurance, by a government program, or by any other third party. \nNo other compensation is available from Lilly if any injury occurs.\u201d

      6. \n
      \n

      The investigator is responsible for obtaining informed consent from each patient or legal representative and for obtaining the appropriate signatures on the informed consent document prior to the performance of any protocol procedures and prior to the administration of study drug.

      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_64", + "extensionAttributes": [], + "name": "NCI_64", + "text": "

      The name and address of the ethical review board are listed on the Investigator/Contacts cover pages provided with this protocol.

      \n

      The investigator will provide Lilly with documentation of ethical review board approval of the protocol and the informed consent document before the study may begin at the site or sites concerned. The ethical review board(s) will review the protocol as required.

      \n

      The investigator must provide the following documentation:

      \n
      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_65", + "extensionAttributes": [], + "name": "NCI_65", + "text": "

      This study will be conducted in accordance with the ethical principles stated in the most recent version of the Declaration of Helsinki or the applicable guidelines on good clinical practice, whichever represents the greater protection of the individual.

      \n

      After reading the protocol, each investigator will sign 2 protocol signature pages and return 1 of the signed pages to a Lilly representative (see Attachment LZZT.10).

      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_66", + "extensionAttributes": [], + "name": "NCI_66", + "text": "
      \n
      \n
      \n

      Bierer LM, Haroutunian V, Gabriel S, Knott PJ, Carlin LS, Purohit DP, et al. 1995.
      Neurochemical correlates of dementia severity in AD: Relative importance of the cholinergic deficits. J of Neurochemistry 64:749-760.

      \n
      \n
      \n
      \n
      \n

      Cummings JL, Mega M, Gray K, Rosenberg-Thompson S, et al. 1994. The Neuropsychiatric Inventory: Comprehensive assessment of psychopathology in dementia. Neurology 44:2308-2314.

      \n
      \n
      \n
      \n
      \n

      Enas GG, Offen WW. 1993. A simple stopping rule for declaring treatment ineffectiveness in clinical trials. J Biop Stat 3(1):13-32.

      \n
      \n
      \n
      \n
      \n

      Fisher A, Barak D. 1994. Promising therapeutic strategies in Alzheimer's disease based \non functionally selective M 1 muscarinic agonists. Progress and perspectives in new \nmuscarinic agonists. DN&P 7(8):453-464.

      \n
      \n
      \n
      \n
      \n
      \n
      \n
      \n
      \n

      GLUCAGON for Injection ITO [Package Insert]. Osaka, Japan: Kaigen Pharma Co., Ltd; 2016.Available at:\n http://www.pmda.go.jp/PmdaSearch/iyakuDetail/ResultDataSetPDF/130616_7229400D1088_\n 1_11.

      \n
      \n
      \n
      \n
      \n

      Polonsky WH, Fisher L, Hessler D, Johnson N. Emotional distress in the partners of type 1diabetes adults:\n worries about hypoglycemia and other key concerns. Diabetes Technol Ther. 2016;18:292-297.

      \n
      \n
      \n
      \n
      \n

      Fisher LD. 1991. The use of one-sided tests in drug trials: an FDA advisory committee \nmember's perspective. J Biop Stat 1:151-6.

      \n
      \n
      \n
      \n
      \n

      Koch GG. 1991. One-sided and two-sided tests and p-values. J Biop Stat 1:161-70.

      \n
      \n
      \n
      \n
      \n

      Overall JE. 1991. A comment concerning one-sided tests of significance in new drug \napplications. J Biop Stat 1:157-60.

      \n
      \n
      \n
      \n
      \n

      Peace KE. 1991. Oneside or two-sided p-values: which most appropriately address the \nquestion of drug efficacy? J Biop Stat 1:133-8.

      \n
      \n
      \n
      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_67", + "extensionAttributes": [], + "name": "NCI_67", + "text": "
      \n
      \n

      Note:

      \n

      The following SoA timelines are auto generated using the detailed study design held within the USDM.

      \n
      \n

      Timeline: Main Timeline, Potential subject identified

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X1

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X2

      X

      X

      X

      X

      X3

      X

      X

      X

      X

      X4

      X

      X

      X

      X

      X5

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      1

      Performed if patient is an insulin-dependent diabetic

      2

      Practice only - It is recommended that a sampling of the CIBIC+, ADAS-Cog, DAD, and NPI-X be administered at Visit 1. Data from this sampling would not be considered as study data and would not be collected.

      3

      Practice only - It is recommended that a sampling of the CIBIC+, ADAS-Cog, DAD, and NPI-X be administered at Visit 1. Data from this sampling would not be considered as study data and would not be collected.

      4

      Practice only - It is recommended that a sampling of the CIBIC+, ADAS-Cog, DAD, and NPI-X be administered at Visit 1. Data from this sampling would not be considered as study data and would not be collected.

      5

      Practice only - It is recommended that a sampling of the CIBIC+, ADAS-Cog, DAD, and NPI-X be administered at Visit 1. Data from this sampling would not be considered as study data and would not be collected.

      Timeline: Adverse Event Timeline, Subject suffers an adverse event

      X

      Timeline: Early Termination Timeline, Subject terminates the study early

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      Timeline: Vital Sign Blood Pressure Timeline, Automatic execution

      X

      X

      X

      X

      X

      X

      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_68", + "extensionAttributes": [], + "name": "NCI_68", + "text": "
      \n
      \n

      Note:

      \n

      The attachment has not been included in this issue of the protocol. It may be included in future versions.

      \n
      \n
      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_69", + "extensionAttributes": [], + "name": "NCI_69", + "text": "
      \n
      \n

      Note:

      \n

      The attachment has not been included in this issue of the protocol. It may be included in future versions.

      \n
      \n
      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_70", + "extensionAttributes": [], + "name": "NCI_70", + "text": "
      \n
      \n

      Note:

      \n

      The attachment has not been included in this issue of the protocol. It may be included in future versions.

      \n
      \n
      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_71", + "extensionAttributes": [], + "name": "NCI_71", + "text": "
      \n
      \n

      Note:

      \n

      The attachment has not been included in this issue of the protocol. It may be included in future versions.

      \n
      \n
      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_72", + "extensionAttributes": [], + "name": "NCI_72", + "text": "
      \n
      \n

      Note:

      \n

      The attachment has not been included in this issue of the protocol. It may be included in future versions.

      \n
      \n
      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_73", + "extensionAttributes": [], + "name": "NCI_73", + "text": "
      \n
      \n

      Note:

      \n

      The attachment has not been included in this issue of the protocol. It may be included in future versions.

      \n
      \n
      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_74", + "extensionAttributes": [], + "name": "NCI_74", + "text": "
      \n
      \n

      Note:

      \n

      The attachment has not been included in this issue of the protocol. It may be included in future versions.

      \n
      \n
      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_75", + "extensionAttributes": [], + "name": "NCI_75", + "text": "
      \n
      \n

      Note:

      \n

      The attachment has not been included in this issue of the protocol. It may be included in future versions.

      \n
      \n
      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_76", + "extensionAttributes": [], + "name": "NCI_76", + "text": "
      \n
      \n

      Note:

      \n

      The attachment has not been included in this issue of the protocol. It may be included in future versions.

      \n
      \n
      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_77", + "extensionAttributes": [], + "name": "NCI_77", + "text": "

      Sponsor Confidentiality Statement:

      Full Title:

      Trial Acronym:

      Protocol Identifier:

      Original Protocol:

      Version Number:

      Version Date:

      Amendment Identifier:

      Amendment Scope:

      Compound Codes(s):

      Compound Name(s):

      Trial Phase:

      Short Title:

      Sponsor Name and Address:

      ,

      Regulatory Agency Identifier Number(s):

      Spondor Approval Date:

      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_78", + "extensionAttributes": [], + "name": "NCI_78", + "text": "
      Committees\n

      A Data Safety Monitoring Board (DSMB), chaired by an external cardiologist, will meet after 75, 150, 225, and 300 patients have completed 1 month of treatment. The DSMB will review cardiovascular findings to decide if discontinuation of the study or any treatment arm is appropriate, if additional cardiovascular monitoring is required, if further cardiovascular monitoring is unnecessary, or if adjustment of dose within a treatment arm (or arms) is appropriate (see Section 3.9.4).

      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_79", + "extensionAttributes": [], + "name": "NCI_79", + "text": "
      \"Alt\n

      Figure LZZT.1. Illustration of study design for Protocol H2Q-MC-LZZT(c).

      \n

      Following informed consent, patients will be screened at Visit 1. At screening, patients will undergo complete neuropsychiatric assessment, psychometric testing, and general medical assessment (including medical history, pre-existing conditions, physical examination). In addition, vital signs, temperature, medication history, electrocardiogram (ECG), chest x-ray, and safety laboratories will be obtained. During the screening visit, patients will wear a placebo TTS to determine willingness and ability to comply with transdermal administration procedures. If patients have not had central nervous system (CNS) imaging in the previous 12 months, a computed tomography (CT) or magnetic resonance imaging (MRI) scan will be obtained. If patients are insulin dependent diabetics, a hemoglobin A 1c will be obtained. Screening exams and procedures may be performed after Visit 1; however, their results must be completed and available prior to randomization. The screening process should occur within 2 weeks of randomization (Visit 3 of the study).

      \n

      Patients who meet enrollment criteria from Visit 1 will proceed to Visit 2 at which time they will undergo a 24-hour Ambulatory ECG. At Visit 3 the Ambulatory ECG will be removed and patients will be randomized to 1 of 3 treatment arms. The treatment arms will include a placebo arm, a low-dose xanomeline arm (50 cm 2 TTS Formulation E, 54 mg xanomeline), and a high-dose xanomeline arm (75 cm 2 TTS Formulation E, 81 mg xanomeline). All patients receiving xanomeline will be started at 50 cm 2 TTS Formulation E. For the first 8 weeks of treatment, patients will be assessed at clinic visits every 2 weeks and, thereafter, at clinic visits every 4 weeks. Patients who discontinue prior to Visit 12 (Week 24) will be brought back for full efficacy assessments at or near to 24 weeks, whenever possible.

      \n

      At Visits 3, 8, 10, and 12, efficacy instruments (ADAS-Cog, CIBIC+, and DAD) will be administered. NPI-X will be administered at 2-week intervals either at clinic visits or via a telephone interview. Vital signs, temperature, and an assessment of adverse events will be obtained at all clinic visits. An electrocardiogram (ECG), and chemistry/hematology safety labs will be obtained at Visits 4, 5, 7, 8, 9, 10, 11, 12, and 13. Urinalysis will be done at Visits 4, 9, and 12. Use of concomitant medications will be collected at Visits 3, 4, 5, 7, 8, 9, 10, 11, 12, and 13. Plasma levels of xanomeline and metabolites will be obtained at Visits 3, 4, 5, 7, 9, and 11. At Visits 3, 4, 5, 7, 8, 9, 10, 11, and 12, medications will be dispensed to the patients.

      \n

      Visits 1 through 13 should be scheduled relative to Visit 3 (Week 0 - randomization). Visits 4, 5, 7, 8, and 13 should occur within 3 days of their scheduled date. Visits 9, 10, 11, and 12 should occur within 4 days of their scheduled date. At Visit 13 patients will be given the option to enter the open-label extension phase (see Section 3.10.3. Study Extensions).

      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_80", + "extensionAttributes": [], + "name": "NCI_80", + "text": "
      \n
      \n

      Note:

      \n

      The following SoA timelines are auto generated using the detailed study design held within the USDM.

      \n
      \n

      Timeline: Main Timeline, Potential subject identified

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X1

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X2

      X

      X

      X

      X

      X3

      X

      X

      X

      X

      X4

      X

      X

      X

      X

      X5

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      1

      Performed if patient is an insulin-dependent diabetic

      2

      Practice only - It is recommended that a sampling of the CIBIC+, ADAS-Cog, DAD, and NPI-X be administered at Visit 1. Data from this sampling would not be considered as study data and would not be collected.

      3

      Practice only - It is recommended that a sampling of the CIBIC+, ADAS-Cog, DAD, and NPI-X be administered at Visit 1. Data from this sampling would not be considered as study data and would not be collected.

      4

      Practice only - It is recommended that a sampling of the CIBIC+, ADAS-Cog, DAD, and NPI-X be administered at Visit 1. Data from this sampling would not be considered as study data and would not be collected.

      5

      Practice only - It is recommended that a sampling of the CIBIC+, ADAS-Cog, DAD, and NPI-X be administered at Visit 1. Data from this sampling would not be considered as study data and would not be collected.

      Timeline: Adverse Event Timeline, Subject suffers an adverse event

      X

      Timeline: Early Termination Timeline, Subject terminates the study early

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      Timeline: Vital Sign Blood Pressure Timeline, Automatic execution

      X

      X

      X

      X

      X

      X

      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_81", + "extensionAttributes": [], + "name": "NCI_81", + "text": "

      The primary objectives of this study are

      \n
      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_82", + "extensionAttributes": [], + "name": "NCI_82", + "text": "

      The secondary objectives of this study are

      \n
      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_83", + "extensionAttributes": [], + "name": "NCI_83", + "text": "

      Approximately 300 patients will be enrolled (see Schedule of Events for Protocol H2Q-MC-LZZT(c), Attachment LZZT.1).

      \n

      Duration

      \n

      SOMETHING HERE

      \n

      Patients with probable mild to moderate AD will be studied in a randomized, double-blind, parallel (3 arm), placebo-controlled trial of 26 weeks duration. The study will be conducted on an outpatient basis.

      \n

      At Visit 1, patients who meet the enrollment criteria of Mini-Mental State Examination (MMSE) score of 10 to 23 (Attachment LZZT.6), Hachinski Ischemia Score \u22644 (Attachment LZZT.8), a physical exam, safety labs, ECG, and urinalysis, will proceed to Visit 2 and Visit 3. At Visit 3, patients whose CNS imaging and other pending labs from Visit 1 satisfy the inclusion criteria (Section 3.4.2.1) will be enrolled in the study. Approximately 300 patients with a diagnosis of probable mild to moderate AD will be enrolled in the study.

      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_84", + "extensionAttributes": [], + "name": "NCI_84", + "text": "

      Patients may be included in the study only if they meet all the following criteria:

      \n
      01
      02
      03
      04
      05
      06
      07
      08
      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_85", + "extensionAttributes": [], + "name": "NCI_85", + "text": "

      Patients will be excluded from the study for any of the following reasons:

      \n
      09
      10
      11
      12
      13
      14
      15
      16b
      17
      18
      19
      20
      21
      22
      23
      24
      25
      26
      27b
      28b
      29b
      30b
      31b
      ", + "instanceType": "NarrativeContentItem" + } + ], + "abbreviations": [ + { + "id": "Abbreviation_1", + "extensionAttributes": [], + "abbreviatedText": "AE", + "expandedText": "adverse event", + "notes": [], + "instanceType": "Abbreviation" + }, + { + "id": "Abbreviation_2", + "extensionAttributes": [], + "abbreviatedText": "BMI", + "expandedText": "body mass index", + "notes": [], + "instanceType": "Abbreviation" + }, + { + "id": "Abbreviation_3", + "extensionAttributes": [], + "abbreviatedText": "C-I", + "expandedText": "check-in", + "notes": [], + "instanceType": "Abbreviation" + }, + { + "id": "Abbreviation_5", + "extensionAttributes": [], + "abbreviatedText": "D", + "expandedText": "day", + "notes": [], + "instanceType": "Abbreviation" + }, + { + "id": "Abbreviation_6", + "extensionAttributes": [], + "abbreviatedText": "ECG", + "expandedText": "electrocardiogram", + "notes": [], + "instanceType": "Abbreviation" + }, + { + "id": "Abbreviation_7", + "extensionAttributes": [], + "abbreviatedText": "EOS/ET", + "expandedText": "End of Study or Early Termination", + "notes": [], + "instanceType": "Abbreviation" + }, + { + "id": "Abbreviation_8", + "extensionAttributes": [], + "abbreviatedText": "HIV", + "expandedText": "human immunodeficiency virus", + "notes": [], + "instanceType": "Abbreviation" + }, + { + "id": "Abbreviation_9", + "extensionAttributes": [], + "abbreviatedText": "HR", + "expandedText": "heart rate", + "notes": [], + "instanceType": "Abbreviation" + }, + { + "id": "Abbreviation_12", + "extensionAttributes": [], + "abbreviatedText": "OP", + "expandedText": "outpatient", + "notes": [], + "instanceType": "Abbreviation" + }, + { + "id": "Abbreviation_13", + "extensionAttributes": [], + "abbreviatedText": "PD", + "expandedText": "pharmacodynamic", + "notes": [], + "instanceType": "Abbreviation" + }, + { + "id": "Abbreviation_14", + "extensionAttributes": [], + "abbreviatedText": "PK", + "expandedText": "pharmacokinetics", + "notes": [], + "instanceType": "Abbreviation" + } + ], + "roles": [ + { + "id": "StudyRole_1", + "extensionAttributes": [], + "name": "ROLE_1", + "label": "Sponsor", + "description": "Sponsor role", + "code": { + "id": "Code_670", + "extensionAttributes": [], + "code": "C70793", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "SPONSOR", + "instanceType": "Code" + }, + "appliesToIds": [], + "assignedPersons": [], + "organizationIds": ["Organization_1"], + "masking": { + "id": "Masking_1", + "extensionAttributes": [], + "text": "Masked", + "isMasked": true, + "instanceType": "Masking" + }, + "notes": [], + "instanceType": "StudyRole" + } + ], + "organizations": [ + { + "id": "Organization_1", + "extensionAttributes": [], + "name": "LILLY", + "label": "Eli Lilly", + "type": { + "id": "Code_1", + "extensionAttributes": [], + "code": "C70793", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "SPONSOR", + "instanceType": "Code" + }, + "identifierScheme": "DUNS", + "identifier": "00-642-1325", + "legalAddress": { + "id": "Address_1", + "extensionAttributes": [], + "text": "Lilly Corporate Ctr, Indianapolis, , IN, 4628, United States of America", + "lines": ["Lilly Corporate Ctr"], + "city": "Indianapolis", + "district": "", + "state": "IN", + "postalCode": "4628", + "country": { + "id": "Code_2", + "extensionAttributes": [], + "code": "USA", + "codeSystem": "ISO 3166 1 alpha3", + "codeSystemVersion": "2020-08", + "decode": "United States of America", + "instanceType": "Code" + }, + "instanceType": "Address" + }, + "managedSites": [], + "instanceType": "Organization" + }, + { + "id": "Organization_2", + "extensionAttributes": [], + "name": "CT-GOV", + "label": "ClinicalTrials.gov", + "type": { + "id": "Code_3", + "extensionAttributes": [], + "code": "C93453", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Study Registry", + "instanceType": "Code" + }, + "identifierScheme": "USGOV", + "identifier": "CT-GOV", + "legalAddress": { + "id": "Address_2", + "extensionAttributes": [], + "text": "National Library of Medicine, Bethesda, 8600 Rockville Pike, MD, 20894, United States of America", + "lines": ["National Library of Medicine"], + "city": "Bethesda", + "district": "8600 Rockville Pike", + "state": "MD", + "postalCode": "20894", + "country": { + "id": "Code_4", + "extensionAttributes": [], + "code": "USA", + "codeSystem": "ISO 3166 1 alpha3", + "codeSystemVersion": "2020-08", + "decode": "United States of America", + "instanceType": "Code" + }, + "instanceType": "Address" + }, + "managedSites": [], + "instanceType": "Organization" + }, + { + "id": "Organization_3", + "extensionAttributes": [], + "name": "SITE_ORG_1", + "label": "Big Hospital", + "type": { + "id": "Code_5", + "extensionAttributes": [], + "code": "C70793", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "SPONSOR", + "instanceType": "Code" + }, + "identifierScheme": "DUNS", + "identifier": "123456789", + "legalAddress": { + "id": "Address_3", + "extensionAttributes": [], + "text": "line, city, district, state, postal_code, United Kingdom of Great Britain and Northern Ireland", + "lines": ["line"], + "city": "city", + "district": "district", + "state": "state", + "postalCode": "postal_code", + "country": { + "id": "Code_6", + "extensionAttributes": [], + "code": "GBR", + "codeSystem": "ISO 3166 1 alpha3", + "codeSystemVersion": "2020-08", + "decode": "United Kingdom of Great Britain and Northern Ireland", + "instanceType": "Code" + }, + "instanceType": "Address" + }, + "managedSites": [ + { + "id": "StudySite_1", + "extensionAttributes": [], + "name": "SITE_1", + "label": "Site One", + "description": "Main Site", + "country": { + "id": "Code_669", + "extensionAttributes": [], + "code": "GBR", + "codeSystem": "ISO 3166 1 alpha3", + "codeSystemVersion": "2020-08", + "decode": "United Kingdom of Great Britain and Northern Ireland", + "instanceType": "Code" + }, + "instanceType": "StudySite" + } + ], + "instanceType": "Organization" + } + ], + "studyInterventions": [ + { + "id": "StudyIntervention_1", + "extensionAttributes": [], + "name": "XINONILINE", + "label": "Xinomiline", + "description": "Xinomiline", + "role": { + "id": "Code_611", + "extensionAttributes": [], + "code": "C41161", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Experimental Intervention", + "instanceType": "Code" + }, + "type": { + "id": "Code_612", + "extensionAttributes": [], + "code": "C1909", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "DRUG", + "instanceType": "Code" + }, + "minimumResponseDuration": { + "id": "Quantity_4", + "extensionAttributes": [], + "value": "1.0", + "unit": { + "id": "AliasCode_246", + "extensionAttributes": [], + "standardCode": { + "id": "Code_613", + "extensionAttributes": [], + "code": "C25301", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Day", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "instanceType": "Quantity" + }, + "codes": [ + { + "id": "Code_610", + "extensionAttributes": [], + "code": "XIN", + "codeSystem": "SPONSOR", + "codeSystemVersion": "12", + "decode": "XIN", + "instanceType": "Code" + } + ], + "administrations": [ + { + "id": "Administration_1", + "extensionAttributes": [], + "name": "PATCH_50", + "label": "", + "description": "50 cm2 Patch", + "duration": { + "id": "Duration_1", + "extensionAttributes": [], + "text": "", + "quantity": { + "id": "Quantity_2", + "extensionAttributes": [], + "value": 24.0, + "unit": { + "id": "AliasCode_242", + "extensionAttributes": [], + "standardCode": { + "id": "Code_606", + "extensionAttributes": [], + "code": "C29844", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Week", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "instanceType": "Quantity" + }, + "durationWillVary": false, + "reasonDurationWillVary": "", + "instanceType": "Duration" + }, + "dose": { + "id": "Quantity_3", + "extensionAttributes": [], + "value": 54.0, + "unit": { + "id": "AliasCode_243", + "extensionAttributes": [], + "standardCode": { + "id": "Code_607", + "extensionAttributes": [], + "code": "C28253", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Milligram", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "instanceType": "Quantity" + }, + "route": { + "id": "AliasCode_244", + "extensionAttributes": [], + "standardCode": { + "id": "Code_608", + "extensionAttributes": [], + "code": "C38288", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "ORAL", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "frequency": { + "id": "AliasCode_245", + "extensionAttributes": [], + "standardCode": { + "id": "Code_609", + "extensionAttributes": [], + "code": "C25473", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "QD", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "administrableProductId": "AdmProd_1", + "medicalDeviceId": null, + "notes": [], + "instanceType": "Administration" + }, + { + "id": "Administration_2", + "extensionAttributes": [], + "name": "PATCH_75", + "label": "", + "description": "75 cm2 Patch", + "duration": { + "id": "Duration_2", + "extensionAttributes": [], + "text": "", + "quantity": { + "id": "Quantity_5", + "extensionAttributes": [], + "value": 24.0, + "unit": { + "id": "AliasCode_247", + "extensionAttributes": [], + "standardCode": { + "id": "Code_614", + "extensionAttributes": [], + "code": "C29844", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Week", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "instanceType": "Quantity" + }, + "durationWillVary": false, + "reasonDurationWillVary": "", + "instanceType": "Duration" + }, + "dose": { + "id": "Quantity_6", + "extensionAttributes": [], + "value": 81.0, + "unit": { + "id": "AliasCode_248", + "extensionAttributes": [], + "standardCode": { + "id": "Code_615", + "extensionAttributes": [], + "code": "C28253", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Milligram", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "instanceType": "Quantity" + }, + "route": { + "id": "AliasCode_249", + "extensionAttributes": [], + "standardCode": { + "id": "Code_616", + "extensionAttributes": [], + "code": "C38288", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "ORAL", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "frequency": { + "id": "AliasCode_250", + "extensionAttributes": [], + "standardCode": { + "id": "Code_617", + "extensionAttributes": [], + "code": "C25473", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "QD", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "administrableProductId": "AdmProd_1", + "medicalDeviceId": null, + "notes": [], + "instanceType": "Administration" + } + ], + "notes": [], + "instanceType": "StudyIntervention" + } + ], + "administrableProducts": [ + { + "id": "AdmProd_1", + "extensionAttributes": [], + "name": "AdmProd1", + "label": "Xanomeline", + "description": null, + "administrableDoseForm": { + "id": "AliasCode_p01", + "extensionAttributes": [], + "standardCode": { + "id": "Code_p01", + "extensionAttributes": [], + "code": "C66726", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "PATCH", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "sourcing": { + "id": "Code_p02", + "extensionAttributes": [], + "code": "C215659", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Centrally Sourced", + "instanceType": "Code" + }, + "productDesignation": { + "id": "Code_p03", + "extensionAttributes": [], + "code": "C202579", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "IMP", + "instanceType": "Code" + }, + "pharmacologClass": null, + "properties": [ + { + "id": "AdmProdProp_1", + "extensionAttributes": [], + "name": "AdmProdProp1", + "type": { + "id": "Code_p04", + "extensionAttributes": [], + "code": "C215479", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "pH", + "instanceType": "Code" + }, + "text": "7.0", + "quantity": null, + "instanceType": "AdministrableProductProperty" + } + ], + "notes": [], + "instanceType": "AdministrableProduct" + } + ], + "medicalDevices": [], + "productOrganizationRoles": [], + "biomedicalConcepts": [ + { + "id": "BiomedicalConcept_20", + "extensionAttributes": [], + "name": "Sex", + "label": "Sex", + "synonyms": [], + "reference": "/mdr/bc/packages/2025-04-01/biomedicalconcepts/C28421", + "properties": [ + { + "id": "BiomedicalConceptProperty_130", + "extensionAttributes": [], + "name": "Sex", + "label": "Sex", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_174", + "extensionAttributes": [], + "name": "RC_C20197", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_482", + "extensionAttributes": [], + "code": "C20197", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Male", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_175", + "extensionAttributes": [], + "name": "RC_C16576", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_483", + "extensionAttributes": [], + "code": "C16576", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Female", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_173", + "extensionAttributes": [], + "standardCode": { + "id": "Code_484", + "extensionAttributes": [], + "code": "C28421", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Sex", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_131", + "extensionAttributes": [], + "name": "Collection Date Time", + "label": "Collection Date Time", + "isRequired": true, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_174", + "extensionAttributes": [], + "standardCode": { + "id": "Code_485", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_175", + "extensionAttributes": [], + "standardCode": { + "id": "Code_486", + "extensionAttributes": [], + "code": "C28421", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Sex", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_21", + "extensionAttributes": [], + "name": "Race", + "label": "Race", + "synonyms": ["Racial Group"], + "reference": "/mdr/bc/packages/2025-04-01/biomedicalconcepts/C17049", + "properties": [ + { + "id": "BiomedicalConceptProperty_132", + "extensionAttributes": [], + "name": "Race", + "label": "Race", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_176", + "extensionAttributes": [], + "standardCode": { + "id": "Code_487", + "extensionAttributes": [], + "code": "C17049", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Race", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_133", + "extensionAttributes": [], + "name": "Collection Date Time", + "label": "Collection Date Time", + "isRequired": true, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_177", + "extensionAttributes": [], + "standardCode": { + "id": "Code_488", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_178", + "extensionAttributes": [], + "standardCode": { + "id": "Code_489", + "extensionAttributes": [], + "code": "C17049", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Race", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_22", + "extensionAttributes": [], + "name": "Temperature", + "label": "Temperature", + "synonyms": ["Temperature", "Body Temperature"], + "reference": "/mdr/specializations/sdtm/packages/2024-12-16/datasetspecializations/TEMP", + "properties": [ + { + "id": "BiomedicalConceptProperty_134", + "extensionAttributes": [], + "name": "VSTESTCD", + "label": "VSTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_179", + "extensionAttributes": [], + "standardCode": { + "id": "Code_490", + "extensionAttributes": [], + "code": "C174446", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "TEMP", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_135", + "extensionAttributes": [], + "name": "VSORRES", + "label": "VSORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_180", + "extensionAttributes": [], + "standardCode": { + "id": "Code_491", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_136", + "extensionAttributes": [], + "name": "VSORRESU", + "label": "VSORRESU", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_176", + "extensionAttributes": [], + "name": "RC_C42559", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_492", + "extensionAttributes": [], + "code": "C42559", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Degree Celsius", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_177", + "extensionAttributes": [], + "name": "RC_C44277", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_493", + "extensionAttributes": [], + "code": "C44277", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Degree Fahrenheit", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_178", + "extensionAttributes": [], + "name": "RC_C42537", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_494", + "extensionAttributes": [], + "code": "C42537", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Kelvin", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_181", + "extensionAttributes": [], + "standardCode": { + "id": "Code_495", + "extensionAttributes": [], + "code": "C44276", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Unit of Temperature", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_137", + "extensionAttributes": [], + "name": "VSLOC", + "label": "VSLOC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_179", + "extensionAttributes": [], + "name": "RC_C12674", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_496", + "extensionAttributes": [], + "code": "C12674", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Axilla", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_180", + "extensionAttributes": [], + "name": "RC_C12394", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_497", + "extensionAttributes": [], + "code": "C12394", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Ear", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_181", + "extensionAttributes": [], + "name": "RC_C89803", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_498", + "extensionAttributes": [], + "code": "C89803", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Forehead", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_182", + "extensionAttributes": [], + "name": "RC_C12421", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_499", + "extensionAttributes": [], + "code": "C12421", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Oral Cavity", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_183", + "extensionAttributes": [], + "name": "RC_C12390", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_500", + "extensionAttributes": [], + "code": "C12390", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Rectum", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_182", + "extensionAttributes": [], + "standardCode": { + "id": "Code_501", + "extensionAttributes": [], + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Anatomic Site", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_138", + "extensionAttributes": [], + "name": "VSDTC", + "label": "VSDTC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_183", + "extensionAttributes": [], + "standardCode": { + "id": "Code_502", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_184", + "extensionAttributes": [], + "standardCode": { + "id": "Code_503", + "extensionAttributes": [], + "code": "C174446", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "TEMP", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_23", + "extensionAttributes": [], + "name": "Weight", + "label": "Weight", + "synonyms": ["WEIGHT", "Body Weight"], + "reference": "/mdr/specializations/sdtm/packages/2024-12-16/datasetspecializations/WEIGHT", + "properties": [ + { + "id": "BiomedicalConceptProperty_139", + "extensionAttributes": [], + "name": "VSTESTCD", + "label": "VSTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_185", + "extensionAttributes": [], + "standardCode": { + "id": "Code_504", + "extensionAttributes": [], + "code": "C25208", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "WEIGHT", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_140", + "extensionAttributes": [], + "name": "VSORRES", + "label": "VSORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_186", + "extensionAttributes": [], + "standardCode": { + "id": "Code_505", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_141", + "extensionAttributes": [], + "name": "VSORRESU", + "label": "VSORRESU", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_184", + "extensionAttributes": [], + "name": "RC_C48531", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_506", + "extensionAttributes": [], + "code": "C48531", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Pound", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_185", + "extensionAttributes": [], + "name": "RC_C48155", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_507", + "extensionAttributes": [], + "code": "C48155", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Gram", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_186", + "extensionAttributes": [], + "name": "RC_C28252", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_508", + "extensionAttributes": [], + "code": "C28252", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Kilogram", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_187", + "extensionAttributes": [], + "standardCode": { + "id": "Code_509", + "extensionAttributes": [], + "code": "C48208", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Unit of Weight", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_142", + "extensionAttributes": [], + "name": "VSDTC", + "label": "VSDTC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_188", + "extensionAttributes": [], + "standardCode": { + "id": "Code_510", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_189", + "extensionAttributes": [], + "standardCode": { + "id": "Code_511", + "extensionAttributes": [], + "code": "C25208", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "WEIGHT", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_24", + "extensionAttributes": [], + "name": "Height", + "label": "Height", + "synonyms": ["HEIGHT", "Body Height"], + "reference": "/mdr/specializations/sdtm/packages/2024-12-16/datasetspecializations/HEIGHT", + "properties": [ + { + "id": "BiomedicalConceptProperty_143", + "extensionAttributes": [], + "name": "VSTESTCD", + "label": "VSTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_190", + "extensionAttributes": [], + "standardCode": { + "id": "Code_512", + "extensionAttributes": [], + "code": "C25347", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "HEIGHT", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_144", + "extensionAttributes": [], + "name": "VSORRES", + "label": "VSORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_191", + "extensionAttributes": [], + "standardCode": { + "id": "Code_513", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_145", + "extensionAttributes": [], + "name": "VSORRESU", + "label": "VSORRESU", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_187", + "extensionAttributes": [], + "name": "RC_C49668", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_514", + "extensionAttributes": [], + "code": "C49668", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Centimeter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_188", + "extensionAttributes": [], + "name": "RC_C48500", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_515", + "extensionAttributes": [], + "code": "C48500", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Inch", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_189", + "extensionAttributes": [], + "name": "RC_C41139", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_516", + "extensionAttributes": [], + "code": "C41139", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Meter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_192", + "extensionAttributes": [], + "standardCode": { + "id": "Code_517", + "extensionAttributes": [], + "code": "C168688", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Unit of Height", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_146", + "extensionAttributes": [], + "name": "VSDTC", + "label": "VSDTC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_193", + "extensionAttributes": [], + "standardCode": { + "id": "Code_518", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_194", + "extensionAttributes": [], + "standardCode": { + "id": "Code_519", + "extensionAttributes": [], + "code": "C25347", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "HEIGHT", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_25", + "extensionAttributes": [], + "name": "Alanine Aminotransferase Concentration in Serum/Plasma", + "label": "Alanine Aminotransferase Concentration in Serum/Plasma", + "synonyms": ["ALT", "SGPT", "Alanine Aminotransferase Measurement"], + "reference": "/mdr/specializations/sdtm/packages/2025-04-01/datasetspecializations/ALTSERPL", + "properties": [ + { + "id": "BiomedicalConceptProperty_147", + "extensionAttributes": [], + "name": "LBTESTCD", + "label": "LBTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_195", + "extensionAttributes": [], + "standardCode": { + "id": "Code_520", + "extensionAttributes": [], + "code": "C64433", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "ALT", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_148", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_196", + "extensionAttributes": [], + "standardCode": { + "id": "Code_521", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_149", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_190", + "extensionAttributes": [], + "name": "RC_C67456", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_522", + "extensionAttributes": [], + "code": "C67456", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Unit per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_191", + "extensionAttributes": [], + "name": "RC_C67397", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_523", + "extensionAttributes": [], + "code": "C67397", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Microkatal per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_192", + "extensionAttributes": [], + "name": "RC_C67376", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_524", + "extensionAttributes": [], + "code": "C67376", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "International Unit per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_193", + "extensionAttributes": [], + "name": "RC_C70510", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_525", + "extensionAttributes": [], + "code": "C70510", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Nanokatal per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_197", + "extensionAttributes": [], + "standardCode": { + "id": "Code_526", + "extensionAttributes": [], + "code": "C67365", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Unit of Catalytic Activity Concentration", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_150", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_198", + "extensionAttributes": [], + "standardCode": { + "id": "Code_527", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_151", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_194", + "extensionAttributes": [], + "name": "RC_C49487", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_528", + "extensionAttributes": [], + "code": "C49487", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "No", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_195", + "extensionAttributes": [], + "name": "RC_C49488", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_529", + "extensionAttributes": [], + "code": "C49488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Yes", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_199", + "extensionAttributes": [], + "standardCode": { + "id": "Code_530", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_200", + "extensionAttributes": [], + "standardCode": { + "id": "Code_531", + "extensionAttributes": [], + "code": "C64433", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "ALT", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_26", + "extensionAttributes": [], + "name": "Albumin Presence in Urine", + "label": "Albumin Presence in Urine", + "synonyms": ["Albumin", "Albumin Measurement"], + "reference": "/mdr/specializations/sdtm/packages/2025-04-01/datasetspecializations/ALBURINPRES", + "properties": [ + { + "id": "BiomedicalConceptProperty_152", + "extensionAttributes": [], + "name": "LBTESTCD", + "label": "LBTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_201", + "extensionAttributes": [], + "standardCode": { + "id": "Code_532", + "extensionAttributes": [], + "code": "C64431", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "ALB", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_153", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_202", + "extensionAttributes": [], + "standardCode": { + "id": "Code_533", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_154", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_203", + "extensionAttributes": [], + "standardCode": { + "id": "Code_534", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_155", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_196", + "extensionAttributes": [], + "name": "RC_C49487", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_535", + "extensionAttributes": [], + "code": "C49487", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "No", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_197", + "extensionAttributes": [], + "name": "RC_C49488", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_536", + "extensionAttributes": [], + "code": "C49488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Yes", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_204", + "extensionAttributes": [], + "standardCode": { + "id": "Code_537", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_205", + "extensionAttributes": [], + "standardCode": { + "id": "Code_538", + "extensionAttributes": [], + "code": "C64431", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "ALB", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_27", + "extensionAttributes": [], + "name": "Alkaline Phosphatase Concentration in Serum/Plasma", + "label": "Alkaline Phosphatase Concentration in Serum/Plasma", + "synonyms": [ + "Alkaline Phosphatase", + "Alkaline Phosphatase Measurement" + ], + "reference": "/mdr/specializations/sdtm/packages/2025-04-01/datasetspecializations/ALPSERPL", + "properties": [ + { + "id": "BiomedicalConceptProperty_156", + "extensionAttributes": [], + "name": "LBTESTCD", + "label": "LBTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_206", + "extensionAttributes": [], + "standardCode": { + "id": "Code_539", + "extensionAttributes": [], + "code": "C64432", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "ALP", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_157", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_207", + "extensionAttributes": [], + "standardCode": { + "id": "Code_540", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_158", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_198", + "extensionAttributes": [], + "name": "RC_C67456", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_541", + "extensionAttributes": [], + "code": "C67456", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Unit per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_199", + "extensionAttributes": [], + "name": "RC_C67397", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_542", + "extensionAttributes": [], + "code": "C67397", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Microkatal per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_200", + "extensionAttributes": [], + "name": "RC_C67376", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_543", + "extensionAttributes": [], + "code": "C67376", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "International Unit per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_208", + "extensionAttributes": [], + "standardCode": { + "id": "Code_544", + "extensionAttributes": [], + "code": "C67365", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Unit of Catalytic Activity Concentration", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_159", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_209", + "extensionAttributes": [], + "standardCode": { + "id": "Code_545", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_160", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_201", + "extensionAttributes": [], + "name": "RC_C49487", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_546", + "extensionAttributes": [], + "code": "C49487", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "No", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_202", + "extensionAttributes": [], + "name": "RC_C49488", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_547", + "extensionAttributes": [], + "code": "C49488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Yes", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_210", + "extensionAttributes": [], + "standardCode": { + "id": "Code_548", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_211", + "extensionAttributes": [], + "standardCode": { + "id": "Code_549", + "extensionAttributes": [], + "code": "C64432", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "ALP", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_28", + "extensionAttributes": [], + "name": "Aspartate Aminotransferase in Serum/Plasma", + "label": "Aspartate Aminotransferase in Serum/Plasma", + "synonyms": [ + "AST", + "SGOT", + "Aspartate Aminotransferase Measurement" + ], + "reference": "/mdr/specializations/sdtm/packages/2025-04-01/datasetspecializations/ASTSERPL", + "properties": [ + { + "id": "BiomedicalConceptProperty_161", + "extensionAttributes": [], + "name": "LBTESTCD", + "label": "LBTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_212", + "extensionAttributes": [], + "standardCode": { + "id": "Code_550", + "extensionAttributes": [], + "code": "C64467", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "AST", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_162", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_213", + "extensionAttributes": [], + "standardCode": { + "id": "Code_551", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_163", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_203", + "extensionAttributes": [], + "name": "RC_C67456", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_552", + "extensionAttributes": [], + "code": "C67456", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Unit per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_204", + "extensionAttributes": [], + "name": "RC_C67397", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_553", + "extensionAttributes": [], + "code": "C67397", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Microkatal per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_205", + "extensionAttributes": [], + "name": "RC_C67376", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_554", + "extensionAttributes": [], + "code": "C67376", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "International Unit per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_214", + "extensionAttributes": [], + "standardCode": { + "id": "Code_555", + "extensionAttributes": [], + "code": "C67365", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Unit of Catalytic Activity Concentration", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_164", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_215", + "extensionAttributes": [], + "standardCode": { + "id": "Code_556", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_165", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_206", + "extensionAttributes": [], + "name": "RC_C49487", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_557", + "extensionAttributes": [], + "code": "C49487", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "No", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_207", + "extensionAttributes": [], + "name": "RC_C49488", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_558", + "extensionAttributes": [], + "code": "C49488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Yes", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_216", + "extensionAttributes": [], + "standardCode": { + "id": "Code_559", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_217", + "extensionAttributes": [], + "standardCode": { + "id": "Code_560", + "extensionAttributes": [], + "code": "C64467", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "AST", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_29", + "extensionAttributes": [], + "name": "Creatinine Concentration in Urine", + "label": "Creatinine Concentration in Urine", + "synonyms": ["Creatinine", "Creatinine Measurement"], + "reference": "/mdr/specializations/sdtm/packages/2025-04-01/datasetspecializations/CREATURIN", + "properties": [ + { + "id": "BiomedicalConceptProperty_166", + "extensionAttributes": [], + "name": "LBTESTCD", + "label": "LBTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_218", + "extensionAttributes": [], + "standardCode": { + "id": "Code_561", + "extensionAttributes": [], + "code": "C64547", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "CREAT", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_167", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_219", + "extensionAttributes": [], + "standardCode": { + "id": "Code_562", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_168", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_208", + "extensionAttributes": [], + "name": "RC_C67015", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_563", + "extensionAttributes": [], + "code": "C67015", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Milligram per Deciliter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_209", + "extensionAttributes": [], + "name": "RC_C64572", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_564", + "extensionAttributes": [], + "code": "C64572", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Microgram per Milliliter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_210", + "extensionAttributes": [], + "name": "RC_C64387", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_565", + "extensionAttributes": [], + "code": "C64387", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Millimole per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_211", + "extensionAttributes": [], + "name": "RC_C48508", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_566", + "extensionAttributes": [], + "code": "C48508", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Micromole per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_220", + "extensionAttributes": [], + "standardCode": { + "id": "Code_567", + "extensionAttributes": [], + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Unit of Concentration", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_169", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_221", + "extensionAttributes": [], + "standardCode": { + "id": "Code_568", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_170", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_212", + "extensionAttributes": [], + "name": "RC_C49487", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_569", + "extensionAttributes": [], + "code": "C49487", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "No", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_213", + "extensionAttributes": [], + "name": "RC_C49488", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_570", + "extensionAttributes": [], + "code": "C49488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Yes", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_222", + "extensionAttributes": [], + "standardCode": { + "id": "Code_571", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_223", + "extensionAttributes": [], + "standardCode": { + "id": "Code_572", + "extensionAttributes": [], + "code": "C64547", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "CREAT", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_30", + "extensionAttributes": [], + "name": "Potassium Concentration in Urine", + "label": "Potassium Concentration in Urine", + "synonyms": ["Potassium", "K", "Potassium Measurement"], + "reference": "/mdr/specializations/sdtm/packages/2025-04-01/datasetspecializations/KURIN", + "properties": [ + { + "id": "BiomedicalConceptProperty_171", + "extensionAttributes": [], + "name": "LBTESTCD", + "label": "LBTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_224", + "extensionAttributes": [], + "standardCode": { + "id": "Code_573", + "extensionAttributes": [], + "code": "C64853", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "K", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_172", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_225", + "extensionAttributes": [], + "standardCode": { + "id": "Code_574", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_173", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_214", + "extensionAttributes": [], + "name": "RC_C67474", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_575", + "extensionAttributes": [], + "code": "C67474", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Milliequivalent per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_215", + "extensionAttributes": [], + "name": "RC_C67473", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_576", + "extensionAttributes": [], + "code": "C67473", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Milliequivalent per Deciliter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_216", + "extensionAttributes": [], + "name": "RC_C64387", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_577", + "extensionAttributes": [], + "code": "C64387", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Millimole per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_226", + "extensionAttributes": [], + "standardCode": { + "id": "Code_578", + "extensionAttributes": [], + "code": "C64567", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Molarity Unit", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_174", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_227", + "extensionAttributes": [], + "standardCode": { + "id": "Code_579", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_175", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_217", + "extensionAttributes": [], + "name": "RC_C49487", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_580", + "extensionAttributes": [], + "code": "C49487", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "No", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_218", + "extensionAttributes": [], + "name": "RC_C49488", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_581", + "extensionAttributes": [], + "code": "C49488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Yes", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_228", + "extensionAttributes": [], + "standardCode": { + "id": "Code_582", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_229", + "extensionAttributes": [], + "standardCode": { + "id": "Code_583", + "extensionAttributes": [], + "code": "C64853", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "K", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_31", + "extensionAttributes": [], + "name": "Sodium Concentration in Urine", + "label": "Sodium Concentration in Urine", + "synonyms": ["Sodium", "NA", "Sodium Measurement"], + "reference": "/mdr/specializations/sdtm/packages/2025-04-01/datasetspecializations/SODIUMURIN", + "properties": [ + { + "id": "BiomedicalConceptProperty_176", + "extensionAttributes": [], + "name": "LBTESTCD", + "label": "LBTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_230", + "extensionAttributes": [], + "standardCode": { + "id": "Code_584", + "extensionAttributes": [], + "code": "C64809", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "SODIUM", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_177", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_231", + "extensionAttributes": [], + "standardCode": { + "id": "Code_585", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_178", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_219", + "extensionAttributes": [], + "name": "RC_C67474", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_586", + "extensionAttributes": [], + "code": "C67474", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Milliequivalent per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_220", + "extensionAttributes": [], + "name": "RC_C67473", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_587", + "extensionAttributes": [], + "code": "C67473", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Milliequivalent per Deciliter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_221", + "extensionAttributes": [], + "name": "RC_C64387", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_588", + "extensionAttributes": [], + "code": "C64387", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Millimole per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_232", + "extensionAttributes": [], + "standardCode": { + "id": "Code_589", + "extensionAttributes": [], + "code": "C64567", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Molarity Unit", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_179", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_233", + "extensionAttributes": [], + "standardCode": { + "id": "Code_590", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_180", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_222", + "extensionAttributes": [], + "name": "RC_C49487", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_591", + "extensionAttributes": [], + "code": "C49487", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "No", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_223", + "extensionAttributes": [], + "name": "RC_C49488", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_592", + "extensionAttributes": [], + "code": "C49488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Yes", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_234", + "extensionAttributes": [], + "standardCode": { + "id": "Code_593", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_235", + "extensionAttributes": [], + "standardCode": { + "id": "Code_594", + "extensionAttributes": [], + "code": "C64809", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "SODIUM", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_32", + "extensionAttributes": [], + "name": "Hemoglobin A1C Concentration in Blood", + "label": "Hemoglobin A1C Concentration in Blood", + "synonyms": [ + "Hemoglobin A1C", + "HBA1C", + "Glycosylated Hemoglobin A1C", + "Hemoglobin A1C Measurement" + ], + "reference": "/mdr/specializations/sdtm/packages/2025-04-01/datasetspecializations/HBA1CBLD", + "properties": [ + { + "id": "BiomedicalConceptProperty_181", + "extensionAttributes": [], + "name": "LBTESTCD", + "label": "LBTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_236", + "extensionAttributes": [], + "standardCode": { + "id": "Code_595", + "extensionAttributes": [], + "code": "C64849", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "HBA1C", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_182", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_237", + "extensionAttributes": [], + "standardCode": { + "id": "Code_596", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_183", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_224", + "extensionAttributes": [], + "name": "RC_C64783", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_597", + "extensionAttributes": [], + "code": "C64783", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Gram per Deciliter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_238", + "extensionAttributes": [], + "standardCode": { + "id": "Code_598", + "extensionAttributes": [], + "code": "No Concept Code 1", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "LBORRESU", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_184", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_239", + "extensionAttributes": [], + "standardCode": { + "id": "Code_599", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_185", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_225", + "extensionAttributes": [], + "name": "RC_C49487", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_600", + "extensionAttributes": [], + "code": "C49487", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "No", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_226", + "extensionAttributes": [], + "name": "RC_C49488", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_601", + "extensionAttributes": [], + "code": "C49488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Yes", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_240", + "extensionAttributes": [], + "standardCode": { + "id": "Code_602", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_241", + "extensionAttributes": [], + "standardCode": { + "id": "Code_603", + "extensionAttributes": [], + "code": "C64849", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "HBA1C", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_1", + "extensionAttributes": [], + "name": "Adverse Event Prespecified", + "label": "Adverse Event Prespecified", + "synonyms": ["Adverse Event", "Solicited Adverse Event"], + "reference": "/mdr/specializations/sdtm/packages/2025-04-01/datasetspecializations/AEPRESP", + "properties": [ + { + "id": "BiomedicalConceptProperty_1", + "extensionAttributes": [], + "name": "AETERM", + "label": "AETERM", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_25", + "extensionAttributes": [], + "standardCode": { + "id": "Code_161", + "extensionAttributes": [], + "code": "C78541", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Adverse Event Verbatim Description", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_2", + "extensionAttributes": [], + "name": "AEDECOD", + "label": "AEDECOD", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_26", + "extensionAttributes": [], + "standardCode": { + "id": "Code_162", + "extensionAttributes": [], + "code": "C83344", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Adverse Event Dictionary Derived Term", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_3", + "extensionAttributes": [], + "name": "AEHLGT", + "label": "AEHLGT", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_27", + "extensionAttributes": [], + "standardCode": { + "id": "Code_163", + "extensionAttributes": [], + "code": "No Concept Code 2", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "AEHLGT", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_4", + "extensionAttributes": [], + "name": "AEHLGTCD", + "label": "AEHLGTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "integer", + "responseCodes": [], + "code": { + "id": "AliasCode_28", + "extensionAttributes": [], + "standardCode": { + "id": "Code_164", + "extensionAttributes": [], + "code": "No Concept Code 3", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "AEHLGTCD", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_5", + "extensionAttributes": [], + "name": "AEPRESP", + "label": "AEPRESP", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_1", + "extensionAttributes": [], + "name": "RC_C49488", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_165", + "extensionAttributes": [], + "code": "C49488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Yes", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_29", + "extensionAttributes": [], + "standardCode": { + "id": "Code_166", + "extensionAttributes": [], + "code": "C87840", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Adverse Event Pre-specified", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_6", + "extensionAttributes": [], + "name": "AELOC", + "label": "AELOC", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_30", + "extensionAttributes": [], + "standardCode": { + "id": "Code_167", + "extensionAttributes": [], + "code": "C83205", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Adverse Event Location", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_7", + "extensionAttributes": [], + "name": "AESEV", + "label": "AESEV", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_31", + "extensionAttributes": [], + "standardCode": { + "id": "Code_168", + "extensionAttributes": [], + "code": "C53253", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Severity of Adverse Event", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_8", + "extensionAttributes": [], + "name": "AESER", + "label": "AESER", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_2", + "extensionAttributes": [], + "name": "RC_C49487", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_169", + "extensionAttributes": [], + "code": "C49487", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "No", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_3", + "extensionAttributes": [], + "name": "RC_C49488", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_170", + "extensionAttributes": [], + "code": "C49488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Yes", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_32", + "extensionAttributes": [], + "standardCode": { + "id": "Code_171", + "extensionAttributes": [], + "code": "C53252", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Seriousness of Adverse Event", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_9", + "extensionAttributes": [], + "name": "AEACN", + "label": "AEACN", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_33", + "extensionAttributes": [], + "standardCode": { + "id": "Code_172", + "extensionAttributes": [], + "code": "C83013", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Adverse Event Action Taken with Study Treatment", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_10", + "extensionAttributes": [], + "name": "AEACNOTH", + "label": "AEACNOTH", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_34", + "extensionAttributes": [], + "standardCode": { + "id": "Code_173", + "extensionAttributes": [], + "code": "C83109", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Other Actions taken in Response to Adverse Event", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_11", + "extensionAttributes": [], + "name": "AEREL", + "label": "AEREL", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_35", + "extensionAttributes": [], + "standardCode": { + "id": "Code_174", + "extensionAttributes": [], + "code": "C41358", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Adverse Event Attribution to Product or Procedure", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_12", + "extensionAttributes": [], + "name": "AERELNST", + "label": "AERELNST", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_36", + "extensionAttributes": [], + "standardCode": { + "id": "Code_175", + "extensionAttributes": [], + "code": "C83210", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Adverse Event Relationship to Non Study Treatment", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_13", + "extensionAttributes": [], + "name": "AEPATT", + "label": "AEPATT", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_37", + "extensionAttributes": [], + "standardCode": { + "id": "Code_176", + "extensionAttributes": [], + "code": "C83208", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Adverse Event Pattern", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_14", + "extensionAttributes": [], + "name": "AEOUT", + "label": "AEOUT", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38", + "extensionAttributes": [], + "standardCode": { + "id": "Code_177", + "extensionAttributes": [], + "code": "C49489", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Adverse Event Outcome", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_15", + "extensionAttributes": [], + "name": "AESCAN", + "label": "AESCAN", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_4", + "extensionAttributes": [], + "name": "RC_C49487", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_178", + "extensionAttributes": [], + "code": "C49487", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "No", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_5", + "extensionAttributes": [], + "name": "RC_C49488", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_179", + "extensionAttributes": [], + "code": "C49488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Yes", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_39", + "extensionAttributes": [], + "standardCode": { + "id": "Code_180", + "extensionAttributes": [], + "code": "C83211", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Adverse Event Involves Cancer", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_16", + "extensionAttributes": [], + "name": "AESCONG", + "label": "AESCONG", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_6", + "extensionAttributes": [], + "name": "RC_C49487", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_181", + "extensionAttributes": [], + "code": "C49487", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "No", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_7", + "extensionAttributes": [], + "name": "RC_C49488", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_182", + "extensionAttributes": [], + "code": "C49488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Yes", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_40", + "extensionAttributes": [], + "standardCode": { + "id": "Code_183", + "extensionAttributes": [], + "code": "C83117", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Adverse Event Seriousness Due to Congenital Anomaly", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_17", + "extensionAttributes": [], + "name": "AESDISAB", + "label": "AESDISAB", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_8", + "extensionAttributes": [], + "name": "RC_C49487", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_184", + "extensionAttributes": [], + "code": "C49487", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "No", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_9", + "extensionAttributes": [], + "name": "RC_C49488", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_185", + "extensionAttributes": [], + "code": "C49488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Yes", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_41", + "extensionAttributes": [], + "standardCode": { + "id": "Code_186", + "extensionAttributes": [], + "code": "C113380", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Disabling Adverse Event", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_18", + "extensionAttributes": [], + "name": "AESDTH", + "label": "AESDTH", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_10", + "extensionAttributes": [], + "name": "RC_C49487", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_187", + "extensionAttributes": [], + "code": "C49487", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "No", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_11", + "extensionAttributes": [], + "name": "RC_C49488", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_188", + "extensionAttributes": [], + "code": "C49488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Yes", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_42", + "extensionAttributes": [], + "standardCode": { + "id": "Code_189", + "extensionAttributes": [], + "code": "C48275", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Death Related to Adverse Event", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_19", + "extensionAttributes": [], + "name": "AESHOSP", + "label": "AESHOSP", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_12", + "extensionAttributes": [], + "name": "RC_C49487", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_190", + "extensionAttributes": [], + "code": "C49487", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "No", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_13", + "extensionAttributes": [], + "name": "RC_C49488", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_191", + "extensionAttributes": [], + "code": "C49488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Yes", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_43", + "extensionAttributes": [], + "standardCode": { + "id": "Code_192", + "extensionAttributes": [], + "code": "C83052", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Adverse Event associated with Hospitalization", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_20", + "extensionAttributes": [], + "name": "AESLIFE", + "label": "AESLIFE", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_14", + "extensionAttributes": [], + "name": "RC_C49487", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_193", + "extensionAttributes": [], + "code": "C49487", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "No", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_15", + "extensionAttributes": [], + "name": "RC_C49488", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_194", + "extensionAttributes": [], + "code": "C49488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Yes", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_44", + "extensionAttributes": [], + "standardCode": { + "id": "Code_195", + "extensionAttributes": [], + "code": "C84266", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Life Threatening Adverse Event", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_21", + "extensionAttributes": [], + "name": "AESOD", + "label": "AESOD", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_16", + "extensionAttributes": [], + "name": "RC_C49487", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_196", + "extensionAttributes": [], + "code": "C49487", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "No", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_17", + "extensionAttributes": [], + "name": "RC_C49488", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_197", + "extensionAttributes": [], + "code": "C49488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Yes", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_45", + "extensionAttributes": [], + "standardCode": { + "id": "Code_198", + "extensionAttributes": [], + "code": "C83214", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Adverse Event Occurred with Overdose", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_22", + "extensionAttributes": [], + "name": "AESMIE", + "label": "AESMIE", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_18", + "extensionAttributes": [], + "name": "RC_C49487", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_199", + "extensionAttributes": [], + "code": "C49487", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "No", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_19", + "extensionAttributes": [], + "name": "RC_C49488", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_200", + "extensionAttributes": [], + "code": "C49488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Yes", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_46", + "extensionAttributes": [], + "standardCode": { + "id": "Code_201", + "extensionAttributes": [], + "code": "C83053", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Adverse Event Associated with Serious Medical Event", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_23", + "extensionAttributes": [], + "name": "AECONTRT", + "label": "AECONTRT", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_20", + "extensionAttributes": [], + "name": "RC_C49487", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_202", + "extensionAttributes": [], + "code": "C49487", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "No", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_21", + "extensionAttributes": [], + "name": "RC_C49488", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_203", + "extensionAttributes": [], + "code": "C49488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Yes", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_47", + "extensionAttributes": [], + "standardCode": { + "id": "Code_204", + "extensionAttributes": [], + "code": "C83199", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Adverse Event Concomitant Treatment", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_24", + "extensionAttributes": [], + "name": "AETOXGR", + "label": "AETOXGR", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_48", + "extensionAttributes": [], + "standardCode": { + "id": "Code_205", + "extensionAttributes": [], + "code": "C78605", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Adverse Event Toxicity Grade", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_25", + "extensionAttributes": [], + "name": "AESTDTC", + "label": "AESTDTC", + "isRequired": true, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_49", + "extensionAttributes": [], + "standardCode": { + "id": "Code_206", + "extensionAttributes": [], + "code": "C83215", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Adverse Event Start Date Time", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_26", + "extensionAttributes": [], + "name": "AEENDTC", + "label": "AEENDTC", + "isRequired": true, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_50", + "extensionAttributes": [], + "standardCode": { + "id": "Code_207", + "extensionAttributes": [], + "code": "C83201", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Adverse Event End Date Time", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_51", + "extensionAttributes": [], + "standardCode": { + "id": "Code_208", + "extensionAttributes": [], + "code": "C179175", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Solicited Adverse Event", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_2", + "extensionAttributes": [], + "name": "Systolic Blood Pressure", + "label": "Systolic Blood Pressure", + "synonyms": ["SYSBP", "Systolic Blood Pressure"], + "reference": "/mdr/specializations/sdtm/packages/2025-04-01/datasetspecializations/SYSBP", + "properties": [ + { + "id": "BiomedicalConceptProperty_27", + "extensionAttributes": [], + "name": "VSTESTCD", + "label": "VSTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_52", + "extensionAttributes": [], + "standardCode": { + "id": "Code_209", + "extensionAttributes": [], + "code": "C25298", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "SYSBP", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_28", + "extensionAttributes": [], + "name": "VSORRES", + "label": "VSORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "integer", + "responseCodes": [], + "code": { + "id": "AliasCode_53", + "extensionAttributes": [], + "standardCode": { + "id": "Code_210", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_29", + "extensionAttributes": [], + "name": "VSORRESU", + "label": "VSORRESU", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_54", + "extensionAttributes": [], + "standardCode": { + "id": "Code_211", + "extensionAttributes": [], + "code": "C49669", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Unit of Pressure", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_30", + "extensionAttributes": [], + "name": "VSPOS", + "label": "VSPOS", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_22", + "extensionAttributes": [], + "name": "RC_C62165", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_212", + "extensionAttributes": [], + "code": "C62165", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Prone Position", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_23", + "extensionAttributes": [], + "name": "RC_C111310", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_213", + "extensionAttributes": [], + "code": "C111310", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Semi-Recumbent", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_24", + "extensionAttributes": [], + "name": "RC_C62122", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_214", + "extensionAttributes": [], + "code": "C62122", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Sitting", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_25", + "extensionAttributes": [], + "name": "RC_C62166", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_215", + "extensionAttributes": [], + "code": "C62166", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Standing", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_26", + "extensionAttributes": [], + "name": "RC_C62167", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_216", + "extensionAttributes": [], + "code": "C62167", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Supine Position", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_55", + "extensionAttributes": [], + "standardCode": { + "id": "Code_217", + "extensionAttributes": [], + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Body Position", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_31", + "extensionAttributes": [], + "name": "VSLOC", + "label": "VSLOC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_27", + "extensionAttributes": [], + "name": "RC_C12681", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_218", + "extensionAttributes": [], + "code": "C12681", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Brachial Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_28", + "extensionAttributes": [], + "name": "RC_C12687", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_219", + "extensionAttributes": [], + "code": "C12687", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Common Carotid Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_29", + "extensionAttributes": [], + "name": "RC_C32478", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_220", + "extensionAttributes": [], + "code": "C32478", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Dorsalis Pedis Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_30", + "extensionAttributes": [], + "name": "RC_C12715", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_221", + "extensionAttributes": [], + "code": "C12715", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Femoral Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_31", + "extensionAttributes": [], + "name": "RC_C32608", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_222", + "extensionAttributes": [], + "code": "C32608", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Finger", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_32", + "extensionAttributes": [], + "name": "RC_C12838", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_223", + "extensionAttributes": [], + "code": "C12838", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Radial Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_56", + "extensionAttributes": [], + "standardCode": { + "id": "Code_224", + "extensionAttributes": [], + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Anatomic Site", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_32", + "extensionAttributes": [], + "name": "VSLAT", + "label": "VSLAT", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_33", + "extensionAttributes": [], + "name": "RC_C25229", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_225", + "extensionAttributes": [], + "code": "C25229", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Left", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_34", + "extensionAttributes": [], + "name": "RC_C25228", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_226", + "extensionAttributes": [], + "code": "C25228", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Right", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_57", + "extensionAttributes": [], + "standardCode": { + "id": "Code_227", + "extensionAttributes": [], + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Laterality", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_33", + "extensionAttributes": [], + "name": "VSDTC", + "label": "VSDTC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_58", + "extensionAttributes": [], + "standardCode": { + "id": "Code_228", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_59", + "extensionAttributes": [], + "standardCode": { + "id": "Code_229", + "extensionAttributes": [], + "code": "C25298", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "SYSBP", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_3", + "extensionAttributes": [], + "name": "Diastolic Blood Pressure", + "label": "Diastolic Blood Pressure", + "synonyms": ["DIABP", "Diastolic Blood Pressure"], + "reference": "/mdr/specializations/sdtm/packages/2025-04-01/datasetspecializations/DIABP", + "properties": [ + { + "id": "BiomedicalConceptProperty_34", + "extensionAttributes": [], + "name": "VSTESTCD", + "label": "VSTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_60", + "extensionAttributes": [], + "standardCode": { + "id": "Code_230", + "extensionAttributes": [], + "code": "C25299", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "DIABP", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_35", + "extensionAttributes": [], + "name": "VSORRES", + "label": "VSORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "integer", + "responseCodes": [], + "code": { + "id": "AliasCode_61", + "extensionAttributes": [], + "standardCode": { + "id": "Code_231", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_36", + "extensionAttributes": [], + "name": "VSORRESU", + "label": "VSORRESU", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_62", + "extensionAttributes": [], + "standardCode": { + "id": "Code_232", + "extensionAttributes": [], + "code": "C49669", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Unit of Pressure", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_37", + "extensionAttributes": [], + "name": "VSPOS", + "label": "VSPOS", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_35", + "extensionAttributes": [], + "name": "RC_C62165", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_233", + "extensionAttributes": [], + "code": "C62165", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Prone Position", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_36", + "extensionAttributes": [], + "name": "RC_C111310", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_234", + "extensionAttributes": [], + "code": "C111310", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Semi-Recumbent", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_37", + "extensionAttributes": [], + "name": "RC_C62122", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_235", + "extensionAttributes": [], + "code": "C62122", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Sitting", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_38", + "extensionAttributes": [], + "name": "RC_C62166", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_236", + "extensionAttributes": [], + "code": "C62166", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Standing", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_39", + "extensionAttributes": [], + "name": "RC_C62167", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_237", + "extensionAttributes": [], + "code": "C62167", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Supine Position", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_63", + "extensionAttributes": [], + "standardCode": { + "id": "Code_238", + "extensionAttributes": [], + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Body Position", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_38", + "extensionAttributes": [], + "name": "VSLOC", + "label": "VSLOC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_40", + "extensionAttributes": [], + "name": "RC_C12681", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_239", + "extensionAttributes": [], + "code": "C12681", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Brachial Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_41", + "extensionAttributes": [], + "name": "RC_C12687", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_240", + "extensionAttributes": [], + "code": "C12687", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Common Carotid Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_42", + "extensionAttributes": [], + "name": "RC_C32478", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_241", + "extensionAttributes": [], + "code": "C32478", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Dorsalis Pedis Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_43", + "extensionAttributes": [], + "name": "RC_C12715", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_242", + "extensionAttributes": [], + "code": "C12715", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Femoral Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_44", + "extensionAttributes": [], + "name": "RC_C32608", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_243", + "extensionAttributes": [], + "code": "C32608", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Finger", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_45", + "extensionAttributes": [], + "name": "RC_C12838", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_244", + "extensionAttributes": [], + "code": "C12838", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Radial Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_64", + "extensionAttributes": [], + "standardCode": { + "id": "Code_245", + "extensionAttributes": [], + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Anatomic Site", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_39", + "extensionAttributes": [], + "name": "VSLAT", + "label": "VSLAT", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_46", + "extensionAttributes": [], + "name": "RC_C25229", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_246", + "extensionAttributes": [], + "code": "C25229", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Left", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_47", + "extensionAttributes": [], + "name": "RC_C25228", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_247", + "extensionAttributes": [], + "code": "C25228", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Right", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_65", + "extensionAttributes": [], + "standardCode": { + "id": "Code_248", + "extensionAttributes": [], + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Laterality", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_40", + "extensionAttributes": [], + "name": "VSDTC", + "label": "VSDTC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_66", + "extensionAttributes": [], + "standardCode": { + "id": "Code_249", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_67", + "extensionAttributes": [], + "standardCode": { + "id": "Code_250", + "extensionAttributes": [], + "code": "C25299", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "DIABP", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_4", + "extensionAttributes": [], + "name": "Temperature", + "label": "Temperature", + "synonyms": ["Temperature", "Body Temperature"], + "reference": "/mdr/specializations/sdtm/packages/2024-12-16/datasetspecializations/TEMP", + "properties": [ + { + "id": "BiomedicalConceptProperty_41", + "extensionAttributes": [], + "name": "VSTESTCD", + "label": "VSTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_68", + "extensionAttributes": [], + "standardCode": { + "id": "Code_251", + "extensionAttributes": [], + "code": "C174446", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "TEMP", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_42", + "extensionAttributes": [], + "name": "VSORRES", + "label": "VSORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_69", + "extensionAttributes": [], + "standardCode": { + "id": "Code_252", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_43", + "extensionAttributes": [], + "name": "VSORRESU", + "label": "VSORRESU", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_48", + "extensionAttributes": [], + "name": "RC_C42559", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_253", + "extensionAttributes": [], + "code": "C42559", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Degree Celsius", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_49", + "extensionAttributes": [], + "name": "RC_C44277", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_254", + "extensionAttributes": [], + "code": "C44277", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Degree Fahrenheit", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_50", + "extensionAttributes": [], + "name": "RC_C42537", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_255", + "extensionAttributes": [], + "code": "C42537", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Kelvin", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_70", + "extensionAttributes": [], + "standardCode": { + "id": "Code_256", + "extensionAttributes": [], + "code": "C44276", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Unit of Temperature", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_44", + "extensionAttributes": [], + "name": "VSLOC", + "label": "VSLOC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_51", + "extensionAttributes": [], + "name": "RC_C12674", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_257", + "extensionAttributes": [], + "code": "C12674", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Axilla", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_52", + "extensionAttributes": [], + "name": "RC_C12394", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_258", + "extensionAttributes": [], + "code": "C12394", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Ear", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_53", + "extensionAttributes": [], + "name": "RC_C89803", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_259", + "extensionAttributes": [], + "code": "C89803", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Forehead", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_54", + "extensionAttributes": [], + "name": "RC_C12421", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_260", + "extensionAttributes": [], + "code": "C12421", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Oral Cavity", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_55", + "extensionAttributes": [], + "name": "RC_C12390", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_261", + "extensionAttributes": [], + "code": "C12390", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Rectum", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_71", + "extensionAttributes": [], + "standardCode": { + "id": "Code_262", + "extensionAttributes": [], + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Anatomic Site", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_45", + "extensionAttributes": [], + "name": "VSDTC", + "label": "VSDTC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_72", + "extensionAttributes": [], + "standardCode": { + "id": "Code_263", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_73", + "extensionAttributes": [], + "standardCode": { + "id": "Code_264", + "extensionAttributes": [], + "code": "C174446", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "TEMP", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_5", + "extensionAttributes": [], + "name": "Weight", + "label": "Weight", + "synonyms": ["WEIGHT", "Body Weight"], + "reference": "/mdr/specializations/sdtm/packages/2024-12-16/datasetspecializations/WEIGHT", + "properties": [ + { + "id": "BiomedicalConceptProperty_46", + "extensionAttributes": [], + "name": "VSTESTCD", + "label": "VSTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_74", + "extensionAttributes": [], + "standardCode": { + "id": "Code_265", + "extensionAttributes": [], + "code": "C25208", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "WEIGHT", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_47", + "extensionAttributes": [], + "name": "VSORRES", + "label": "VSORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_75", + "extensionAttributes": [], + "standardCode": { + "id": "Code_266", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_48", + "extensionAttributes": [], + "name": "VSORRESU", + "label": "VSORRESU", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_56", + "extensionAttributes": [], + "name": "RC_C48531", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_267", + "extensionAttributes": [], + "code": "C48531", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Pound", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_57", + "extensionAttributes": [], + "name": "RC_C48155", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_268", + "extensionAttributes": [], + "code": "C48155", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Gram", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_58", + "extensionAttributes": [], + "name": "RC_C28252", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_269", + "extensionAttributes": [], + "code": "C28252", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Kilogram", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_76", + "extensionAttributes": [], + "standardCode": { + "id": "Code_270", + "extensionAttributes": [], + "code": "C48208", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Unit of Weight", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_49", + "extensionAttributes": [], + "name": "VSDTC", + "label": "VSDTC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_77", + "extensionAttributes": [], + "standardCode": { + "id": "Code_271", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_78", + "extensionAttributes": [], + "standardCode": { + "id": "Code_272", + "extensionAttributes": [], + "code": "C25208", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "WEIGHT", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_6", + "extensionAttributes": [], + "name": "Height", + "label": "Height", + "synonyms": ["HEIGHT", "Body Height"], + "reference": "/mdr/specializations/sdtm/packages/2024-12-16/datasetspecializations/HEIGHT", + "properties": [ + { + "id": "BiomedicalConceptProperty_50", + "extensionAttributes": [], + "name": "VSTESTCD", + "label": "VSTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_79", + "extensionAttributes": [], + "standardCode": { + "id": "Code_273", + "extensionAttributes": [], + "code": "C25347", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "HEIGHT", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_51", + "extensionAttributes": [], + "name": "VSORRES", + "label": "VSORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_80", + "extensionAttributes": [], + "standardCode": { + "id": "Code_274", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_52", + "extensionAttributes": [], + "name": "VSORRESU", + "label": "VSORRESU", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_59", + "extensionAttributes": [], + "name": "RC_C49668", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_275", + "extensionAttributes": [], + "code": "C49668", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Centimeter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_60", + "extensionAttributes": [], + "name": "RC_C48500", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_276", + "extensionAttributes": [], + "code": "C48500", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Inch", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_61", + "extensionAttributes": [], + "name": "RC_C41139", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_277", + "extensionAttributes": [], + "code": "C41139", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Meter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_81", + "extensionAttributes": [], + "standardCode": { + "id": "Code_278", + "extensionAttributes": [], + "code": "C168688", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Unit of Height", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_53", + "extensionAttributes": [], + "name": "VSDTC", + "label": "VSDTC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_82", + "extensionAttributes": [], + "standardCode": { + "id": "Code_279", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_83", + "extensionAttributes": [], + "standardCode": { + "id": "Code_280", + "extensionAttributes": [], + "code": "C25347", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "HEIGHT", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_7", + "extensionAttributes": [], + "name": "Alanine Aminotransferase Concentration in Serum/Plasma", + "label": "Alanine Aminotransferase Concentration in Serum/Plasma", + "synonyms": ["ALT", "SGPT", "Alanine Aminotransferase Measurement"], + "reference": "/mdr/specializations/sdtm/packages/2025-04-01/datasetspecializations/ALTSERPL", + "properties": [ + { + "id": "BiomedicalConceptProperty_54", + "extensionAttributes": [], + "name": "LBTESTCD", + "label": "LBTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_84", + "extensionAttributes": [], + "standardCode": { + "id": "Code_281", + "extensionAttributes": [], + "code": "C64433", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "ALT", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_55", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_85", + "extensionAttributes": [], + "standardCode": { + "id": "Code_282", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_56", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_62", + "extensionAttributes": [], + "name": "RC_C67456", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_283", + "extensionAttributes": [], + "code": "C67456", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Unit per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_63", + "extensionAttributes": [], + "name": "RC_C67397", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_284", + "extensionAttributes": [], + "code": "C67397", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Microkatal per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_64", + "extensionAttributes": [], + "name": "RC_C67376", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_285", + "extensionAttributes": [], + "code": "C67376", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "International Unit per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_65", + "extensionAttributes": [], + "name": "RC_C70510", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_286", + "extensionAttributes": [], + "code": "C70510", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Nanokatal per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_86", + "extensionAttributes": [], + "standardCode": { + "id": "Code_287", + "extensionAttributes": [], + "code": "C67365", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Unit of Catalytic Activity Concentration", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_57", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_87", + "extensionAttributes": [], + "standardCode": { + "id": "Code_288", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_58", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_66", + "extensionAttributes": [], + "name": "RC_C49487", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_289", + "extensionAttributes": [], + "code": "C49487", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "No", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_67", + "extensionAttributes": [], + "name": "RC_C49488", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_290", + "extensionAttributes": [], + "code": "C49488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Yes", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_88", + "extensionAttributes": [], + "standardCode": { + "id": "Code_291", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_89", + "extensionAttributes": [], + "standardCode": { + "id": "Code_292", + "extensionAttributes": [], + "code": "C64433", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "ALT", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_8", + "extensionAttributes": [], + "name": "Albumin Presence in Urine", + "label": "Albumin Presence in Urine", + "synonyms": ["Albumin", "Albumin Measurement"], + "reference": "/mdr/specializations/sdtm/packages/2025-04-01/datasetspecializations/ALBURINPRES", + "properties": [ + { + "id": "BiomedicalConceptProperty_59", + "extensionAttributes": [], + "name": "LBTESTCD", + "label": "LBTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_90", + "extensionAttributes": [], + "standardCode": { + "id": "Code_293", + "extensionAttributes": [], + "code": "C64431", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "ALB", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_60", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_91", + "extensionAttributes": [], + "standardCode": { + "id": "Code_294", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_61", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_92", + "extensionAttributes": [], + "standardCode": { + "id": "Code_295", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_62", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_68", + "extensionAttributes": [], + "name": "RC_C49487", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_296", + "extensionAttributes": [], + "code": "C49487", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "No", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_69", + "extensionAttributes": [], + "name": "RC_C49488", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_297", + "extensionAttributes": [], + "code": "C49488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Yes", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_93", + "extensionAttributes": [], + "standardCode": { + "id": "Code_298", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_94", + "extensionAttributes": [], + "standardCode": { + "id": "Code_299", + "extensionAttributes": [], + "code": "C64431", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "ALB", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_9", + "extensionAttributes": [], + "name": "Alkaline Phosphatase Concentration in Serum/Plasma", + "label": "Alkaline Phosphatase Concentration in Serum/Plasma", + "synonyms": [ + "Alkaline Phosphatase", + "Alkaline Phosphatase Measurement" + ], + "reference": "/mdr/specializations/sdtm/packages/2025-04-01/datasetspecializations/ALPSERPL", + "properties": [ + { + "id": "BiomedicalConceptProperty_63", + "extensionAttributes": [], + "name": "LBTESTCD", + "label": "LBTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_95", + "extensionAttributes": [], + "standardCode": { + "id": "Code_300", + "extensionAttributes": [], + "code": "C64432", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "ALP", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_64", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_96", + "extensionAttributes": [], + "standardCode": { + "id": "Code_301", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_65", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_70", + "extensionAttributes": [], + "name": "RC_C67456", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_302", + "extensionAttributes": [], + "code": "C67456", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Unit per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_71", + "extensionAttributes": [], + "name": "RC_C67397", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_303", + "extensionAttributes": [], + "code": "C67397", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Microkatal per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_72", + "extensionAttributes": [], + "name": "RC_C67376", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_304", + "extensionAttributes": [], + "code": "C67376", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "International Unit per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_97", + "extensionAttributes": [], + "standardCode": { + "id": "Code_305", + "extensionAttributes": [], + "code": "C67365", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Unit of Catalytic Activity Concentration", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_66", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_98", + "extensionAttributes": [], + "standardCode": { + "id": "Code_306", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_67", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_73", + "extensionAttributes": [], + "name": "RC_C49487", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_307", + "extensionAttributes": [], + "code": "C49487", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "No", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_74", + "extensionAttributes": [], + "name": "RC_C49488", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_308", + "extensionAttributes": [], + "code": "C49488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Yes", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_99", + "extensionAttributes": [], + "standardCode": { + "id": "Code_309", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_100", + "extensionAttributes": [], + "standardCode": { + "id": "Code_310", + "extensionAttributes": [], + "code": "C64432", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "ALP", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_10", + "extensionAttributes": [], + "name": "Aspartate Aminotransferase in Serum/Plasma", + "label": "Aspartate Aminotransferase in Serum/Plasma", + "synonyms": [ + "AST", + "SGOT", + "Aspartate Aminotransferase Measurement" + ], + "reference": "/mdr/specializations/sdtm/packages/2025-04-01/datasetspecializations/ASTSERPL", + "properties": [ + { + "id": "BiomedicalConceptProperty_68", + "extensionAttributes": [], + "name": "LBTESTCD", + "label": "LBTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_101", + "extensionAttributes": [], + "standardCode": { + "id": "Code_311", + "extensionAttributes": [], + "code": "C64467", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "AST", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_69", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_102", + "extensionAttributes": [], + "standardCode": { + "id": "Code_312", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_70", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_75", + "extensionAttributes": [], + "name": "RC_C67456", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_313", + "extensionAttributes": [], + "code": "C67456", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Unit per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_76", + "extensionAttributes": [], + "name": "RC_C67397", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_314", + "extensionAttributes": [], + "code": "C67397", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Microkatal per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_77", + "extensionAttributes": [], + "name": "RC_C67376", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_315", + "extensionAttributes": [], + "code": "C67376", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "International Unit per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_103", + "extensionAttributes": [], + "standardCode": { + "id": "Code_316", + "extensionAttributes": [], + "code": "C67365", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Unit of Catalytic Activity Concentration", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_71", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_104", + "extensionAttributes": [], + "standardCode": { + "id": "Code_317", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_72", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_78", + "extensionAttributes": [], + "name": "RC_C49487", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_318", + "extensionAttributes": [], + "code": "C49487", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "No", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_79", + "extensionAttributes": [], + "name": "RC_C49488", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_319", + "extensionAttributes": [], + "code": "C49488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Yes", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_105", + "extensionAttributes": [], + "standardCode": { + "id": "Code_320", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_106", + "extensionAttributes": [], + "standardCode": { + "id": "Code_321", + "extensionAttributes": [], + "code": "C64467", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "AST", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_11", + "extensionAttributes": [], + "name": "Creatinine Concentration in Urine", + "label": "Creatinine Concentration in Urine", + "synonyms": ["Creatinine", "Creatinine Measurement"], + "reference": "/mdr/specializations/sdtm/packages/2025-04-01/datasetspecializations/CREATURIN", + "properties": [ + { + "id": "BiomedicalConceptProperty_73", + "extensionAttributes": [], + "name": "LBTESTCD", + "label": "LBTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_107", + "extensionAttributes": [], + "standardCode": { + "id": "Code_322", + "extensionAttributes": [], + "code": "C64547", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "CREAT", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_74", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_108", + "extensionAttributes": [], + "standardCode": { + "id": "Code_323", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_75", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_80", + "extensionAttributes": [], + "name": "RC_C67015", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_324", + "extensionAttributes": [], + "code": "C67015", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Milligram per Deciliter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_81", + "extensionAttributes": [], + "name": "RC_C64572", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_325", + "extensionAttributes": [], + "code": "C64572", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Microgram per Milliliter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_82", + "extensionAttributes": [], + "name": "RC_C64387", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_326", + "extensionAttributes": [], + "code": "C64387", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Millimole per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_83", + "extensionAttributes": [], + "name": "RC_C48508", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_327", + "extensionAttributes": [], + "code": "C48508", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Micromole per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_109", + "extensionAttributes": [], + "standardCode": { + "id": "Code_328", + "extensionAttributes": [], + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Unit of Concentration", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_76", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_110", + "extensionAttributes": [], + "standardCode": { + "id": "Code_329", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_77", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_84", + "extensionAttributes": [], + "name": "RC_C49487", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_330", + "extensionAttributes": [], + "code": "C49487", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "No", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_85", + "extensionAttributes": [], + "name": "RC_C49488", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_331", + "extensionAttributes": [], + "code": "C49488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Yes", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_111", + "extensionAttributes": [], + "standardCode": { + "id": "Code_332", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_112", + "extensionAttributes": [], + "standardCode": { + "id": "Code_333", + "extensionAttributes": [], + "code": "C64547", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "CREAT", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_12", + "extensionAttributes": [], + "name": "Potassium Concentration in Urine", + "label": "Potassium Concentration in Urine", + "synonyms": ["Potassium", "K", "Potassium Measurement"], + "reference": "/mdr/specializations/sdtm/packages/2025-04-01/datasetspecializations/KURIN", + "properties": [ + { + "id": "BiomedicalConceptProperty_78", + "extensionAttributes": [], + "name": "LBTESTCD", + "label": "LBTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_113", + "extensionAttributes": [], + "standardCode": { + "id": "Code_334", + "extensionAttributes": [], + "code": "C64853", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "K", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_79", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_114", + "extensionAttributes": [], + "standardCode": { + "id": "Code_335", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_80", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_86", + "extensionAttributes": [], + "name": "RC_C67474", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_336", + "extensionAttributes": [], + "code": "C67474", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Milliequivalent per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_87", + "extensionAttributes": [], + "name": "RC_C67473", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_337", + "extensionAttributes": [], + "code": "C67473", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Milliequivalent per Deciliter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_88", + "extensionAttributes": [], + "name": "RC_C64387", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_338", + "extensionAttributes": [], + "code": "C64387", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Millimole per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_115", + "extensionAttributes": [], + "standardCode": { + "id": "Code_339", + "extensionAttributes": [], + "code": "C64567", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Molarity Unit", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_81", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_116", + "extensionAttributes": [], + "standardCode": { + "id": "Code_340", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_82", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_89", + "extensionAttributes": [], + "name": "RC_C49487", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_341", + "extensionAttributes": [], + "code": "C49487", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "No", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_90", + "extensionAttributes": [], + "name": "RC_C49488", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_342", + "extensionAttributes": [], + "code": "C49488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Yes", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_117", + "extensionAttributes": [], + "standardCode": { + "id": "Code_343", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_118", + "extensionAttributes": [], + "standardCode": { + "id": "Code_344", + "extensionAttributes": [], + "code": "C64853", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "K", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_13", + "extensionAttributes": [], + "name": "Sodium Concentration in Urine", + "label": "Sodium Concentration in Urine", + "synonyms": ["Sodium", "NA", "Sodium Measurement"], + "reference": "/mdr/specializations/sdtm/packages/2025-04-01/datasetspecializations/SODIUMURIN", + "properties": [ + { + "id": "BiomedicalConceptProperty_83", + "extensionAttributes": [], + "name": "LBTESTCD", + "label": "LBTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_119", + "extensionAttributes": [], + "standardCode": { + "id": "Code_345", + "extensionAttributes": [], + "code": "C64809", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "SODIUM", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_84", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_120", + "extensionAttributes": [], + "standardCode": { + "id": "Code_346", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_85", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_91", + "extensionAttributes": [], + "name": "RC_C67474", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_347", + "extensionAttributes": [], + "code": "C67474", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Milliequivalent per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_92", + "extensionAttributes": [], + "name": "RC_C67473", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_348", + "extensionAttributes": [], + "code": "C67473", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Milliequivalent per Deciliter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_93", + "extensionAttributes": [], + "name": "RC_C64387", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_349", + "extensionAttributes": [], + "code": "C64387", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Millimole per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_121", + "extensionAttributes": [], + "standardCode": { + "id": "Code_350", + "extensionAttributes": [], + "code": "C64567", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Molarity Unit", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_86", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_122", + "extensionAttributes": [], + "standardCode": { + "id": "Code_351", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_87", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_94", + "extensionAttributes": [], + "name": "RC_C49487", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_352", + "extensionAttributes": [], + "code": "C49487", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "No", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_95", + "extensionAttributes": [], + "name": "RC_C49488", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_353", + "extensionAttributes": [], + "code": "C49488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Yes", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_123", + "extensionAttributes": [], + "standardCode": { + "id": "Code_354", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_124", + "extensionAttributes": [], + "standardCode": { + "id": "Code_355", + "extensionAttributes": [], + "code": "C64809", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "SODIUM", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_14", + "extensionAttributes": [], + "name": "Systolic Blood Pressure", + "label": "Systolic Blood Pressure", + "synonyms": ["SYSBP", "Systolic Blood Pressure"], + "reference": "/mdr/specializations/sdtm/packages/2025-04-01/datasetspecializations/SYSBP", + "properties": [ + { + "id": "BiomedicalConceptProperty_88", + "extensionAttributes": [], + "name": "VSTESTCD", + "label": "VSTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_125", + "extensionAttributes": [], + "standardCode": { + "id": "Code_356", + "extensionAttributes": [], + "code": "C25298", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "SYSBP", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_89", + "extensionAttributes": [], + "name": "VSORRES", + "label": "VSORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "integer", + "responseCodes": [], + "code": { + "id": "AliasCode_126", + "extensionAttributes": [], + "standardCode": { + "id": "Code_357", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_90", + "extensionAttributes": [], + "name": "VSORRESU", + "label": "VSORRESU", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_127", + "extensionAttributes": [], + "standardCode": { + "id": "Code_358", + "extensionAttributes": [], + "code": "C49669", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Unit of Pressure", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_91", + "extensionAttributes": [], + "name": "VSPOS", + "label": "VSPOS", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_96", + "extensionAttributes": [], + "name": "RC_C62165", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_359", + "extensionAttributes": [], + "code": "C62165", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Prone Position", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_97", + "extensionAttributes": [], + "name": "RC_C111310", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_360", + "extensionAttributes": [], + "code": "C111310", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Semi-Recumbent", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_98", + "extensionAttributes": [], + "name": "RC_C62122", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_361", + "extensionAttributes": [], + "code": "C62122", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Sitting", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_99", + "extensionAttributes": [], + "name": "RC_C62166", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_362", + "extensionAttributes": [], + "code": "C62166", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Standing", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_100", + "extensionAttributes": [], + "name": "RC_C62167", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_363", + "extensionAttributes": [], + "code": "C62167", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Supine Position", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_128", + "extensionAttributes": [], + "standardCode": { + "id": "Code_364", + "extensionAttributes": [], + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Body Position", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_92", + "extensionAttributes": [], + "name": "VSLOC", + "label": "VSLOC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_101", + "extensionAttributes": [], + "name": "RC_C12681", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_365", + "extensionAttributes": [], + "code": "C12681", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Brachial Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_102", + "extensionAttributes": [], + "name": "RC_C12687", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_366", + "extensionAttributes": [], + "code": "C12687", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Common Carotid Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_103", + "extensionAttributes": [], + "name": "RC_C32478", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_367", + "extensionAttributes": [], + "code": "C32478", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Dorsalis Pedis Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_104", + "extensionAttributes": [], + "name": "RC_C12715", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_368", + "extensionAttributes": [], + "code": "C12715", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Femoral Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_105", + "extensionAttributes": [], + "name": "RC_C32608", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_369", + "extensionAttributes": [], + "code": "C32608", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Finger", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_106", + "extensionAttributes": [], + "name": "RC_C12838", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_370", + "extensionAttributes": [], + "code": "C12838", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Radial Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_129", + "extensionAttributes": [], + "standardCode": { + "id": "Code_371", + "extensionAttributes": [], + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Anatomic Site", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_93", + "extensionAttributes": [], + "name": "VSLAT", + "label": "VSLAT", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_107", + "extensionAttributes": [], + "name": "RC_C25229", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_372", + "extensionAttributes": [], + "code": "C25229", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Left", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_108", + "extensionAttributes": [], + "name": "RC_C25228", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_373", + "extensionAttributes": [], + "code": "C25228", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Right", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_130", + "extensionAttributes": [], + "standardCode": { + "id": "Code_374", + "extensionAttributes": [], + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Laterality", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_94", + "extensionAttributes": [], + "name": "VSDTC", + "label": "VSDTC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_131", + "extensionAttributes": [], + "standardCode": { + "id": "Code_375", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_132", + "extensionAttributes": [], + "standardCode": { + "id": "Code_376", + "extensionAttributes": [], + "code": "C25298", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "SYSBP", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_15", + "extensionAttributes": [], + "name": "Diastolic Blood Pressure", + "label": "Diastolic Blood Pressure", + "synonyms": ["DIABP", "Diastolic Blood Pressure"], + "reference": "/mdr/specializations/sdtm/packages/2025-04-01/datasetspecializations/DIABP", + "properties": [ + { + "id": "BiomedicalConceptProperty_95", + "extensionAttributes": [], + "name": "VSTESTCD", + "label": "VSTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_133", + "extensionAttributes": [], + "standardCode": { + "id": "Code_377", + "extensionAttributes": [], + "code": "C25299", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "DIABP", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_96", + "extensionAttributes": [], + "name": "VSORRES", + "label": "VSORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "integer", + "responseCodes": [], + "code": { + "id": "AliasCode_134", + "extensionAttributes": [], + "standardCode": { + "id": "Code_378", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_97", + "extensionAttributes": [], + "name": "VSORRESU", + "label": "VSORRESU", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_135", + "extensionAttributes": [], + "standardCode": { + "id": "Code_379", + "extensionAttributes": [], + "code": "C49669", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Unit of Pressure", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_98", + "extensionAttributes": [], + "name": "VSPOS", + "label": "VSPOS", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_109", + "extensionAttributes": [], + "name": "RC_C62165", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_380", + "extensionAttributes": [], + "code": "C62165", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Prone Position", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_110", + "extensionAttributes": [], + "name": "RC_C111310", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_381", + "extensionAttributes": [], + "code": "C111310", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Semi-Recumbent", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_111", + "extensionAttributes": [], + "name": "RC_C62122", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_382", + "extensionAttributes": [], + "code": "C62122", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Sitting", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_112", + "extensionAttributes": [], + "name": "RC_C62166", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_383", + "extensionAttributes": [], + "code": "C62166", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Standing", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_113", + "extensionAttributes": [], + "name": "RC_C62167", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_384", + "extensionAttributes": [], + "code": "C62167", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Supine Position", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_136", + "extensionAttributes": [], + "standardCode": { + "id": "Code_385", + "extensionAttributes": [], + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Body Position", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_99", + "extensionAttributes": [], + "name": "VSLOC", + "label": "VSLOC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_114", + "extensionAttributes": [], + "name": "RC_C12681", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_386", + "extensionAttributes": [], + "code": "C12681", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Brachial Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_115", + "extensionAttributes": [], + "name": "RC_C12687", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_387", + "extensionAttributes": [], + "code": "C12687", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Common Carotid Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_116", + "extensionAttributes": [], + "name": "RC_C32478", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_388", + "extensionAttributes": [], + "code": "C32478", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Dorsalis Pedis Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_117", + "extensionAttributes": [], + "name": "RC_C12715", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_389", + "extensionAttributes": [], + "code": "C12715", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Femoral Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_118", + "extensionAttributes": [], + "name": "RC_C32608", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_390", + "extensionAttributes": [], + "code": "C32608", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Finger", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_119", + "extensionAttributes": [], + "name": "RC_C12838", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_391", + "extensionAttributes": [], + "code": "C12838", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Radial Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_137", + "extensionAttributes": [], + "standardCode": { + "id": "Code_392", + "extensionAttributes": [], + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Anatomic Site", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_100", + "extensionAttributes": [], + "name": "VSLAT", + "label": "VSLAT", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_120", + "extensionAttributes": [], + "name": "RC_C25229", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_393", + "extensionAttributes": [], + "code": "C25229", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Left", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_121", + "extensionAttributes": [], + "name": "RC_C25228", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_394", + "extensionAttributes": [], + "code": "C25228", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Right", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_138", + "extensionAttributes": [], + "standardCode": { + "id": "Code_395", + "extensionAttributes": [], + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Laterality", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_101", + "extensionAttributes": [], + "name": "VSDTC", + "label": "VSDTC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_139", + "extensionAttributes": [], + "standardCode": { + "id": "Code_396", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_140", + "extensionAttributes": [], + "standardCode": { + "id": "Code_397", + "extensionAttributes": [], + "code": "C25299", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "DIABP", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_16", + "extensionAttributes": [], + "name": "Heart Rate", + "label": "Heart Rate", + "synonyms": ["HR", "Heart Rate"], + "reference": "/mdr/specializations/sdtm/packages/2025-04-01/datasetspecializations/HR", + "properties": [ + { + "id": "BiomedicalConceptProperty_102", + "extensionAttributes": [], + "name": "VSTESTCD", + "label": "VSTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_141", + "extensionAttributes": [], + "standardCode": { + "id": "Code_398", + "extensionAttributes": [], + "code": "C49677", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "HR", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_103", + "extensionAttributes": [], + "name": "VSORRES", + "label": "VSORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "integer", + "responseCodes": [], + "code": { + "id": "AliasCode_142", + "extensionAttributes": [], + "standardCode": { + "id": "Code_399", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_104", + "extensionAttributes": [], + "name": "VSORRESU", + "label": "VSORRESU", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_143", + "extensionAttributes": [], + "standardCode": { + "id": "Code_400", + "extensionAttributes": [], + "code": "C73688", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Count per Minute", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_105", + "extensionAttributes": [], + "name": "VSPOS", + "label": "VSPOS", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_122", + "extensionAttributes": [], + "name": "RC_C62165", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_401", + "extensionAttributes": [], + "code": "C62165", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Prone Position", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_123", + "extensionAttributes": [], + "name": "RC_C111310", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_402", + "extensionAttributes": [], + "code": "C111310", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Semi-Recumbent", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_124", + "extensionAttributes": [], + "name": "RC_C62122", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_403", + "extensionAttributes": [], + "code": "C62122", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Sitting", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_125", + "extensionAttributes": [], + "name": "RC_C62166", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_404", + "extensionAttributes": [], + "code": "C62166", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Standing", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_126", + "extensionAttributes": [], + "name": "RC_C62167", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_405", + "extensionAttributes": [], + "code": "C62167", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Supine Position", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_144", + "extensionAttributes": [], + "standardCode": { + "id": "Code_406", + "extensionAttributes": [], + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Body Position", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_106", + "extensionAttributes": [], + "name": "VSLOC", + "label": "VSLOC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_127", + "extensionAttributes": [], + "name": "RC_C12681", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_407", + "extensionAttributes": [], + "code": "C12681", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Brachial Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_128", + "extensionAttributes": [], + "name": "RC_C12687", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_408", + "extensionAttributes": [], + "code": "C12687", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Common Carotid Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_129", + "extensionAttributes": [], + "name": "RC_C12691", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_409", + "extensionAttributes": [], + "code": "C12691", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Cerebral Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_130", + "extensionAttributes": [], + "name": "RC_C32478", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_410", + "extensionAttributes": [], + "code": "C32478", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Dorsalis Pedis Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_131", + "extensionAttributes": [], + "name": "RC_C12715", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_411", + "extensionAttributes": [], + "code": "C12715", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Femoral Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_132", + "extensionAttributes": [], + "name": "RC_C12838", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_412", + "extensionAttributes": [], + "code": "C12838", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Radial Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_145", + "extensionAttributes": [], + "standardCode": { + "id": "Code_413", + "extensionAttributes": [], + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Anatomic Site", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_107", + "extensionAttributes": [], + "name": "VSLAT", + "label": "VSLAT", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_133", + "extensionAttributes": [], + "name": "RC_C25229", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_414", + "extensionAttributes": [], + "code": "C25229", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Left", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_134", + "extensionAttributes": [], + "name": "RC_C25228", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_415", + "extensionAttributes": [], + "code": "C25228", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Right", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_146", + "extensionAttributes": [], + "standardCode": { + "id": "Code_416", + "extensionAttributes": [], + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Laterality", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_108", + "extensionAttributes": [], + "name": "VSDTC", + "label": "VSDTC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_147", + "extensionAttributes": [], + "standardCode": { + "id": "Code_417", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_148", + "extensionAttributes": [], + "standardCode": { + "id": "Code_418", + "extensionAttributes": [], + "code": "C49677", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "HR", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_17", + "extensionAttributes": [], + "name": "Systolic Blood Pressure", + "label": "Systolic Blood Pressure", + "synonyms": ["SYSBP", "Systolic Blood Pressure"], + "reference": "/mdr/specializations/sdtm/packages/2025-04-01/datasetspecializations/SYSBP", + "properties": [ + { + "id": "BiomedicalConceptProperty_109", + "extensionAttributes": [], + "name": "VSTESTCD", + "label": "VSTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_149", + "extensionAttributes": [], + "standardCode": { + "id": "Code_419", + "extensionAttributes": [], + "code": "C25298", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "SYSBP", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_110", + "extensionAttributes": [], + "name": "VSORRES", + "label": "VSORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "integer", + "responseCodes": [], + "code": { + "id": "AliasCode_150", + "extensionAttributes": [], + "standardCode": { + "id": "Code_420", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_111", + "extensionAttributes": [], + "name": "VSORRESU", + "label": "VSORRESU", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_151", + "extensionAttributes": [], + "standardCode": { + "id": "Code_421", + "extensionAttributes": [], + "code": "C49669", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Unit of Pressure", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_112", + "extensionAttributes": [], + "name": "VSPOS", + "label": "VSPOS", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_135", + "extensionAttributes": [], + "name": "RC_C62165", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_422", + "extensionAttributes": [], + "code": "C62165", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Prone Position", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_136", + "extensionAttributes": [], + "name": "RC_C111310", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_423", + "extensionAttributes": [], + "code": "C111310", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Semi-Recumbent", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_137", + "extensionAttributes": [], + "name": "RC_C62122", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_424", + "extensionAttributes": [], + "code": "C62122", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Sitting", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_138", + "extensionAttributes": [], + "name": "RC_C62166", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_425", + "extensionAttributes": [], + "code": "C62166", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Standing", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_139", + "extensionAttributes": [], + "name": "RC_C62167", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_426", + "extensionAttributes": [], + "code": "C62167", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Supine Position", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_152", + "extensionAttributes": [], + "standardCode": { + "id": "Code_427", + "extensionAttributes": [], + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Body Position", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_113", + "extensionAttributes": [], + "name": "VSLOC", + "label": "VSLOC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_140", + "extensionAttributes": [], + "name": "RC_C12681", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_428", + "extensionAttributes": [], + "code": "C12681", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Brachial Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_141", + "extensionAttributes": [], + "name": "RC_C12687", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_429", + "extensionAttributes": [], + "code": "C12687", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Common Carotid Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_142", + "extensionAttributes": [], + "name": "RC_C32478", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_430", + "extensionAttributes": [], + "code": "C32478", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Dorsalis Pedis Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_143", + "extensionAttributes": [], + "name": "RC_C12715", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_431", + "extensionAttributes": [], + "code": "C12715", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Femoral Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_144", + "extensionAttributes": [], + "name": "RC_C32608", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_432", + "extensionAttributes": [], + "code": "C32608", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Finger", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_145", + "extensionAttributes": [], + "name": "RC_C12838", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_433", + "extensionAttributes": [], + "code": "C12838", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Radial Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_153", + "extensionAttributes": [], + "standardCode": { + "id": "Code_434", + "extensionAttributes": [], + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Anatomic Site", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_114", + "extensionAttributes": [], + "name": "VSLAT", + "label": "VSLAT", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_146", + "extensionAttributes": [], + "name": "RC_C25229", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_435", + "extensionAttributes": [], + "code": "C25229", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Left", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_147", + "extensionAttributes": [], + "name": "RC_C25228", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_436", + "extensionAttributes": [], + "code": "C25228", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Right", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_154", + "extensionAttributes": [], + "standardCode": { + "id": "Code_437", + "extensionAttributes": [], + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Laterality", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_115", + "extensionAttributes": [], + "name": "VSDTC", + "label": "VSDTC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_155", + "extensionAttributes": [], + "standardCode": { + "id": "Code_438", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_156", + "extensionAttributes": [], + "standardCode": { + "id": "Code_439", + "extensionAttributes": [], + "code": "C25298", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "SYSBP", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_18", + "extensionAttributes": [], + "name": "Diastolic Blood Pressure", + "label": "Diastolic Blood Pressure", + "synonyms": ["DIABP", "Diastolic Blood Pressure"], + "reference": "/mdr/specializations/sdtm/packages/2025-04-01/datasetspecializations/DIABP", + "properties": [ + { + "id": "BiomedicalConceptProperty_116", + "extensionAttributes": [], + "name": "VSTESTCD", + "label": "VSTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_157", + "extensionAttributes": [], + "standardCode": { + "id": "Code_440", + "extensionAttributes": [], + "code": "C25299", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "DIABP", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_117", + "extensionAttributes": [], + "name": "VSORRES", + "label": "VSORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "integer", + "responseCodes": [], + "code": { + "id": "AliasCode_158", + "extensionAttributes": [], + "standardCode": { + "id": "Code_441", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_118", + "extensionAttributes": [], + "name": "VSORRESU", + "label": "VSORRESU", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_159", + "extensionAttributes": [], + "standardCode": { + "id": "Code_442", + "extensionAttributes": [], + "code": "C49669", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Unit of Pressure", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_119", + "extensionAttributes": [], + "name": "VSPOS", + "label": "VSPOS", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_148", + "extensionAttributes": [], + "name": "RC_C62165", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_443", + "extensionAttributes": [], + "code": "C62165", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Prone Position", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_149", + "extensionAttributes": [], + "name": "RC_C111310", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_444", + "extensionAttributes": [], + "code": "C111310", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Semi-Recumbent", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_150", + "extensionAttributes": [], + "name": "RC_C62122", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_445", + "extensionAttributes": [], + "code": "C62122", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Sitting", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_151", + "extensionAttributes": [], + "name": "RC_C62166", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_446", + "extensionAttributes": [], + "code": "C62166", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Standing", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_152", + "extensionAttributes": [], + "name": "RC_C62167", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_447", + "extensionAttributes": [], + "code": "C62167", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Supine Position", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_160", + "extensionAttributes": [], + "standardCode": { + "id": "Code_448", + "extensionAttributes": [], + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Body Position", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_120", + "extensionAttributes": [], + "name": "VSLOC", + "label": "VSLOC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_153", + "extensionAttributes": [], + "name": "RC_C12681", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_449", + "extensionAttributes": [], + "code": "C12681", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Brachial Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_154", + "extensionAttributes": [], + "name": "RC_C12687", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_450", + "extensionAttributes": [], + "code": "C12687", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Common Carotid Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_155", + "extensionAttributes": [], + "name": "RC_C32478", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_451", + "extensionAttributes": [], + "code": "C32478", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Dorsalis Pedis Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_156", + "extensionAttributes": [], + "name": "RC_C12715", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_452", + "extensionAttributes": [], + "code": "C12715", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Femoral Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_157", + "extensionAttributes": [], + "name": "RC_C32608", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_453", + "extensionAttributes": [], + "code": "C32608", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Finger", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_158", + "extensionAttributes": [], + "name": "RC_C12838", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_454", + "extensionAttributes": [], + "code": "C12838", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Radial Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_161", + "extensionAttributes": [], + "standardCode": { + "id": "Code_455", + "extensionAttributes": [], + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Anatomic Site", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_121", + "extensionAttributes": [], + "name": "VSLAT", + "label": "VSLAT", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_159", + "extensionAttributes": [], + "name": "RC_C25229", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_456", + "extensionAttributes": [], + "code": "C25229", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Left", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_160", + "extensionAttributes": [], + "name": "RC_C25228", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_457", + "extensionAttributes": [], + "code": "C25228", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Right", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_162", + "extensionAttributes": [], + "standardCode": { + "id": "Code_458", + "extensionAttributes": [], + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Laterality", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_122", + "extensionAttributes": [], + "name": "VSDTC", + "label": "VSDTC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_163", + "extensionAttributes": [], + "standardCode": { + "id": "Code_459", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_164", + "extensionAttributes": [], + "standardCode": { + "id": "Code_460", + "extensionAttributes": [], + "code": "C25299", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "DIABP", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_34", + "extensionAttributes": [], + "name": "PE_FIND", + "label": "Physical Examination Finding", + "synonyms": [], + "reference": "https://cdisc-org.github.io/COSMoS/export/cdisc_biomedical_concepts_latest.xlsx", + "properties": [], + "code": { + "id": "AliasCodeX_003", + "extensionAttributes": [], + "standardCode": { + "id": "CodeX_005", + "extensionAttributes": [], + "code": "C83119", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Physical Examination Finding", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_35", + "extensionAttributes": [], + "name": "MH", + "label": "Medical History", + "synonyms": [], + "reference": "https://cdisc-org.github.io/COSMoS/export/cdisc_biomedical_concepts_latest.xlsx", + "properties": [], + "code": { + "id": "AliasCodeX_004", + "extensionAttributes": [], + "standardCode": { + "id": "CodeX_006", + "extensionAttributes": [], + "code": "C83119", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Physical Examination Finding", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_36", + "extensionAttributes": [], + "name": "Alcohol", + "label": "Alcohol Use", + "synonyms": [], + "reference": "https://cdisc-org.github.io/COSMoS/export/cdisc_biomedical_concepts_latest.xlsx", + "properties": [], + "code": { + "id": "AliasCodeX_005", + "extensionAttributes": [], + "standardCode": { + "id": "CodeX_007", + "extensionAttributes": [], + "code": "C81229", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Alcohol Use History", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_37", + "extensionAttributes": [], + "name": "Caffeine", + "label": "Caffeine Use", + "synonyms": [], + "reference": "https://cdisc-org.github.io/COSMoS/export/cdisc_biomedical_concepts_latest.xlsx", + "properties": [], + "code": { + "id": "AliasCodeX_006", + "extensionAttributes": [], + "standardCode": { + "id": "CodeX_008", + "extensionAttributes": [], + "code": "C201990", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Caffeine Use History", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + + { + "id": "BiomedicalConcept_38", + "extensionAttributes": [], + "name": "ECG", + "label": "ECG Measurement", + "synonyms": [], + "reference": "https://cdisc-org.github.io/COSMoS/export/cdisc_biomedical_concepts_latest.xlsx", + "properties": [], + "code": { + "id": "AliasCodeX_008", + "extensionAttributes": [], + "standardCode": { + "id": "CodeX_012", + "extensionAttributes": [], + "code": "C62085", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "ECG Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + + { + "id": "BiomedicalConcept_39", + "extensionAttributes": [], + "name": "CM", + "label": "Concomitant Medications", + "synonyms": [], + "reference": "https://cdisc-org.github.io/COSMoS/export/cdisc_biomedical_concepts_latest.xlsx", + "properties": [], + "code": { + "id": "AliasCodeX_009", + "extensionAttributes": [], + "standardCode": { + "id": "CodeX_013", + "extensionAttributes": [], + "code": "C83056", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Concomitant Therapy", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + + { + "id": "BiomedicalConcept_40", + "extensionAttributes": [], + "name": "ADASCOG", + "label": "ADAS-Cog", + "synonyms": [], + "reference": "https://cdisc-org.github.io/COSMoS/export/cdisc_biomedical_concepts_latest.xlsx", + "properties": [], + "code": { + "id": "AliasCodeX_010", + "extensionAttributes": [], + "standardCode": { + "id": "CodeX_017", + "extensionAttributes": [], + "code": "C100247", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "CDISC ADAS-Cog - Word Recognition Summary Score", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_33", + "extensionAttributes": [], + "name": "Consent", + "label": "Informed Consent", + "synonyms": ["Informed Consent Obtained"], + "reference": "https://cdisc-org.github.io/COSMoS/export/cdisc_biomedical_concepts_latest.xlsx", + "properties": [ + { + "id": "BCProperty_001", + "extensionAttributes": [], + "name": "TERM", + "label": "Reported Event Term", + "isRequired": true, + "isEnabled": true, + "datatype": "Nominal", + "responseCodes": [], + "code": { + "id": "AliasCodeX_001", + "extensionAttributes": [], + "standardCode": { + "id": "CodeX_001", + "extensionAttributes": [], + "code": "C82571", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Reported Event Term", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCodeX_002", + "extensionAttributes": [], + "standardCode": { + "id": "CodeX_002", + "extensionAttributes": [], + "code": "C16735", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Informed Consent", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_19", + "extensionAttributes": [], + "name": "Heart Rate", + "label": "Heart Rate", + "synonyms": ["HR", "Heart Rate"], + "reference": "/mdr/specializations/sdtm/packages/2025-04-01/datasetspecializations/HR", + "properties": [ + { + "id": "BiomedicalConceptProperty_123", + "extensionAttributes": [], + "name": "VSTESTCD", + "label": "VSTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_165", + "extensionAttributes": [], + "standardCode": { + "id": "Code_461", + "extensionAttributes": [], + "code": "C49677", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "HR", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_124", + "extensionAttributes": [], + "name": "VSORRES", + "label": "VSORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "integer", + "responseCodes": [], + "code": { + "id": "AliasCode_166", + "extensionAttributes": [], + "standardCode": { + "id": "Code_462", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_125", + "extensionAttributes": [], + "name": "VSORRESU", + "label": "VSORRESU", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_167", + "extensionAttributes": [], + "standardCode": { + "id": "Code_463", + "extensionAttributes": [], + "code": "C73688", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Count per Minute", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_126", + "extensionAttributes": [], + "name": "VSPOS", + "label": "VSPOS", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_161", + "extensionAttributes": [], + "name": "RC_C62165", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_464", + "extensionAttributes": [], + "code": "C62165", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Prone Position", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_162", + "extensionAttributes": [], + "name": "RC_C111310", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_465", + "extensionAttributes": [], + "code": "C111310", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Semi-Recumbent", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_163", + "extensionAttributes": [], + "name": "RC_C62122", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_466", + "extensionAttributes": [], + "code": "C62122", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Sitting", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_164", + "extensionAttributes": [], + "name": "RC_C62166", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_467", + "extensionAttributes": [], + "code": "C62166", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Standing", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_165", + "extensionAttributes": [], + "name": "RC_C62167", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_468", + "extensionAttributes": [], + "code": "C62167", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Supine Position", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_168", + "extensionAttributes": [], + "standardCode": { + "id": "Code_469", + "extensionAttributes": [], + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Body Position", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_127", + "extensionAttributes": [], + "name": "VSLOC", + "label": "VSLOC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_166", + "extensionAttributes": [], + "name": "RC_C12681", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_470", + "extensionAttributes": [], + "code": "C12681", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Brachial Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_167", + "extensionAttributes": [], + "name": "RC_C12687", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_471", + "extensionAttributes": [], + "code": "C12687", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Common Carotid Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_168", + "extensionAttributes": [], + "name": "RC_C12691", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_472", + "extensionAttributes": [], + "code": "C12691", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Cerebral Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_169", + "extensionAttributes": [], + "name": "RC_C32478", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_473", + "extensionAttributes": [], + "code": "C32478", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Dorsalis Pedis Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_170", + "extensionAttributes": [], + "name": "RC_C12715", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_474", + "extensionAttributes": [], + "code": "C12715", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Femoral Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_171", + "extensionAttributes": [], + "name": "RC_C12838", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_475", + "extensionAttributes": [], + "code": "C12838", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Radial Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_169", + "extensionAttributes": [], + "standardCode": { + "id": "Code_476", + "extensionAttributes": [], + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Anatomic Site", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_128", + "extensionAttributes": [], + "name": "VSLAT", + "label": "VSLAT", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_172", + "extensionAttributes": [], + "name": "RC_C25229", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_477", + "extensionAttributes": [], + "code": "C25229", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Left", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_173", + "extensionAttributes": [], + "name": "RC_C25228", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_478", + "extensionAttributes": [], + "code": "C25228", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Right", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_170", + "extensionAttributes": [], + "standardCode": { + "id": "Code_479", + "extensionAttributes": [], + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Laterality", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_129", + "extensionAttributes": [], + "name": "VSDTC", + "label": "VSDTC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_171", + "extensionAttributes": [], + "standardCode": { + "id": "Code_480", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_172", + "extensionAttributes": [], + "standardCode": { + "id": "Code_481", + "extensionAttributes": [], + "code": "C49677", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "HR", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + } + ], + "bcCategories": [ + { + "id": "BCCat_1", + "name": "VS_Cat1", + "extensionAttributes": [], + "description": "Vital signs including SBP/DBP, Temp, Weight", + "label": "Vital Signs Category", + "code": null, + "childIds": [], + "memberIds": [ + "BiomedicalConcept_2", + "BiomedicalConcept_3", + "BiomedicalConcept_4", + "BiomedicalConcept_5" + ], + "instanceType": "BiomedicalConceptCategory", + "notes": [] + }, + { + "id": "BCCat_2", + "name": "VS_Cat2", + "extensionAttributes": [], + "description": "Vital signs including SBP/DBP, HR", + "label": "Vital Signs Category", + "code": null, + "childIds": [], + "memberIds": [ + "BiomedicalConcept_2", + "BiomedicalConcept_3", + "BiomedicalConcept_16" + ], + "instanceType": "BiomedicalConceptCategory", + "notes": [] + }, + { + "id": "BCCat_3", + "name": "Chem_Cat1", + "extensionAttributes": [], + "description": "Biochemistry including ALAT, Alk.Phos, ASAT", + "label": "Biochemistry Category", + "code": null, + "childIds": [], + "memberIds": [ + "BiomedicalConcept_7", + "BiomedicalConcept_9", + "BiomedicalConcept_10" + ], + "instanceType": "BiomedicalConceptCategory", + "notes": [] + }, + { + "id": "BCCat_4", + "name": "Urin_Cat1", + "extensionAttributes": [], + "description": "Urinalysis including Albumin, Creatinin, Potassium and Sodium", + "label": "Biochemistry Category", + "code": null, + "childIds": [], + "memberIds": [ + "BiomedicalConcept_8", + "BiomedicalConcept_11", + "BiomedicalConcept_12", + "BiomedicalConcept_13" + ], + "instanceType": "BiomedicalConceptCategory", + "notes": [] + } + ], + "bcSurrogates": [ + { + "id": "BiomedicalConceptSurrogate_1", + "extensionAttributes": [], + "name": "Date of Birth", + "label": "Date of Birth", + "description": "Date of Birth", + "reference": "None set", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_2", + "extensionAttributes": [], + "name": "Haschinki", + "label": "Haschinski Ischemic Scale", + "description": "", + "reference": "None set", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_3", + "extensionAttributes": [], + "name": "MMSE", + "label": "MMSE", + "description": "", + "reference": "None set", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_4", + "extensionAttributes": [], + "name": "ApoE", + "label": "Apo E Genotype", + "description": "", + "reference": "None set", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_5", + "extensionAttributes": [], + "name": "TTS", + "label": "Placebo TTS test", + "description": "", + "reference": "None set", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + } + ], + "dictionaries": [ + { + "id": "SyntaxTemplateDictionary_1", + "extensionAttributes": [], + "name": "IE_Dict", + "label": "IE Dictionary", + "description": "Dictionary for IE", + "parameterMaps": [ + { + "id": "ParameterMap_1", + "extensionAttributes": [], + "tag": "min_age", + "reference": "", + "instanceType": "ParameterMap" + }, + { + "id": "ParameterMap_2", + "extensionAttributes": [], + "tag": "max_age", + "reference": "", + "instanceType": "ParameterMap" + }, + { + "id": "ParameterMap_3", + "extensionAttributes": [], + "tag": "StudyPopulation", + "reference": "", + "instanceType": "ParameterMap" + } + ], + "instanceType": "SyntaxTemplateDictionary" + }, + { + "id": "SyntaxTemplateDictionary_2", + "extensionAttributes": [], + "name": "AS_Dict", + "label": "Assessment Dictionary", + "description": "Dictionary for Study Assessments", + "parameterMaps": [ + { + "id": "ParameterMap_4", + "extensionAttributes": [], + "tag": "Activity1", + "reference": "", + "instanceType": "ParameterMap" + }, + { + "id": "ParameterMap_5", + "extensionAttributes": [], + "tag": "Activity2", + "reference": "", + "instanceType": "ParameterMap" + } + ], + "instanceType": "SyntaxTemplateDictionary" + } + ], + "conditions": [ + { + "id": "Condition_1", + "extensionAttributes": [], + "name": "COND1", + "label": "HA1C", + "description": "

      Hemoglobin A1C and insulin-dependent subjects

      ", + "text": "Performed if patient is an insulin-dependent diabetic", + "dictionaryId": null, + "notes": [], + "instanceType": "Condition", + "contextIds": ["ScheduledActivityInstance_9"], + "appliesToIds": ["Activity_24xxx"] + }, + { + "id": "Condition_2", + "extensionAttributes": [], + "name": "COND2", + "label": "Practice", + "description": "Questionnaire practice condition", + "text": "

      Practice only - It is recommended that a sampling of the CIBIC+, ADAS-Cog, DAD, and NPI-X be administered at Visit 1. Data from this sampling would not be considered as study data and would not be collected.

      ", + "dictionaryId": null, + "notes": [], + "instanceType": "Condition", + "contextIds": ["ScheduledActivityInstance_9xxx"], + "appliesToIds": [ + "Activity_27", + "Activity_28", + "Activity_29", + "Activity_30" + ] + } + ], + "notes": [], + "instanceType": "StudyVersion" + } + ], + "documentedBy": [ + { + "id": "StudyDefinitionDocument_1", + "extensionAttributes": [], + "name": "Protocol_Document_CDISC PILOT - LZZT", + "label": null, + "description": null, + "language": { + "id": "Code_671", + "extensionAttributes": [], + "code": "en", + "codeSystem": "ISO", + "codeSystemVersion": "1", + "decode": "English", + "instanceType": "Code" + }, + "type": { + "id": "Code_672", + "extensionAttributes": [], + "code": "C12345", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Decode", + "instanceType": "Code" + }, + "templateName": "LILLY", + "versions": [ + { + "id": "StudyDefinitionDocumentVersion_1", + "extensionAttributes": [], + "version": "2", + "status": { + "id": "Code_12", + "extensionAttributes": [], + "code": "C25508", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Final", + "instanceType": "Code" + }, + "dateValues": [ + { + "id": "GovernanceDate_2", + "extensionAttributes": [], + "name": "P_APPROVE", + "label": "Protocol Approval", + "description": "Protocol document approval date", + "type": { + "id": "Code_15", + "extensionAttributes": [], + "code": "C215663", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Effective Date", + "instanceType": "Code" + }, + "dateValue": "2006-07-01", + "geographicScopes": [ + { + "id": "GeographicScope_2", + "extensionAttributes": [], + "type": { + "id": "Code_17", + "extensionAttributes": [], + "code": "C41129", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Region", + "instanceType": "Code" + }, + "code": { + "id": "AliasCode_1", + "extensionAttributes": [], + "standardCode": { + "id": "Code_16", + "extensionAttributes": [], + "code": "150", + "codeSystem": "ISO 3166 1 alpha3", + "codeSystemVersion": "2020-08", + "decode": "Europe", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "instanceType": "GeographicScope" + } + ], + "instanceType": "GovernanceDate" + } + ], + "contents": [ + { + "id": "NarrativeContent_1", + "extensionAttributes": [], + "name": "NC_1", + "sectionNumber": "0", + "sectionTitle": "Title Page", + "displaySectionNumber": false, + "displaySectionTitle": false, + "childIds": [], + "previousId": null, + "nextId": "NarrativeContent_2", + "contentItemId": "NarrativeContentItem_1", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_2", + "extensionAttributes": [], + "name": "NC_2", + "sectionNumber": "1", + "sectionTitle": "Introduction", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_1", + "nextId": "NarrativeContent_3", + "contentItemId": "NarrativeContentItem_2", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_3", + "extensionAttributes": [], + "name": "NC_3", + "sectionNumber": "2", + "sectionTitle": "Objectives", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": ["NarrativeContent_4", "NarrativeContent_5"], + "previousId": "NarrativeContent_2", + "nextId": "NarrativeContent_4", + "contentItemId": "NarrativeContentItem_3", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_4", + "extensionAttributes": [], + "name": "NC_4", + "sectionNumber": "2.1.", + "sectionTitle": "Primary Objectives", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_3", + "nextId": "NarrativeContent_5", + "contentItemId": "NarrativeContentItem_4", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_5", + "extensionAttributes": [], + "name": "NC_5", + "sectionNumber": "2.2", + "sectionTitle": "Secondary Objectives", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_4", + "nextId": "NarrativeContent_6", + "contentItemId": "NarrativeContentItem_5", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_6", + "extensionAttributes": [], + "name": "NC_6", + "sectionNumber": "3", + "sectionTitle": "Investigational Plan", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_7", + "NarrativeContent_8", + "NarrativeContent_9", + "NarrativeContent_11", + "NarrativeContent_19", + "NarrativeContent_20", + "NarrativeContent_23", + "NarrativeContent_24", + "NarrativeContent_25", + "NarrativeContent_41", + "NarrativeContent_47" + ], + "previousId": "NarrativeContent_5", + "nextId": "NarrativeContent_7", + "contentItemId": "NarrativeContentItem_6", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_7", + "extensionAttributes": [], + "name": "NC_7", + "sectionNumber": "3.1.", + "sectionTitle": "Summary of Study Design", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_6", + "nextId": "NarrativeContent_8", + "contentItemId": "NarrativeContentItem_7", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_8", + "extensionAttributes": [], + "name": "NC_8", + "sectionNumber": "3.2.", + "sectionTitle": "Discussion of Design and Control", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_7", + "nextId": "NarrativeContent_9", + "contentItemId": "NarrativeContentItem_8", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_9", + "extensionAttributes": [], + "name": "NC_9", + "sectionNumber": "3.3.", + "sectionTitle": "Investigator Information", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": ["NarrativeContent_10"], + "previousId": "NarrativeContent_8", + "nextId": "NarrativeContent_10", + "contentItemId": "NarrativeContentItem_9", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_10", + "extensionAttributes": [], + "name": "NC_10", + "sectionNumber": "3.3.1.", + "sectionTitle": "Final Report Signature", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_9", + "nextId": "NarrativeContent_11", + "contentItemId": "NarrativeContentItem_10", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_11", + "extensionAttributes": [], + "name": "NC_11", + "sectionNumber": "3.4.", + "sectionTitle": "Study Population", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_12", + "NarrativeContent_13", + "NarrativeContent_17", + "NarrativeContent_18" + ], + "previousId": "NarrativeContent_10", + "nextId": "NarrativeContent_12", + "contentItemId": "NarrativeContentItem_11", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_12", + "extensionAttributes": [], + "name": "NC_12", + "sectionNumber": "3.4.1.", + "sectionTitle": "Entry Procedures", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_11", + "nextId": "NarrativeContent_13", + "contentItemId": "NarrativeContentItem_12", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_13", + "extensionAttributes": [], + "name": "NC_13", + "sectionNumber": "3.4.2.", + "sectionTitle": "Criteria for Enrollment", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_14", + "NarrativeContent_15", + "NarrativeContent_16" + ], + "previousId": "NarrativeContent_12", + "nextId": "NarrativeContent_14", + "contentItemId": "NarrativeContentItem_13", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_14", + "extensionAttributes": [], + "name": "NC_14", + "sectionNumber": "3.4.2.1.", + "sectionTitle": "Inclusion Criteria", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_13", + "nextId": "NarrativeContent_15", + "contentItemId": "NarrativeContentItem_14", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_15", + "extensionAttributes": [], + "name": "NC_15", + "sectionNumber": "3.4.2.2.", + "sectionTitle": "Exclusion Criteria", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_14", + "nextId": "NarrativeContent_16", + "contentItemId": "NarrativeContentItem_15", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_16", + "extensionAttributes": [], + "name": "NC_16", + "sectionNumber": "3.4.2.3", + "sectionTitle": "Violation of Criteria for Enrollment", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_15", + "nextId": "NarrativeContent_17", + "contentItemId": "NarrativeContentItem_16", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_17", + "extensionAttributes": [], + "name": "NC_17", + "sectionNumber": "3.4.3.", + "sectionTitle": "Disease Diagnostic Criteria", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_16", + "nextId": "NarrativeContent_18", + "contentItemId": "NarrativeContentItem_17", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_18", + "extensionAttributes": [], + "name": "NC_18", + "sectionNumber": "3.4.4.", + "sectionTitle": "Sample Size", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_17", + "nextId": "NarrativeContent_19", + "contentItemId": "NarrativeContentItem_18", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_19", + "extensionAttributes": [], + "name": "NC_19", + "sectionNumber": "3.5.", + "sectionTitle": "Patient Assignment", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_18", + "nextId": "NarrativeContent_20", + "contentItemId": "NarrativeContentItem_19", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_20", + "extensionAttributes": [], + "name": "NC_20", + "sectionNumber": "3.6.", + "sectionTitle": "Dosage and Administration", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": ["NarrativeContent_21", "NarrativeContent_22"], + "previousId": "NarrativeContent_19", + "nextId": "NarrativeContent_21", + "contentItemId": "NarrativeContentItem_20", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_21", + "extensionAttributes": [], + "name": "NC_21", + "sectionNumber": "3.6.1.", + "sectionTitle": "Materials and Supplies", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_20", + "nextId": "NarrativeContent_22", + "contentItemId": "NarrativeContentItem_21", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_22", + "extensionAttributes": [], + "name": "NC_22", + "sectionNumber": "3.6.2.", + "sectionTitle": "TTS Administration Procedures", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_21", + "nextId": "NarrativeContent_23", + "contentItemId": "NarrativeContentItem_22", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_23", + "extensionAttributes": [], + "name": "NC_23", + "sectionNumber": "3.7.", + "sectionTitle": "Blinding", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_22", + "nextId": "NarrativeContent_24", + "contentItemId": "NarrativeContentItem_23", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_24", + "extensionAttributes": [], + "name": "NC_24", + "sectionNumber": "3.8.", + "sectionTitle": "Concomitant Therapy", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_23", + "nextId": "NarrativeContent_25", + "contentItemId": "NarrativeContentItem_24", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_25", + "extensionAttributes": [], + "name": "NC_25", + "sectionNumber": "3.9.", + "sectionTitle": "Efficacy, Pharmacokinetic, and Safety Evaluations", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_26", + "NarrativeContent_29", + "NarrativeContent_30", + "NarrativeContent_39", + "NarrativeContent_40" + ], + "previousId": "NarrativeContent_24", + "nextId": "NarrativeContent_26", + "contentItemId": "NarrativeContentItem_25", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_26", + "extensionAttributes": [], + "name": "NC_26", + "sectionNumber": "3.9.1.", + "sectionTitle": "Efficacy", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": ["NarrativeContent_27", "NarrativeContent_28"], + "previousId": "NarrativeContent_25", + "nextId": "NarrativeContent_27", + "contentItemId": "NarrativeContentItem_26", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_27", + "extensionAttributes": [], + "name": "NC_27", + "sectionNumber": "3.9.1.1.", + "sectionTitle": "Efficacy Measures", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_26", + "nextId": "NarrativeContent_28", + "contentItemId": "NarrativeContentItem_27", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_28", + "extensionAttributes": [], + "name": "NC_28", + "sectionNumber": "3.9.1.2.", + "sectionTitle": "Efficacy Criteria", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_27", + "nextId": "NarrativeContent_29", + "contentItemId": "NarrativeContentItem_28", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_29", + "extensionAttributes": [], + "name": "NC_29", + "sectionNumber": "3.9.2.", + "sectionTitle": "Pharmacokinetics", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_28", + "nextId": "NarrativeContent_30", + "contentItemId": "NarrativeContentItem_29", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_30", + "extensionAttributes": [], + "name": "NC_30", + "sectionNumber": "3.9.3.", + "sectionTitle": "Safety", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_31", + "NarrativeContent_32", + "NarrativeContent_35", + "NarrativeContent_36" + ], + "previousId": "NarrativeContent_29", + "nextId": "NarrativeContent_31", + "contentItemId": "NarrativeContentItem_30", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_31", + "extensionAttributes": [], + "name": "NC_31", + "sectionNumber": "3.9.3.1.", + "sectionTitle": "Safety Measures", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_30", + "nextId": "NarrativeContent_32", + "contentItemId": "NarrativeContentItem_31", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_32", + "extensionAttributes": [], + "name": "NC_32", + "sectionNumber": "3.9.3.2.", + "sectionTitle": "Clinical Adverse Events", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": ["NarrativeContent_33", "NarrativeContent_34"], + "previousId": "NarrativeContent_31", + "nextId": "NarrativeContent_33", + "contentItemId": "NarrativeContentItem_32", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_33", + "extensionAttributes": [], + "name": "NC_33", + "sectionNumber": "3.9.3.2.1.", + "sectionTitle": "Adverse Event Reporting Requirements", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_32", + "nextId": "NarrativeContent_34", + "contentItemId": "NarrativeContentItem_33", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_34", + "extensionAttributes": [], + "name": "NC_34", + "sectionNumber": "3.9.3.2.2.", + "sectionTitle": "Serious Adverse Events", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_33", + "nextId": "NarrativeContent_35", + "contentItemId": "NarrativeContentItem_34", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_35", + "extensionAttributes": [], + "name": "NC_35", + "sectionNumber": "3.9.3.3.", + "sectionTitle": "Clinical Laboratory Tests", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_34", + "nextId": "NarrativeContent_36", + "contentItemId": "NarrativeContentItem_35", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_36", + "extensionAttributes": [], + "name": "NC_36", + "sectionNumber": "3.9.3.4", + "sectionTitle": "Other Safety Measures", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": ["NarrativeContent_37", "NarrativeContent_38"], + "previousId": "NarrativeContent_35", + "nextId": "NarrativeContent_37", + "contentItemId": "NarrativeContentItem_36", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_37", + "extensionAttributes": [], + "name": "NC_37", + "sectionNumber": "3.9.3.4.1", + "sectionTitle": "Vital Sign Determination", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_36", + "nextId": "NarrativeContent_38", + "contentItemId": "NarrativeContentItem_37", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_38", + "extensionAttributes": [], + "name": "NC_38", + "sectionNumber": "3.9.3.4.2", + "sectionTitle": "Cardiovascular Safety Measures", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_37", + "nextId": "NarrativeContent_39", + "contentItemId": "NarrativeContentItem_38", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_39", + "extensionAttributes": [], + "name": "NC_39", + "sectionNumber": "3.9.4.", + "sectionTitle": "Safety Monitoring", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_38", + "nextId": "NarrativeContent_40", + "contentItemId": "NarrativeContentItem_39", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_40", + "extensionAttributes": [], + "name": "NC_40", + "sectionNumber": "3.9.5.", + "sectionTitle": "Appropriateness and Consistency of Measurements", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_39", + "nextId": "NarrativeContent_41", + "contentItemId": "NarrativeContentItem_40", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_41", + "extensionAttributes": [], + "name": "NC_41", + "sectionNumber": "3.10.", + "sectionTitle": "Patient Disposition Criteria", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_42", + "NarrativeContent_44", + "NarrativeContent_45" + ], + "previousId": "NarrativeContent_40", + "nextId": "NarrativeContent_42", + "contentItemId": "NarrativeContentItem_41", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_42", + "extensionAttributes": [], + "name": "NC_42", + "sectionNumber": "3.10.1.", + "sectionTitle": "Discontinuations", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": ["NarrativeContent_43"], + "previousId": "NarrativeContent_41", + "nextId": "NarrativeContent_43", + "contentItemId": "NarrativeContentItem_42", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_43", + "extensionAttributes": [], + "name": "NC_43", + "sectionNumber": "3.10.1.1.", + "sectionTitle": "Retrieval of Discontinuations", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_42", + "nextId": "NarrativeContent_44", + "contentItemId": "NarrativeContentItem_43", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_44", + "extensionAttributes": [], + "name": "NC_44", + "sectionNumber": "3.10.2.", + "sectionTitle": "Qualifications for Analysis", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_43", + "nextId": "NarrativeContent_45", + "contentItemId": "NarrativeContentItem_44", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_45", + "extensionAttributes": [], + "name": "NC_45", + "sectionNumber": "3.10.3.", + "sectionTitle": "Study Extensions", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": ["NarrativeContent_46"], + "previousId": "NarrativeContent_44", + "nextId": "NarrativeContent_46", + "contentItemId": "NarrativeContentItem_45", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_46", + "extensionAttributes": [], + "name": "NC_46", + "sectionNumber": "3.10.3.1.", + "sectionTitle": "Compliance", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_45", + "nextId": "NarrativeContent_47", + "contentItemId": "NarrativeContentItem_46", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_47", + "extensionAttributes": [], + "name": "NC_47", + "sectionNumber": "3.11.", + "sectionTitle": "Quality Assurance", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_46", + "nextId": "NarrativeContent_48", + "contentItemId": "NarrativeContentItem_47", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_48", + "extensionAttributes": [], + "name": "NC_48", + "sectionNumber": "4", + "sectionTitle": "Data Analysis Methods", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_49", + "NarrativeContent_50", + "NarrativeContent_51", + "NarrativeContent_57", + "NarrativeContent_58", + "NarrativeContent_59", + "NarrativeContent_60", + "NarrativeContent_61" + ], + "previousId": "NarrativeContent_47", + "nextId": "NarrativeContent_49", + "contentItemId": "NarrativeContentItem_48", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_49", + "extensionAttributes": [], + "name": "NC_49", + "sectionNumber": "4.1.", + "sectionTitle": "General Considerations", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_48", + "nextId": "NarrativeContent_50", + "contentItemId": "NarrativeContentItem_49", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_50", + "extensionAttributes": [], + "name": "NC_50", + "sectionNumber": "4.2.", + "sectionTitle": "Demographics and Patient Characteristics Measured at Baseline", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_49", + "nextId": "NarrativeContent_51", + "contentItemId": "NarrativeContentItem_50", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_51", + "extensionAttributes": [], + "name": "NC_51", + "sectionNumber": "4.3.", + "sectionTitle": "Efficacy Analyses", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_52", + "NarrativeContent_53", + "NarrativeContent_54", + "NarrativeContent_55", + "NarrativeContent_56" + ], + "previousId": "NarrativeContent_50", + "nextId": "NarrativeContent_52", + "contentItemId": "NarrativeContentItem_51", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_52", + "extensionAttributes": [], + "name": "NC_52", + "sectionNumber": "4.3.1.", + "sectionTitle": "Efficacy Variables to be Analyzed", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_51", + "nextId": "NarrativeContent_53", + "contentItemId": "NarrativeContentItem_52", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_53", + "extensionAttributes": [], + "name": "NC_53", + "sectionNumber": "4.3.2.", + "sectionTitle": "Times of Analyses", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_52", + "nextId": "NarrativeContent_54", + "contentItemId": "NarrativeContentItem_53", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_54", + "extensionAttributes": [], + "name": "NC_54", + "sectionNumber": "4.3.3.", + "sectionTitle": "Statistical Methodology", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_53", + "nextId": "NarrativeContent_55", + "contentItemId": "NarrativeContentItem_54", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_55", + "extensionAttributes": [], + "name": "NC_55", + "sectionNumber": "4.3.4.", + "sectionTitle": "One-sided Justification", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_54", + "nextId": "NarrativeContent_56", + "contentItemId": "NarrativeContentItem_55", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_56", + "extensionAttributes": [], + "name": "NC_56", + "sectionNumber": "4.3.5.", + "sectionTitle": "Nominal P-value Adjustments", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_55", + "nextId": "NarrativeContent_57", + "contentItemId": "NarrativeContentItem_56", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_57", + "extensionAttributes": [], + "name": "NC_57", + "sectionNumber": "4.4.", + "sectionTitle": "Safety Analyses", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_56", + "nextId": "NarrativeContent_58", + "contentItemId": "NarrativeContentItem_57", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_58", + "extensionAttributes": [], + "name": "NC_58", + "sectionNumber": "4.5.", + "sectionTitle": "Subgroup Analyses", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_57", + "nextId": "NarrativeContent_59", + "contentItemId": "NarrativeContentItem_58", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_59", + "extensionAttributes": [], + "name": "NC_59", + "sectionNumber": "4.6.", + "sectionTitle": "Interim Efficacy Analyses", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_58", + "nextId": "NarrativeContent_60", + "contentItemId": "NarrativeContentItem_59", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_60", + "extensionAttributes": [], + "name": "NC_60", + "sectionNumber": "4.7.", + "sectionTitle": "Interim Safety Analyses", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_59", + "nextId": "NarrativeContent_61", + "contentItemId": "NarrativeContentItem_60", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_61", + "extensionAttributes": [], + "name": "NC_61", + "sectionNumber": "4.8.", + "sectionTitle": "Pharmacokinetic/Pharmacodynamic Analyses", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_60", + "nextId": "NarrativeContent_62", + "contentItemId": "NarrativeContentItem_61", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_62", + "extensionAttributes": [], + "name": "NC_62", + "sectionNumber": "5", + "sectionTitle": "Informed Consent, Ethical Review, and Regulatory Considerations", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_63", + "NarrativeContent_64", + "NarrativeContent_65" + ], + "previousId": "NarrativeContent_61", + "nextId": "NarrativeContent_63", + "contentItemId": "NarrativeContentItem_62", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_63", + "extensionAttributes": [], + "name": "NC_63", + "sectionNumber": "5.1.", + "sectionTitle": "Informed Consent", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_62", + "nextId": "NarrativeContent_64", + "contentItemId": "NarrativeContentItem_63", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_64", + "extensionAttributes": [], + "name": "NC_64", + "sectionNumber": "5.2.", + "sectionTitle": "Ethical Review", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_63", + "nextId": "NarrativeContent_65", + "contentItemId": "NarrativeContentItem_64", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_65", + "extensionAttributes": [], + "name": "NC_65", + "sectionNumber": "5.3.", + "sectionTitle": "Regulatory Considerations", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_64", + "nextId": "NarrativeContent_66", + "contentItemId": "NarrativeContentItem_65", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_66", + "extensionAttributes": [], + "name": "NC_66", + "sectionNumber": "6", + "sectionTitle": "References", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_65", + "nextId": "NarrativeContent_67", + "contentItemId": "NarrativeContentItem_66", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_67", + "extensionAttributes": [], + "name": "NC_67", + "sectionNumber": "Appendix 1", + "sectionTitle": "Protocol Attachment LZZT.1. Schedule of Events for Protocol H2Q-MC-LZZT(c)", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_66", + "nextId": "NarrativeContent_68", + "contentItemId": "NarrativeContentItem_67", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_68", + "extensionAttributes": [], + "name": "NC_68", + "sectionNumber": "Appendix 2", + "sectionTitle": "Protocol Attachment LZZT.2. Alzheimer's Disease Assessment Scale-Cognitive Subscale (ADAS-Cog) with Attention and Concentration Tasks", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_67", + "nextId": "NarrativeContent_69", + "contentItemId": "NarrativeContentItem_68", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_69", + "extensionAttributes": [], + "name": "NC_69", + "sectionNumber": "Appendix 3", + "sectionTitle": "Protocol Attachment LZZT.3. Video-referenced Clinician's Interview-Based Impression of Change (CIBIC+)", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_68", + "nextId": "NarrativeContent_70", + "contentItemId": "NarrativeContentItem_69", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_70", + "extensionAttributes": [], + "name": "NC_70", + "sectionNumber": "Appendix 4", + "sectionTitle": "Protocol Attachment LZZT.4. Revised Neuropsychiatric Inventory (NPI-X)", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_69", + "nextId": "NarrativeContent_71", + "contentItemId": "NarrativeContentItem_70", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_71", + "extensionAttributes": [], + "name": "NC_71", + "sectionNumber": "Appendix 5", + "sectionTitle": "Protocol Attachment LZZT.5. Disability Assessment for Dementia (DAD)", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_70", + "nextId": "NarrativeContent_72", + "contentItemId": "NarrativeContentItem_71", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_72", + "extensionAttributes": [], + "name": "NC_72", + "sectionNumber": "Appendix 6", + "sectionTitle": "Protocol Attachment LZZT.6. Mini-Mental State Examination (MMSE)", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_71", + "nextId": "NarrativeContent_73", + "contentItemId": "NarrativeContentItem_72", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_73", + "extensionAttributes": [], + "name": "NC_73", + "sectionNumber": "Appendix 7", + "sectionTitle": "Protocol Attachment LZZT.7. NINCDS/ADRDA Guidelines", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_72", + "nextId": "NarrativeContent_74", + "contentItemId": "NarrativeContentItem_73", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_74", + "extensionAttributes": [], + "name": "NC_74", + "sectionNumber": "Appendix 8", + "sectionTitle": "Protocol Attachment LZZT.8. Hachinski Ischemic Scale", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_73", + "nextId": "NarrativeContent_75", + "contentItemId": "NarrativeContentItem_74", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_75", + "extensionAttributes": [], + "name": "NC_75", + "sectionNumber": "Appendix 9", + "sectionTitle": "Protocol Attachment LZZT.9. TTS Acceptability Survey", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_74", + "nextId": "NarrativeContent_76", + "contentItemId": "NarrativeContentItem_75", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_76", + "extensionAttributes": [], + "name": "NC_76", + "sectionNumber": "Appendix 10", + "sectionTitle": "Protocol Attachment LZZT.10. Protocol Signatures", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_75", + "nextId": null, + "contentItemId": "NarrativeContentItem_76", + "instanceType": "NarrativeContent" + } + ], + "notes": [], + "instanceType": "StudyDefinitionDocumentVersion" + } + ], + "childIds": [], + "notes": [], + "instanceType": "StudyDefinitionDocument" + }, + { + "id": "StudyDefinitionDocument_2", + "extensionAttributes": [], + "name": "Protocol_Document_CDISC PILOT - LZZT", + "label": null, + "description": null, + "language": { + "id": "Code_677", + "extensionAttributes": [], + "code": "en", + "codeSystem": "ISO", + "codeSystemVersion": "1", + "decode": "English", + "instanceType": "Code" + }, + "type": { + "id": "Code_678", + "extensionAttributes": [], + "code": "C12345", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Decode", + "instanceType": "Code" + }, + "templateName": "M11", + "versions": [ + { + "id": "StudyDefinitionDocumentVersion_2", + "extensionAttributes": [], + "version": "2", + "status": { + "id": "Code_676", + "extensionAttributes": [], + "code": "C25508", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Final", + "instanceType": "Code" + }, + "dateValues": [ + { + "id": "GovernanceDate_4", + "extensionAttributes": [], + "name": "P_APPROVE", + "label": "Protocol Approval", + "description": "Protocol document approval date", + "type": { + "id": "Code_673", + "extensionAttributes": [], + "code": "C71476", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Approval Date", + "instanceType": "Code" + }, + "dateValue": "2006-07-01", + "geographicScopes": [ + { + "id": "GeographicScope_6", + "extensionAttributes": [], + "type": { + "id": "Code_674", + "extensionAttributes": [], + "code": "C41129", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Region", + "instanceType": "Code" + }, + "code": { + "id": "AliasCode_253", + "extensionAttributes": [], + "standardCode": { + "id": "Code_675", + "extensionAttributes": [], + "code": "150", + "codeSystem": "ISO 3166 1 alpha3", + "codeSystemVersion": "2020-08", + "decode": "Europe", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "instanceType": "GeographicScope" + } + ], + "instanceType": "GovernanceDate" + } + ], + "contents": [ + { + "id": "NarrativeContent_77", + "extensionAttributes": [], + "name": "NC_100", + "sectionNumber": "0", + "sectionTitle": "Title Page", + "displaySectionNumber": false, + "displaySectionTitle": false, + "childIds": [], + "previousId": null, + "nextId": "NarrativeContent_78", + "contentItemId": "NarrativeContentItem_77", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_78", + "extensionAttributes": [], + "name": "NC_101", + "sectionNumber": "1", + "sectionTitle": "PROTOCOL SUMMARY", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_79", + "NarrativeContent_82", + "NarrativeContent_83" + ], + "previousId": "NarrativeContent_77", + "nextId": "NarrativeContent_79", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_79", + "extensionAttributes": [], + "name": "NC_102", + "sectionNumber": "1.1", + "sectionTitle": "Protocol Synopsis", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": ["NarrativeContent_80", "NarrativeContent_81"], + "previousId": "NarrativeContent_78", + "nextId": "NarrativeContent_80", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_80", + "extensionAttributes": [], + "name": "NC_103", + "sectionNumber": "1.1.1", + "sectionTitle": "Primary and Secondary Objectives and Estimands", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_79", + "nextId": "NarrativeContent_81", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_81", + "extensionAttributes": [], + "name": "NC_104", + "sectionNumber": "1.1.2", + "sectionTitle": "Overall Design", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_80", + "nextId": "NarrativeContent_82", + "contentItemId": "NarrativeContentItem_78", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_82", + "extensionAttributes": [], + "name": "NC_105", + "sectionNumber": "1.2", + "sectionTitle": "Trial Schema", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_81", + "nextId": "NarrativeContent_83", + "contentItemId": "NarrativeContentItem_79", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_83", + "extensionAttributes": [], + "name": "NC_106", + "sectionNumber": "1.3", + "sectionTitle": "Schedule of Activities", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_82", + "nextId": "NarrativeContent_84", + "contentItemId": "NarrativeContentItem_80", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_84", + "extensionAttributes": [], + "name": "NC_107", + "sectionNumber": "2", + "sectionTitle": "INTRODUCTION", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": ["NarrativeContent_85", "NarrativeContent_86"], + "previousId": "NarrativeContent_83", + "nextId": "NarrativeContent_85", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_85", + "extensionAttributes": [], + "name": "NC_108", + "sectionNumber": "2.1", + "sectionTitle": "Purpose of Trial", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_84", + "nextId": "NarrativeContent_86", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_86", + "extensionAttributes": [], + "name": "NC_109", + "sectionNumber": "2.2", + "sectionTitle": "Summary of Benefits and Risks", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_87", + "NarrativeContent_88", + "NarrativeContent_89" + ], + "previousId": "NarrativeContent_85", + "nextId": "NarrativeContent_87", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_87", + "extensionAttributes": [], + "name": "NC_110", + "sectionNumber": "2.2.1", + "sectionTitle": "Benefit Summary", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_86", + "nextId": "NarrativeContent_88", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_88", + "extensionAttributes": [], + "name": "NC_111", + "sectionNumber": "2.2.2", + "sectionTitle": "Risk Summary and Mitigation Strategy", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_87", + "nextId": "NarrativeContent_89", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_89", + "extensionAttributes": [], + "name": "NC_112", + "sectionNumber": "2.2.3", + "sectionTitle": "Overall Benefit:Risk Conclusion", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_88", + "nextId": "NarrativeContent_90", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_90", + "extensionAttributes": [], + "name": "NC_113", + "sectionNumber": "3", + "sectionTitle": "TRIAL OBJECTIVES AND ESTIMANDS", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_91", + "NarrativeContent_93", + "NarrativeContent_94" + ], + "previousId": "NarrativeContent_89", + "nextId": "NarrativeContent_91", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_91", + "extensionAttributes": [], + "name": "NC_114", + "sectionNumber": "3.1", + "sectionTitle": "Primary Objective(s) and Associated Estimand(s)", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": ["NarrativeContent_92"], + "previousId": "NarrativeContent_90", + "nextId": "NarrativeContent_92", + "contentItemId": "NarrativeContentItem_81", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_92", + "extensionAttributes": [], + "name": "NC_115", + "sectionNumber": "3.1.1", + "sectionTitle": "{Primary Estimand}", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_91", + "nextId": "NarrativeContent_93", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_93", + "extensionAttributes": [], + "name": "NC_116", + "sectionNumber": "3.2", + "sectionTitle": "Secondary Objective(s) and Associated Estimand(s)", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_92", + "nextId": "NarrativeContent_94", + "contentItemId": "NarrativeContentItem_82", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_94", + "extensionAttributes": [], + "name": "NC_117", + "sectionNumber": "3.3", + "sectionTitle": "Exploratory Objective(s)", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_93", + "nextId": "NarrativeContent_95", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_95", + "extensionAttributes": [], + "name": "NC_118", + "sectionNumber": "4", + "sectionTitle": "TRIAL DESIGN", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_96", + "NarrativeContent_98", + "NarrativeContent_106", + "NarrativeContent_107", + "NarrativeContent_108" + ], + "previousId": "NarrativeContent_94", + "nextId": "NarrativeContent_96", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_96", + "extensionAttributes": [], + "name": "NC_119", + "sectionNumber": "4.1", + "sectionTitle": "Description of Trial Design", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": ["NarrativeContent_97"], + "previousId": "NarrativeContent_95", + "nextId": "NarrativeContent_97", + "contentItemId": "NarrativeContentItem_83", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_97", + "extensionAttributes": [], + "name": "NC_120", + "sectionNumber": "4.1.1", + "sectionTitle": "Stakeholder Input into Design", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_96", + "nextId": "NarrativeContent_98", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_98", + "extensionAttributes": [], + "name": "NC_121", + "sectionNumber": "4.2", + "sectionTitle": "Rationale for Trial Design", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_99", + "NarrativeContent_100", + "NarrativeContent_101", + "NarrativeContent_102", + "NarrativeContent_103", + "NarrativeContent_104", + "NarrativeContent_105" + ], + "previousId": "NarrativeContent_97", + "nextId": "NarrativeContent_99", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_99", + "extensionAttributes": [], + "name": "NC_122", + "sectionNumber": "4.2.1", + "sectionTitle": "Rationale for Intervention Model", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_98", + "nextId": "NarrativeContent_100", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_100", + "extensionAttributes": [], + "name": "NC_123", + "sectionNumber": "4.2.2", + "sectionTitle": "Rationale for Duration", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_99", + "nextId": "NarrativeContent_101", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_101", + "extensionAttributes": [], + "name": "NC_124", + "sectionNumber": "4.2.3", + "sectionTitle": "Rationale for Estimands", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_100", + "nextId": "NarrativeContent_102", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_102", + "extensionAttributes": [], + "name": "NC_125", + "sectionNumber": "4.2.4", + "sectionTitle": "Rationale for Interim Analysis", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_101", + "nextId": "NarrativeContent_103", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_103", + "extensionAttributes": [], + "name": "NC_126", + "sectionNumber": "4.2.5", + "sectionTitle": "Rationale for Control Type", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_102", + "nextId": "NarrativeContent_104", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_104", + "extensionAttributes": [], + "name": "NC_127", + "sectionNumber": "4.2.6", + "sectionTitle": "Rationale for Adaptive or Novel Trial Design", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_103", + "nextId": "NarrativeContent_105", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_105", + "extensionAttributes": [], + "name": "NC_128", + "sectionNumber": "4.2.7", + "sectionTitle": "Rationale for Other Trial Design Aspects", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_104", + "nextId": "NarrativeContent_106", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_106", + "extensionAttributes": [], + "name": "NC_129", + "sectionNumber": "4.3", + "sectionTitle": "Trial Stopping Rules", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_105", + "nextId": "NarrativeContent_107", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_107", + "extensionAttributes": [], + "name": "NC_130", + "sectionNumber": "4.4", + "sectionTitle": "Start of Trial and End of Trial", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_106", + "nextId": "NarrativeContent_108", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_108", + "extensionAttributes": [], + "name": "NC_131", + "sectionNumber": "4.5", + "sectionTitle": "Access to Trial Intervention After End of Trial", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_107", + "nextId": "NarrativeContent_109", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_109", + "extensionAttributes": [], + "name": "NC_132", + "sectionNumber": "5", + "sectionTitle": "TRIAL POPULATION", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_110", + "NarrativeContent_111", + "NarrativeContent_112", + "NarrativeContent_113", + "NarrativeContent_116", + "NarrativeContent_121" + ], + "previousId": "NarrativeContent_108", + "nextId": "NarrativeContent_110", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_110", + "extensionAttributes": [], + "name": "NC_133", + "sectionNumber": "5.1", + "sectionTitle": "Description of Trial Population and Rationale", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_109", + "nextId": "NarrativeContent_111", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_111", + "extensionAttributes": [], + "name": "NC_134", + "sectionNumber": "5.2", + "sectionTitle": "Inclusion Criteria", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_110", + "nextId": "NarrativeContent_112", + "contentItemId": "NarrativeContentItem_84", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_112", + "extensionAttributes": [], + "name": "NC_135", + "sectionNumber": "5.3", + "sectionTitle": "Exclusion Criteria", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_111", + "nextId": "NarrativeContent_113", + "contentItemId": "NarrativeContentItem_85", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_113", + "extensionAttributes": [], + "name": "NC_136", + "sectionNumber": "5.4", + "sectionTitle": "Contraception", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": ["NarrativeContent_114", "NarrativeContent_115"], + "previousId": "NarrativeContent_112", + "nextId": "NarrativeContent_114", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_114", + "extensionAttributes": [], + "name": "NC_137", + "sectionNumber": "5.4.1", + "sectionTitle": "Definitions Related to Childbearing Potential", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_113", + "nextId": "NarrativeContent_115", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_115", + "extensionAttributes": [], + "name": "NC_138", + "sectionNumber": "5.4.2", + "sectionTitle": "Contraception Requirements", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_114", + "nextId": "NarrativeContent_116", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_116", + "extensionAttributes": [], + "name": "NC_139", + "sectionNumber": "5.5", + "sectionTitle": "Lifestyle Restrictions", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_117", + "NarrativeContent_118", + "NarrativeContent_119", + "NarrativeContent_120" + ], + "previousId": "NarrativeContent_115", + "nextId": "NarrativeContent_117", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_117", + "extensionAttributes": [], + "name": "NC_140", + "sectionNumber": "5.5.1", + "sectionTitle": "Meals and Dietary Restrictions", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_116", + "nextId": "NarrativeContent_118", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_118", + "extensionAttributes": [], + "name": "NC_141", + "sectionNumber": "5.5.2", + "sectionTitle": "Caffeine, Alcohol, Tobacco,and Other Restrictions", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_117", + "nextId": "NarrativeContent_119", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_119", + "extensionAttributes": [], + "name": "NC_142", + "sectionNumber": "5.5.3", + "sectionTitle": "Physical Activity Restrictions", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_118", + "nextId": "NarrativeContent_120", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_120", + "extensionAttributes": [], + "name": "NC_143", + "sectionNumber": "5.5.4", + "sectionTitle": "Other Activity Restrictions", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_119", + "nextId": "NarrativeContent_121", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_121", + "extensionAttributes": [], + "name": "NC_144", + "sectionNumber": "5.6", + "sectionTitle": "Screen Failure and Rescreening", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_120", + "nextId": "NarrativeContent_122", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_122", + "extensionAttributes": [], + "name": "NC_145", + "sectionNumber": "6", + "sectionTitle": "TRIAL INTERVENTION AND CONCOMITANT THERAPY", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_123", + "NarrativeContent_124", + "NarrativeContent_125", + "NarrativeContent_126", + "NarrativeContent_127", + "NarrativeContent_128", + "NarrativeContent_129", + "NarrativeContent_133", + "NarrativeContent_138", + "NarrativeContent_139", + "NarrativeContent_143" + ], + "previousId": "NarrativeContent_121", + "nextId": "NarrativeContent_123", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_123", + "extensionAttributes": [], + "name": "NC_146", + "sectionNumber": "6.1", + "sectionTitle": "Overview of Trial Interventions", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_122", + "nextId": "NarrativeContent_124", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_124", + "extensionAttributes": [], + "name": "NC_147", + "sectionNumber": "6.2", + "sectionTitle": "Description of Investigational Trial Intervention", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_123", + "nextId": "NarrativeContent_125", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_125", + "extensionAttributes": [], + "name": "NC_148", + "sectionNumber": "6.3", + "sectionTitle": "Rationale for Investigational Trial Intervention Dose and Regimen", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_124", + "nextId": "NarrativeContent_126", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_126", + "extensionAttributes": [], + "name": "NC_149", + "sectionNumber": "6.4", + "sectionTitle": "Investigational Trial Intervention Administration", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_125", + "nextId": "NarrativeContent_127", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_127", + "extensionAttributes": [], + "name": "NC_150", + "sectionNumber": "6.5", + "sectionTitle": "Investigational Trial Intervention Dose Modification", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_126", + "nextId": "NarrativeContent_128", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_128", + "extensionAttributes": [], + "name": "NC_151", + "sectionNumber": "6.6", + "sectionTitle": "Management of Investigational Trial Intervention Overdose", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_127", + "nextId": "NarrativeContent_129", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_129", + "extensionAttributes": [], + "name": "NC_152", + "sectionNumber": "6.7", + "sectionTitle": "Preparation,Storage,Handling and Accountability of Investigational Trial Intervention(s)", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_130", + "NarrativeContent_131", + "NarrativeContent_132" + ], + "previousId": "NarrativeContent_128", + "nextId": "NarrativeContent_130", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_130", + "extensionAttributes": [], + "name": "NC_153", + "sectionNumber": "6.7.1", + "sectionTitle": "Preparation of Investigational Trial Intervention(s)", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_129", + "nextId": "NarrativeContent_131", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_131", + "extensionAttributes": [], + "name": "NC_154", + "sectionNumber": "6.7.2", + "sectionTitle": "Storage and Handling of Investigational Trial Intervention", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_130", + "nextId": "NarrativeContent_132", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_132", + "extensionAttributes": [], + "name": "NC_155", + "sectionNumber": "6.7.3", + "sectionTitle": "Accountability of Investigational Trial Intervention", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_131", + "nextId": "NarrativeContent_133", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_133", + "extensionAttributes": [], + "name": "NC_156", + "sectionNumber": "6.8", + "sectionTitle": "Investigational Trial Intervention Assignment,Randomisation and Blinding", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_134", + "NarrativeContent_135", + "NarrativeContent_136", + "NarrativeContent_137" + ], + "previousId": "NarrativeContent_132", + "nextId": "NarrativeContent_134", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_134", + "extensionAttributes": [], + "name": "NC_157", + "sectionNumber": "6.8.1", + "sectionTitle": "Participant Assignment to Investigational Trial Intervention", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_133", + "nextId": "NarrativeContent_135", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_135", + "extensionAttributes": [], + "name": "NC_158", + "sectionNumber": "6.8.2", + "sectionTitle": "Randomisation", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_134", + "nextId": "NarrativeContent_136", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_136", + "extensionAttributes": [], + "name": "NC_159", + "sectionNumber": "6.8.3", + "sectionTitle": "{Blinding}", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_135", + "nextId": "NarrativeContent_137", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_137", + "extensionAttributes": [], + "name": "NC_160", + "sectionNumber": "6.8.4", + "sectionTitle": "{Emergency Unblinding at the Site}", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_136", + "nextId": "NarrativeContent_138", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_138", + "extensionAttributes": [], + "name": "NC_161", + "sectionNumber": "6.9", + "sectionTitle": "Investigational Trial Intervention Compliance", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_137", + "nextId": "NarrativeContent_139", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_139", + "extensionAttributes": [], + "name": "NC_162", + "sectionNumber": "6.10", + "sectionTitle": "Description of Non-Investigational Trial Intervention(s)", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_140", + "NarrativeContent_141", + "NarrativeContent_142" + ], + "previousId": "NarrativeContent_138", + "nextId": "NarrativeContent_140", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_140", + "extensionAttributes": [], + "name": "NC_163", + "sectionNumber": "6.10.1", + "sectionTitle": "{Background Intervention}", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_139", + "nextId": "NarrativeContent_141", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_141", + "extensionAttributes": [], + "name": "NC_164", + "sectionNumber": "6.10.2", + "sectionTitle": "{Rescue Therapy}", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_140", + "nextId": "NarrativeContent_142", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_142", + "extensionAttributes": [], + "name": "NC_165", + "sectionNumber": "6.10.3", + "sectionTitle": "{Other Non-investigational Intervention}", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_141", + "nextId": "NarrativeContent_143", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_143", + "extensionAttributes": [], + "name": "NC_166", + "sectionNumber": "6.11", + "sectionTitle": "Concomitant Therapy", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": ["NarrativeContent_144", "NarrativeContent_145"], + "previousId": "NarrativeContent_142", + "nextId": "NarrativeContent_144", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_144", + "extensionAttributes": [], + "name": "NC_167", + "sectionNumber": "6.11.1", + "sectionTitle": "{Prohibited Concomitant Therapy}", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_143", + "nextId": "NarrativeContent_145", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_145", + "extensionAttributes": [], + "name": "NC_168", + "sectionNumber": "6.11.2", + "sectionTitle": "{Permitted Concomitant Therapy}", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_144", + "nextId": "NarrativeContent_146", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_146", + "extensionAttributes": [], + "name": "NC_169", + "sectionNumber": "7", + "sectionTitle": "PARTICIPANT DISCONTINUATION OF TRIAL INTERVENTION AND DISCONTINUATION OR WITHDRAWAL FROM TRIAL", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_147", + "NarrativeContent_151", + "NarrativeContent_152" + ], + "previousId": "NarrativeContent_145", + "nextId": "NarrativeContent_147", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_147", + "extensionAttributes": [], + "name": "NC_170", + "sectionNumber": "7.1", + "sectionTitle": "Discontinuation of Trial Intervention for Individual Participants", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_148", + "NarrativeContent_149", + "NarrativeContent_150" + ], + "previousId": "NarrativeContent_146", + "nextId": "NarrativeContent_148", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_148", + "extensionAttributes": [], + "name": "NC_171", + "sectionNumber": "7.1.1", + "sectionTitle": "Permanent Discontinuation of Trial Intervention", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_147", + "nextId": "NarrativeContent_149", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_149", + "extensionAttributes": [], + "name": "NC_172", + "sectionNumber": "7.1.2", + "sectionTitle": "Temporary Discontinuation of Trial Intervention", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_148", + "nextId": "NarrativeContent_150", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_150", + "extensionAttributes": [], + "name": "NC_173", + "sectionNumber": "7.1.3", + "sectionTitle": "Rechallenge", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_149", + "nextId": "NarrativeContent_151", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_151", + "extensionAttributes": [], + "name": "NC_174", + "sectionNumber": "7.2", + "sectionTitle": "Discontinuation or Withdrawal from the Trial", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_150", + "nextId": "NarrativeContent_152", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_152", + "extensionAttributes": [], + "name": "NC_175", + "sectionNumber": "7.3", + "sectionTitle": "Lost to Follow-Up", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_151", + "nextId": "NarrativeContent_153", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_153", + "extensionAttributes": [], + "name": "NC_176", + "sectionNumber": "8", + "sectionTitle": "TRIAL ASSESSMENTS AND PROCEDURES", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_154", + "NarrativeContent_155", + "NarrativeContent_156", + "NarrativeContent_157", + "NarrativeContent_164", + "NarrativeContent_165", + "NarrativeContent_169", + "NarrativeContent_170" + ], + "previousId": "NarrativeContent_152", + "nextId": "NarrativeContent_154", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_154", + "extensionAttributes": [], + "name": "NC_177", + "sectionNumber": "8.1", + "sectionTitle": "Trial Assessments and Procedures Considerations", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_153", + "nextId": "NarrativeContent_155", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_155", + "extensionAttributes": [], + "name": "NC_178", + "sectionNumber": "8.2", + "sectionTitle": "Screening/Baseline Assessments and Procedures", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_154", + "nextId": "NarrativeContent_156", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_156", + "extensionAttributes": [], + "name": "NC_179", + "sectionNumber": "8.3", + "sectionTitle": "Efficacy Assessments and Procedures", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_155", + "nextId": "NarrativeContent_157", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_157", + "extensionAttributes": [], + "name": "NC_180", + "sectionNumber": "8.4", + "sectionTitle": "Safety Assessments and Procedures", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_158", + "NarrativeContent_159", + "NarrativeContent_160", + "NarrativeContent_161", + "NarrativeContent_162", + "NarrativeContent_163" + ], + "previousId": "NarrativeContent_156", + "nextId": "NarrativeContent_158", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_158", + "extensionAttributes": [], + "name": "NC_181", + "sectionNumber": "8.4.1", + "sectionTitle": "{Physical Examination}", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_157", + "nextId": "NarrativeContent_159", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_159", + "extensionAttributes": [], + "name": "NC_182", + "sectionNumber": "8.4.2", + "sectionTitle": "{Vital Signs}", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_158", + "nextId": "NarrativeContent_160", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_160", + "extensionAttributes": [], + "name": "NC_183", + "sectionNumber": "8.4.3", + "sectionTitle": "{Electrocardiograms}", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_159", + "nextId": "NarrativeContent_161", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_161", + "extensionAttributes": [], + "name": "NC_184", + "sectionNumber": "8.4.4", + "sectionTitle": "{Clinical Laboratory Assessments}", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_160", + "nextId": "NarrativeContent_162", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_162", + "extensionAttributes": [], + "name": "NC_185", + "sectionNumber": "8.4.5", + "sectionTitle": "{Pregnancy Testing}", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_161", + "nextId": "NarrativeContent_163", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_163", + "extensionAttributes": [], + "name": "NC_186", + "sectionNumber": "8.4.6", + "sectionTitle": "{Suicidal Ideation and Behaviour Risk Monitoring}", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_162", + "nextId": "NarrativeContent_164", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_164", + "extensionAttributes": [], + "name": "NC_187", + "sectionNumber": "8.5", + "sectionTitle": "Pharmacokinetics", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_163", + "nextId": "NarrativeContent_165", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_165", + "extensionAttributes": [], + "name": "NC_188", + "sectionNumber": "8.6", + "sectionTitle": "Biomarkers", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_166", + "NarrativeContent_167", + "NarrativeContent_168" + ], + "previousId": "NarrativeContent_164", + "nextId": "NarrativeContent_166", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_166", + "extensionAttributes": [], + "name": "NC_189", + "sectionNumber": "8.6.1", + "sectionTitle": "Genetics and Pharmacogenomics", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_165", + "nextId": "NarrativeContent_167", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_167", + "extensionAttributes": [], + "name": "NC_190", + "sectionNumber": "8.6.2", + "sectionTitle": "Pharmacodynamic Biomarkers", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_166", + "nextId": "NarrativeContent_168", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_168", + "extensionAttributes": [], + "name": "NC_191", + "sectionNumber": "8.6.3", + "sectionTitle": "{Other Biomarkers}", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_167", + "nextId": "NarrativeContent_169", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_169", + "extensionAttributes": [], + "name": "NC_192", + "sectionNumber": "8.7", + "sectionTitle": "Immunogenicity Assessments", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_168", + "nextId": "NarrativeContent_170", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_170", + "extensionAttributes": [], + "name": "NC_193", + "sectionNumber": "8.8", + "sectionTitle": "Medical Resource Utilisation and Health Economics", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_169", + "nextId": "NarrativeContent_171", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_171", + "extensionAttributes": [], + "name": "NC_194", + "sectionNumber": "9", + "sectionTitle": "ADVERSE EVENTS,SERIOUS ADVERSE EVENTS,PRODUCT COMPLAINTS,PREGNANCY AND POSTPARTUM INFORMATION", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_172", + "NarrativeContent_176", + "NarrativeContent_177", + "NarrativeContent_182", + "NarrativeContent_186" + ], + "previousId": "NarrativeContent_170", + "nextId": "NarrativeContent_172", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_172", + "extensionAttributes": [], + "name": "NC_195", + "sectionNumber": "9.1", + "sectionTitle": "Definitions", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_173", + "NarrativeContent_174", + "NarrativeContent_175" + ], + "previousId": "NarrativeContent_171", + "nextId": "NarrativeContent_173", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_173", + "extensionAttributes": [], + "name": "NC_196", + "sectionNumber": "9.1.1", + "sectionTitle": "Definitions of Adverse Events", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_172", + "nextId": "NarrativeContent_174", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_174", + "extensionAttributes": [], + "name": "NC_197", + "sectionNumber": "9.1.2", + "sectionTitle": "Definitions of Serious Adverse Events", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_173", + "nextId": "NarrativeContent_175", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_175", + "extensionAttributes": [], + "name": "NC_198", + "sectionNumber": "9.1.3", + "sectionTitle": "{Definition of Medical Device Product Complaints}", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_174", + "nextId": "NarrativeContent_176", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_176", + "extensionAttributes": [], + "name": "NC_199", + "sectionNumber": "9.2", + "sectionTitle": "Timing and Mechanism for Collection and Reporting", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_175", + "nextId": "NarrativeContent_177", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_177", + "extensionAttributes": [], + "name": "NC_200", + "sectionNumber": "9.3", + "sectionTitle": "Identification,Recording and Follow-Up", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_178", + "NarrativeContent_179", + "NarrativeContent_180", + "NarrativeContent_181" + ], + "previousId": "NarrativeContent_176", + "nextId": "NarrativeContent_178", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_178", + "extensionAttributes": [], + "name": "NC_201", + "sectionNumber": "9.3.1", + "sectionTitle": "Identification", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_177", + "nextId": "NarrativeContent_179", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_179", + "extensionAttributes": [], + "name": "NC_202", + "sectionNumber": "9.3.2", + "sectionTitle": "Severity", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_178", + "nextId": "NarrativeContent_180", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_180", + "extensionAttributes": [], + "name": "NC_203", + "sectionNumber": "9.3.3", + "sectionTitle": "Causality", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_179", + "nextId": "NarrativeContent_181", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_181", + "extensionAttributes": [], + "name": "NC_204", + "sectionNumber": "9.3.4", + "sectionTitle": "Follow-up", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_180", + "nextId": "NarrativeContent_182", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_182", + "extensionAttributes": [], + "name": "NC_205", + "sectionNumber": "9.4", + "sectionTitle": "Reporting", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_183", + "NarrativeContent_184", + "NarrativeContent_185" + ], + "previousId": "NarrativeContent_181", + "nextId": "NarrativeContent_183", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_183", + "extensionAttributes": [], + "name": "NC_206", + "sectionNumber": "9.4.1", + "sectionTitle": "Regulatory Reporting Requirements", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_182", + "nextId": "NarrativeContent_184", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_184", + "extensionAttributes": [], + "name": "NC_207", + "sectionNumber": "9.4.2", + "sectionTitle": "Adverse Events of Special Interest", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_183", + "nextId": "NarrativeContent_185", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_185", + "extensionAttributes": [], + "name": "NC_208", + "sectionNumber": "9.4.3", + "sectionTitle": "Disease-related Events or Outcomes Not Qualifying as AEs or SAEs", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_184", + "nextId": "NarrativeContent_186", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_186", + "extensionAttributes": [], + "name": "NC_209", + "sectionNumber": "9.5", + "sectionTitle": "Pregnancy and Postpartum Information", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": ["NarrativeContent_187", "NarrativeContent_188"], + "previousId": "NarrativeContent_185", + "nextId": "NarrativeContent_187", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_187", + "extensionAttributes": [], + "name": "NC_210", + "sectionNumber": "9.5.1", + "sectionTitle": "{Participants Who Become Pregnant During the Trial}", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_186", + "nextId": "NarrativeContent_188", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_188", + "extensionAttributes": [], + "name": "NC_211", + "sectionNumber": "9.5.2", + "sectionTitle": "{Participants Whose Partners Become Pregnant}", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_187", + "nextId": "NarrativeContent_189", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_189", + "extensionAttributes": [], + "name": "NC_212", + "sectionNumber": "10", + "sectionTitle": "STATISTICAL CONSIDERATIONS", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_190", + "NarrativeContent_191", + "NarrativeContent_192", + "NarrativeContent_193", + "NarrativeContent_199", + "NarrativeContent_205", + "NarrativeContent_206", + "NarrativeContent_207", + "NarrativeContent_208", + "NarrativeContent_209", + "NarrativeContent_210" + ], + "previousId": "NarrativeContent_188", + "nextId": "NarrativeContent_190", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_190", + "extensionAttributes": [], + "name": "NC_213", + "sectionNumber": "10.1", + "sectionTitle": "General Considerations", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_189", + "nextId": "NarrativeContent_191", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_191", + "extensionAttributes": [], + "name": "NC_214", + "sectionNumber": "10.2", + "sectionTitle": "Analysis Sets", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_190", + "nextId": "NarrativeContent_192", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_192", + "extensionAttributes": [], + "name": "NC_215", + "sectionNumber": "10.3", + "sectionTitle": "Analyses of Demographics and Other Baseline Variables", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_191", + "nextId": "NarrativeContent_193", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_193", + "extensionAttributes": [], + "name": "NC_216", + "sectionNumber": "10.4", + "sectionTitle": "Analyses Associated with the Primary Objective(s)", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_194", + "NarrativeContent_195", + "NarrativeContent_196", + "NarrativeContent_197", + "NarrativeContent_198" + ], + "previousId": "NarrativeContent_192", + "nextId": "NarrativeContent_194", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_194", + "extensionAttributes": [], + "name": "NC_217", + "sectionNumber": "10.4.1", + "sectionTitle": "Statistical Method of Analysis", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_193", + "nextId": "NarrativeContent_195", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_195", + "extensionAttributes": [], + "name": "NC_218", + "sectionNumber": "10.4.2", + "sectionTitle": "Handling of Data in Relation to Primary Estimand(s)", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_194", + "nextId": "NarrativeContent_196", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_196", + "extensionAttributes": [], + "name": "NC_219", + "sectionNumber": "10.4.3", + "sectionTitle": "Handling of Missing Data", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_195", + "nextId": "NarrativeContent_197", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_197", + "extensionAttributes": [], + "name": "NC_220", + "sectionNumber": "10.4.4", + "sectionTitle": "{Sensitivity Analysis}", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_196", + "nextId": "NarrativeContent_198", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_198", + "extensionAttributes": [], + "name": "NC_221", + "sectionNumber": "10.4.5", + "sectionTitle": "{Supplementary Analysis}", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_197", + "nextId": "NarrativeContent_199", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_199", + "extensionAttributes": [], + "name": "NC_222", + "sectionNumber": "10.5", + "sectionTitle": "Analysis Associated with the Secondary Objective(s)", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_200", + "NarrativeContent_201", + "NarrativeContent_202", + "NarrativeContent_203", + "NarrativeContent_204" + ], + "previousId": "NarrativeContent_198", + "nextId": "NarrativeContent_200", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_200", + "extensionAttributes": [], + "name": "NC_223", + "sectionNumber": "10.5.1", + "sectionTitle": "{Statistical Method of Analysis}", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_199", + "nextId": "NarrativeContent_201", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_201", + "extensionAttributes": [], + "name": "NC_224", + "sectionNumber": "10.5.2", + "sectionTitle": "{Handling of Data in Relation to Secondary Estimand(s)}", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_200", + "nextId": "NarrativeContent_202", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_202", + "extensionAttributes": [], + "name": "NC_225", + "sectionNumber": "10.5.3", + "sectionTitle": "{Handling of Missing Data}", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_201", + "nextId": "NarrativeContent_203", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_203", + "extensionAttributes": [], + "name": "NC_226", + "sectionNumber": "10.5.4", + "sectionTitle": "{Sensitivity Analyses}", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_202", + "nextId": "NarrativeContent_204", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_204", + "extensionAttributes": [], + "name": "NC_227", + "sectionNumber": "10.5.5", + "sectionTitle": "{Supplementary Analyses}", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_203", + "nextId": "NarrativeContent_205", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_205", + "extensionAttributes": [], + "name": "NC_228", + "sectionNumber": "10.6", + "sectionTitle": "Analysis Associated with the Exploratory Objective(s)", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_204", + "nextId": "NarrativeContent_206", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_206", + "extensionAttributes": [], + "name": "NC_229", + "sectionNumber": "10.7", + "sectionTitle": "Safety Analyses", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_205", + "nextId": "NarrativeContent_207", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_207", + "extensionAttributes": [], + "name": "NC_230", + "sectionNumber": "10.8", + "sectionTitle": "Other Analyses", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_206", + "nextId": "NarrativeContent_208", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_208", + "extensionAttributes": [], + "name": "NC_231", + "sectionNumber": "10.9", + "sectionTitle": "Interim Analyses", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_207", + "nextId": "NarrativeContent_209", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_209", + "extensionAttributes": [], + "name": "NC_232", + "sectionNumber": "10.10", + "sectionTitle": "Multiplicity Adjustments", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_208", + "nextId": "NarrativeContent_210", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_210", + "extensionAttributes": [], + "name": "NC_233", + "sectionNumber": "10.11", + "sectionTitle": "Sample Size Determination", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_209", + "nextId": "NarrativeContent_211", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_211", + "extensionAttributes": [], + "name": "NC_234", + "sectionNumber": "11", + "sectionTitle": "TRIAL OVERSIGHT AND OTHER GENERAL CONSIDERATIONS", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_212", + "NarrativeContent_213", + "NarrativeContent_216", + "NarrativeContent_219", + "NarrativeContent_220", + "NarrativeContent_221", + "NarrativeContent_222", + "NarrativeContent_223", + "NarrativeContent_224", + "NarrativeContent_225" + ], + "previousId": "NarrativeContent_210", + "nextId": "NarrativeContent_212", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_212", + "extensionAttributes": [], + "name": "NC_235", + "sectionNumber": "11.1", + "sectionTitle": "Regulatory and Ethical Considerations", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_211", + "nextId": "NarrativeContent_213", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_213", + "extensionAttributes": [], + "name": "NC_236", + "sectionNumber": "11.2", + "sectionTitle": "Trial Oversight", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": ["NarrativeContent_214", "NarrativeContent_215"], + "previousId": "NarrativeContent_212", + "nextId": "NarrativeContent_214", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_214", + "extensionAttributes": [], + "name": "NC_237", + "sectionNumber": "11.2.1", + "sectionTitle": "Investigator Responsibilities", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_213", + "nextId": "NarrativeContent_215", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_215", + "extensionAttributes": [], + "name": "NC_238", + "sectionNumber": "11.2.2", + "sectionTitle": "Sponsor Responsibilities", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_214", + "nextId": "NarrativeContent_216", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_216", + "extensionAttributes": [], + "name": "NC_239", + "sectionNumber": "11.3", + "sectionTitle": "Informed Consent Process", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": ["NarrativeContent_217", "NarrativeContent_218"], + "previousId": "NarrativeContent_215", + "nextId": "NarrativeContent_217", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_217", + "extensionAttributes": [], + "name": "NC_240", + "sectionNumber": "11.3.1", + "sectionTitle": "Informed Consent for Rescreening", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_216", + "nextId": "NarrativeContent_218", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_218", + "extensionAttributes": [], + "name": "NC_241", + "sectionNumber": "11.3.2", + "sectionTitle": "Informed Consent for Use of Remaining Samples in Exploratory Research", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_217", + "nextId": "NarrativeContent_219", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_219", + "extensionAttributes": [], + "name": "NC_242", + "sectionNumber": "11.4", + "sectionTitle": "Committees", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_218", + "nextId": "NarrativeContent_220", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_220", + "extensionAttributes": [], + "name": "NC_243", + "sectionNumber": "11.5", + "sectionTitle": "Insurance and Indemnity", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_219", + "nextId": "NarrativeContent_221", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_221", + "extensionAttributes": [], + "name": "NC_244", + "sectionNumber": "11.6", + "sectionTitle": "Risk Management", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_220", + "nextId": "NarrativeContent_222", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_222", + "extensionAttributes": [], + "name": "NC_245", + "sectionNumber": "11.7", + "sectionTitle": "Data Governance", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_221", + "nextId": "NarrativeContent_223", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_223", + "extensionAttributes": [], + "name": "NC_246", + "sectionNumber": "11.8", + "sectionTitle": "Source Data", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_222", + "nextId": "NarrativeContent_224", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_224", + "extensionAttributes": [], + "name": "NC_247", + "sectionNumber": "11.9", + "sectionTitle": "Protocol Deviations", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_223", + "nextId": "NarrativeContent_225", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_225", + "extensionAttributes": [], + "name": "NC_248", + "sectionNumber": "11.10", + "sectionTitle": "Early Site Closure", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_224", + "nextId": "NarrativeContent_226", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_226", + "extensionAttributes": [], + "name": "NC_249", + "sectionNumber": "12", + "sectionTitle": "APPENDIX: SUPPORTING DETAILS", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_227", + "NarrativeContent_228", + "NarrativeContent_229" + ], + "previousId": "NarrativeContent_225", + "nextId": "NarrativeContent_227", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_227", + "extensionAttributes": [], + "name": "NC_250", + "sectionNumber": "12.1", + "sectionTitle": "Clinical Laboratory Tests", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_226", + "nextId": "NarrativeContent_228", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_228", + "extensionAttributes": [], + "name": "NC_251", + "sectionNumber": "12.2", + "sectionTitle": "Country/Region-Specific Differences", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_227", + "nextId": "NarrativeContent_229", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_229", + "extensionAttributes": [], + "name": "NC_252", + "sectionNumber": "12.3", + "sectionTitle": "Prior Protocol Amendment(s)", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_228", + "nextId": "NarrativeContent_230", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_230", + "extensionAttributes": [], + "name": "NC_253", + "sectionNumber": "13", + "sectionTitle": "APPENDIX: GLOSSARY OF TERMS AND ABBREVIATIONS", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_229", + "nextId": "NarrativeContent_231", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_231", + "extensionAttributes": [], + "name": "NC_254", + "sectionNumber": "14", + "sectionTitle": "APPENDIX: REFERENCES", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_230", + "nextId": null, + "contentItemId": null, + "instanceType": "NarrativeContent" + } + ], + "notes": [], + "instanceType": "StudyDefinitionDocumentVersion" + } + ], + "childIds": [], + "notes": [], + "instanceType": "StudyDefinitionDocument" + } + ], + "instanceType": "Study" + }, + "usdmVersion": "4.0", + "systemName": "CDISC USDM E2J", + "systemVersion": "0.62.0" +} diff --git a/tests/resources/CoreIssue715/rule.yml b/tests/resources/CoreIssue715/rule.yml new file mode 100644 index 000000000..7b1328919 --- /dev/null +++ b/tests/resources/CoreIssue715/rule.yml @@ -0,0 +1,51 @@ +Authorities: + - Organization: CDISC + Standards: + - Name: USDM + References: + - Citations: + - Cited Guidance: + "Class relationships must conform with the USDM schema based on + the API specification." + Document: "USDM_CORE_Rules.xlsx" + Origin: "USDM Conformance Rules" + Rule Identifier: + Id: "DDF00081" + Version: "1" + Version: "1.0" + Version: "3.0" + - Name: USDM + References: + - Citations: + - Cited Guidance: + "Class relationships must conform with the USDM schema based on + the API specification." + Document: "USDM_CORE_Rules.xlsx" + Origin: "USDM Conformance Rules" + Rule Identifier: + Id: "DDF00081" + Version: "1" + Version: "1.0" + Version: "4.0" +Check: + all: + - name: message + operator: non_empty +Core: + Id: "DDF00081" + Status: Draft + Version: "1" +Description: "Class relationships must conform with the USDM schema based on the API specification." +Executability: Fully Executable +Operations: +Outcome: + Message: "The class relationship does not conform with the USDM schema." + Output Variables: + - json_path + - message +Rule Type: JSON Schema Check +Scope: + Entities: + Include: + - "ALL" +Sensitivity: Record diff --git a/tests/unit/test_dataset_builders/test_json_schema_check_dataset_builder.py b/tests/unit/test_dataset_builders/test_json_schema_check_dataset_builder.py new file mode 100644 index 000000000..41da2c423 --- /dev/null +++ b/tests/unit/test_dataset_builders/test_json_schema_check_dataset_builder.py @@ -0,0 +1,170 @@ +from unittest.mock import MagicMock + +from cdisc_rules_engine.dataset_builders.json_schema_check_dataset_builder import ( + JsonSchemaCheckDatasetBuilder, +) +from cdisc_rules_engine.models.library_metadata_container import ( + LibraryMetadataContainer, +) +from cdisc_rules_engine.models.dataset.pandas_dataset import PandasDataset + +# This test suite validates JsonSchemaCheckDatasetBuilder which returns a dataset +# where each JSON Schema validation error is a separate row. + + +def _make_builder(schema, instance): + # Mock data_service exposing .json and dataset_implementation + data_service = MagicMock() + data_service.json = instance + data_service.dataset_implementation = PandasDataset + # Unused heavy dependencies are mocked. + builder = JsonSchemaCheckDatasetBuilder( + rule={}, + data_service=data_service, + cache_service=MagicMock(), + rule_processor=MagicMock(), + data_processor=MagicMock(), + dataset_path="dummy.xpt", + datasets=[], + dataset_metadata=MagicMock(), + define_xml_path=None, + standard="USDM", + standard_version="4.0", + standard_substandard=None, + library_metadata=LibraryMetadataContainer(standard_schema_definition=schema), + ) + builder.get_parent_path = lambda path_list: ( + list(path_list)[:-1] if path_list else [] + ) + builder.parse_error = lambda error, errlist, errctx: ( + errlist.update( + { + "json_path": errlist.get("json_path", []) + [""], + "error_context": errlist.get("error_context", []) + [""], + "error_attribute": errlist.get("error_attribute", []) + [""], + "error_value": errlist.get("error_value", []) + [""], + "validator": errlist.get("validator", []) + [""], + "validator_value": errlist.get("validator_value", []) + [""], + "message": errlist.get("message", []) + [error.message], + "instanceType": errlist.get("instanceType", []) + [""], + "id": errlist.get("id", []) + [""], + "_path": errlist.get("_path", []) + [""], + } + ) + if error.message not in errlist.get("message", []) + else None + ) + return builder + + +def test_json_schema_check_dataset_builder_valid(): + """ + Test that the builder correctly validates a valid JSON instance. + """ + schema = { + "type": "object", + "properties": { + "id": {"type": "integer"}, + "name": {"type": "string"}, + }, + "required": ["id", "name"], + } + instance = {"id": 1, "name": "Test"} + + data_service = MagicMock() + data_service.json = instance + data_service.dataset_implementation = PandasDataset + data_service.dataset_path = "dummy.json" + + cache_service = MagicMock() + # Ensure cache returns None to simulate empty cache + cache_service.get.return_value = None + + builder = JsonSchemaCheckDatasetBuilder( + rule={}, + data_service=data_service, + cache_service=cache_service, + rule_processor=MagicMock(), + data_processor=MagicMock(), + dataset_path="dummy.xpt", + datasets=[], + dataset_metadata=MagicMock(name="test_dataset"), + define_xml_path=None, + standard="USDM", + standard_version="4.0", + standard_substandard=None, + library_metadata=LibraryMetadataContainer(standard_schema_definition=schema), + ) + + dataset = builder.get_dataset() + + assert dataset.empty + + +def test_json_schema_check_dataset_builder_invalid(): + """ + Test that the builder correctly identifies validation errors in an invalid JSON instance. + """ + schema = { + "type": "object", + "properties": { + "id": {"type": "integer"}, + "name": {"type": "string"}, + "items": {"type": "array", "items": {"type": "string"}}, + }, + "required": ["id", "name"], + } + # invalid: id wrong type, name missing, items wrong types + instance = {"id": "1", "items": [1, 2]} + + data_service = MagicMock() + data_service.json = instance + data_service.dataset_implementation = PandasDataset + data_service.dataset_path = "dummy.xpt" + + cache_service = MagicMock() + # Ensure cache returns None to simulate empty cache + cache_service.get.return_value = None + + dataset_metadata = MagicMock() + dataset_metadata.name = "" + + builder = JsonSchemaCheckDatasetBuilder( + rule={}, + data_service=data_service, + cache_service=cache_service, + rule_processor=MagicMock(), + data_processor=MagicMock(), + dataset_path="dummy.xpt", + datasets=[], + dataset_metadata=dataset_metadata, + define_xml_path=None, + standard="USDM", + standard_version="4.0", + standard_substandard=None, + library_metadata=LibraryMetadataContainer(standard_schema_definition=schema), + ) + + # Retrieve the dataset + ds = builder.get_dataset() + assert not ds.empty + + # Collect rows as a list of dictionaries for convenience + rows = ds.data.to_dict(orient="records") + + # Expect 4 specific errors (id type, required name, items element types) + assert len(rows) == 4 + + # Validate specific error messages + expected_errors = [ + "'name' is a required property", + "'1' is not of type 'integer'", + "1 is not of type 'string'", + "2 is not of type 'string'", + ] + actual_errors = [row["message"] for row in rows] + for error in expected_errors: + assert error in actual_errors + + # Verify that the cache_service.add method was called + cache_service.add.assert_called_once()